Searched refs:keywords (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/util/locale/
H A DUnicodeLocaleExtension.java46 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/langtools/src/share/classes/javax/lang/model/
H A DSourceVersion.java174 * 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/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DMetaKeywords.java34 * field names to be included as meta keywords in the HTML header
35 * of class pages. These keywords improve search results
36 * on browsers that look for keywords.
73 // Add field and method keywords only if -keywords option is used
74 if( configuration.keywords ) {
94 * Get the package keywords.
97 if( configuration.keywords ) {
106 * Get the overview keywords.
109 if( configuration.keywords ) {
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DDLSInfo.java85 public String keywords = null; field in class:DLSInfo
H A DDLSSoundbank.java432 info.keywords = chunk.readString(chunk.available());
713 dlsinstrument.info.keywords =
857 dlssample.info.keywords = chunk.readString(chunk.available());
1170 writeInfoStringChunk(writer, "IKEY", info.keywords);
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DFactories.java58 // 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/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DScannerFactory.java60 final Keywords keywords; field in class:ScannerFactory
68 this.keywords = Keywords.instance(context);
H A DParserFactory.java58 final Keywords keywords; field in class:ParserFactory
70 this.keywords = Keywords.instance(context);
H A DScanner.java131 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 DJavacParser.java71 private Keywords keywords; field in class:JavacParser
90 this.keywords = fac.keywords;
/openjdk7/langtools/test/com/sun/javadoc/MetaTag/
H A DMetaTag.java33 * @summary Add support for HTML keywords via META tag for
53 "-keywords",
70 "<meta name=\"keywords\" content=\"p1.C1 class\">" },
73 "<meta name=\"keywords\" content=\"field1\">" },
76 "<meta name=\"keywords\" content=\"field2\">" },
79 "<meta name=\"keywords\" content=\"method1()\">" },
82 "<meta name=\"keywords\" content=\"method2()\">" },
85 "<meta name=\"keywords\" content=\"p1 package\">" },
88 "<meta name=\"keywords\" content=\"Overview, Sample Packages\">" },
101 //No keywords whe
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DCompile.java254 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 DScanner.java43 // 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 DParser.java50 // -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 DConfiguration.java109 * 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;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DJavacProcessingEnvironment.java1111 Keywords keywords = Keywords.instance(context);
1112 Assert.checkNonNull(keywords);
1113 next.put(Keywords.keywordsKey, keywords);
/openjdk7/jdk/make/docs/
H A DMakefile209 -keywords \

Completed in 80 milliseconds