/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/ |
H A D | ScannerFactory.java | 60 final Keywords keywords; field in class:ScannerFactory 68 this.keywords = Keywords.instance(context);
|
H A D | ParserFactory.java | 58 final Keywords keywords; field in class:ParserFactory 70 this.keywords = Keywords.instance(context);
|
H A D | Scanner.java | 131 private final Keywords keywords; field in class:Scanner 137 keywords = fac.keywords; 536 token = keywords.key(name); 560 token = keywords.key(name); 621 if (keywords.key(newname) == IDENTIFIER) { 626 token = keywords.key(newname);
|
H A D | JavacParser.java | 71 private Keywords keywords; field in class:JavacParser 90 this.keywords = fac.keywords;
|
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/ |
H A D | Factories.java | 58 // These are Java keywords that are not also IDL keywords. 59 return keywords; 62 static String[] keywords = field in class:Factories 79 // These following are not strictly keywords. They 82 // interfaces. Treat them the same as keywords.
|
/openjdk7/jdk/src/share/classes/com/sun/media/sound/ |
H A D | DLSInfo.java | 85 public String keywords = null; field in class:DLSInfo
|
/openjdk7/langtools/src/share/classes/javax/lang/model/ |
H A D | SourceVersion.java | 174 * This pattern matches regular identifiers, keywords, and the 208 * for keywords and literals. 225 private final static Set<String> keywords; field in class:SourceVersion 244 keywords = Collections.unmodifiableSet(s); 256 return keywords.contains(keywordOrLiteral);
|
/openjdk7/jdk/src/share/classes/sun/util/locale/ |
H A D | UnicodeLocaleExtension.java | 46 private final Map<String, String> keywords; field in class:UnicodeLocaleExtension 56 keywords = Collections.singletonMap(key, value); 59 UnicodeLocaleExtension(SortedSet<String> attributes, SortedMap<String, String> keywords) { argument 66 if (keywords != null) { 67 this.keywords = keywords; 69 this.keywords = Collections.emptyMap(); 72 if (!this.attributes.isEmpty() || !this.keywords.isEmpty()) { 77 for (Entry<String, String> keyword : this.keywords.entrySet()) { 98 if (keywords [all...] |
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/ |
H A D | Compile.java | 254 parser = new Parser (preprocessor, arguments, overrideNames, symbolTable, symtabFactory, exprFactory, keywords); 398 // Get the language keywords. 399 keywords = factories.languageKeywords (); 400 if (keywords == null) 401 keywords = new String[0]; 519 private String[] keywords = null; field in class:Compile
|
H A D | Scanner.java | 43 // keywords as ids.; accept ids. that match keywords in letter, but not in case. 64 //Scanner (IncludeEntry file, String[] keywords, boolean vbose, boolean scanStateful, boolean emitAllIncludes) throws IOException 66 //Scanner (IncludeEntry file, String[] keywords, boolean vbose, boolean emitAllIncludes) throws IOException 70 Scanner (IncludeEntry file, String[] keywords, boolean vbose, argument 78 sortKeywords (keywords); 86 void sortKeywords (String[] keywords) argument 88 for (int i = 0; i < keywords.length; ++i) 89 if (wildcardAtEitherEnd (keywords[i])) 90 this.openEndedKeywords.addElement (keywords[ 1545 private Vector keywords = new Vector (); field in class:Scanner [all...] |
H A D | Parser.java | 50 // -D59166<daz> Prohibit collisions between keywords and non-escaped identifiers. 59 // deprecated keywords or keywords in greater release version. 103 keywords = (genKeywords == null) ? new String [0] : genKeywords; 128 //scanner = new Scanner (fileEntry, keywords, verbose, parseStateful, emitAll); 130 //scanner = new Scanner (fileEntry, keywords, verbose, emitAll); 131 scanner = new Scanner (fileEntry, keywords, verbose, emitAll, corbaLevel, 841 // comment must immediately precede "public", "private" keywords 2988 // <d59166> Identifiers that collide with keywords are illegal. Note 3896 private String[] keywords; field in class:Parser [all...] |
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/ |
H A D | Configuration.java | 109 * True if user wants to add member names as meta keywords. 110 * Set to false because meta keywords are ignored in general 113 public boolean keywords = false; field in class:Configuration 116 * The meta tag keywords instance. 303 option.equals("-keywords") || 413 } else if (opt.equals("-keywords")) { 414 keywords = true;
|