Searched refs:keyword (Results 1 - 25 of 270) sorted by relevance

1234567891011

/external/syslinux/core/
H A Dkeywords.inc16 ;; Common header file for the handling of keyword hash and macros
23 %macro keyword 2
29 %macro keyword 3
35 %macro keyword 4
41 keywd_size equ 8 ; Bytes per keyword
48 keyword menu, pc_comment
49 keyword text, pc_text
50 keyword include, pc_opencmd, pc_include
51 keyword append, pc_append
52 keyword initr
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DStandardPlural.java46 private final String keyword; field in class:StandardPlural
49 keyword = kw;
53 * @return the lowercase CLDR keyword string for the plural form
56 return keyword;
60 * @param keyword for example "few" or "other"
61 * @return the plural form corresponding to the keyword, or null
63 public static final StandardPlural orNullFromString(CharSequence keyword) { argument
64 switch (keyword.length()) {
66 if ("one".contentEquals(keyword)) {
68 } else if ("two".contentEquals(keyword)) {
96 orOtherFromString(CharSequence keyword) argument
106 fromString(CharSequence keyword) argument
119 indexOrNegativeFromString(CharSequence keyword) argument
128 indexOrOtherIndexFromString(CharSequence keyword) argument
138 indexFromString(CharSequence keyword) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DStandardPlural.java44 private final String keyword; field in class:StandardPlural
47 keyword = kw;
51 * @return the lowercase CLDR keyword string for the plural form
54 return keyword;
58 * @param keyword for example "few" or "other"
59 * @return the plural form corresponding to the keyword, or null
61 public static final StandardPlural orNullFromString(CharSequence keyword) { argument
62 switch (keyword.length()) {
64 if ("one".contentEquals(keyword)) {
66 } else if ("two".contentEquals(keyword)) {
94 orOtherFromString(CharSequence keyword) argument
104 fromString(CharSequence keyword) argument
117 indexOrNegativeFromString(CharSequence keyword) argument
126 indexOrOtherIndexFromString(CharSequence keyword) argument
136 indexFromString(CharSequence keyword) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dstandardplural.h42 * @return the lowercase CLDR keyword string for the plural form
47 * @param keyword for example "few" or "other"
48 * @return the plural form corresponding to the keyword, or OTHER
50 static Form orOtherFromString(const char *keyword) { argument
51 return static_cast<Form>(indexOrOtherIndexFromString(keyword));
55 * @param keyword for example "few" or "other"
56 * @return the plural form corresponding to the keyword, or OTHER
58 static Form orOtherFromString(const UnicodeString &keyword) { argument
59 return static_cast<Form>(indexOrOtherIndexFromString(keyword));
63 * Sets U_ILLEGAL_ARGUMENT_ERROR if the keyword i
68 fromString(const char *keyword, UErrorCode &errorCode) argument
78 fromString(const UnicodeString &keyword, UErrorCode &errorCode) argument
98 indexOrOtherIndexFromString(const char *keyword) argument
107 indexOrOtherIndexFromString(const UnicodeString &keyword) argument
[all...]
H A Dstandardplural.cpp34 int32_t StandardPlural::indexOrNegativeFromString(const char *keyword) { argument
35 switch (*keyword++) {
37 if (uprv_strcmp(keyword, "ew") == 0) {
42 if (uprv_strcmp(keyword, "any") == 0) {
47 if (uprv_strcmp(keyword, "ther") == 0) {
49 } else if (uprv_strcmp(keyword, "ne") == 0) {
54 if (uprv_strcmp(keyword, "wo") == 0) {
59 if (uprv_strcmp(keyword, "ero") == 0) {
76 int32_t StandardPlural::indexOrNegativeFromString(const UnicodeString &keyword) { argument
77 switch (keyword
105 indexFromString(const char *keyword, UErrorCode &errorCode) argument
116 indexFromString(const UnicodeString &keyword, UErrorCode &errorCode) argument
[all...]
H A Dupluralrules.cpp45 UChar *keyword, int32_t capacity,
51 if (keyword == NULL ? capacity != 0 : capacity < 0) {
56 return result.extract(keyword, capacity, *status);
63 UChar *keyword, int32_t capacity,
71 if (plrules == NULL || nf == NULL || ((keyword == NULL)? capacity != 0 : capacity < 0)) {
77 return result.extract(keyword, capacity, *status);
43 uplrules_select(const UPluralRules *uplrules, double number, UChar *keyword, int32_t capacity, UErrorCode *status) argument
60 uplrules_selectWithFormat(const UPluralRules *uplrules, double number, const UNumberFormat *fmt, UChar *keyword, int32_t capacity, UErrorCode *status) argument
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/validator/
H A DReservedKeywordValidator.java13 private final String keyword; field in class:ReservedKeywordValidator
16 public ReservedKeywordValidator(String keyword) { argument
17 this.keyword = keyword;
18 error = f("'%s' cannot be used as an identifier as it is a keyword.", keyword);
23 if (n.getIdentifier().equals(keyword)) {
31 if (n.getIdentifier().equals(keyword)) {
/external/deqp/modules/gles2/scripts/
H A Dgen-keywords.py97 for keyword in KEYWORDS:
98 keywords.append(IdentifierCase(keyword, keyword)) # Keywords
100 for keyword in RESERVED_KEYWORDS:
101 reservedKeywords.append(IdentifierCase(keyword, keyword)) # Reserved keywords
/external/deqp/modules/gles3/scripts/
H A Dgen-keywords.py111 for keyword in KEYWORDS:
112 keywords.append(IdentifierCase(keyword, keyword)) # Keywords
114 for keyword in RESERVED_KEYWORDS:
115 reservedKeywords.append(IdentifierCase(keyword, keyword)) # Reserved keywords
/external/clang/test/Sema/
H A Dms-keyword-system-header.c2 // RUN: %clang_cc1 -fms-extensions -D MS -Wno-keyword-compat -I %S/Inputs %s -fsyntax-only -verify
6 // PR17824: GNU libc uses MS keyword __uptr as an identifier in C mode
7 #include <ms-keyword-system-header.h>
/external/libxml2/doc/tutorial/
H A Dincludeaddkeyword.c9 parseStory (xmlDocPtr doc, xmlNodePtr cur, char *keyword) {
11 xmlNewTextChild (cur, NULL, "keyword", keyword);
16 parseDoc(char *docname, char *keyword) {
45 parseStory (doc, cur, keyword);
57 char *keyword;
61 printf("Usage: %s docname, keyword\n", argv[0]);
66 keyword = argv[2];
67 doc = parseDoc (docname, keyword);
H A Dincludexpath.c47 xmlChar *xpath = (xmlChar*) "//keyword";
51 xmlChar *keyword;
64 keyword = xmlNodeListGetString(doc, nodeset->nodeTab[i]->xmlChildrenNode, 1);
65 printf("keyword: %s\n", keyword);
66 xmlFree(keyword);
/external/swiftshader/third_party/LLVM/utils/vim/
H A Dllvm.vim17 syn keyword llvmType void float double
18 syn keyword llvmType x86_fp80 fp128 ppc_fp128
19 syn keyword llvmType type label opaque
25 syn keyword llvmStatement add fadd sub fsub mul fmul
26 syn keyword llvmStatement sdiv udiv fdiv srem urem frem
27 syn keyword llvmStatement and or xor
28 syn keyword llvmStatement icmp fcmp
29 syn keyword llvmStatement eq ne ugt uge ult ule sgt sge slt sle
30 syn keyword llvmStatement oeq ogt oge olt ole one ord ueq ugt uge
31 syn keyword llvmStatemen
[all...]
/external/python/cpython2/Misc/Vim/
H A Dpython.vim17 syn keyword pythonStatement as assert break continue del except exec finally
18 syn keyword pythonStatement global lambda pass print raise return try with
19 syn keyword pythonStatement yield
21 syn keyword pythonStatement def class nextgroup=pythonFunction skipwhite
25 syn keyword pythonRepeat for while
27 syn keyword pythonConditional if elif else
29 syn keyword pythonOperator and in is not or
31 syn keyword pythonPreCondit import from
35 syn keyword pythonTodo TODO FIXME XXX contained
65 syn keyword pythonBuilti
[all...]
/external/ImageMagick/coders/
H A Dmsl.c627 *keyword;
675 keyword=(const char *) NULL;
706 keyword=(const char *) attributes[i++];
711 switch (*keyword)
716 if (LocaleCompare(keyword,"channel") == 0)
726 keyword);
732 if (LocaleCompare(keyword,"noise") == 0)
743 keyword);
749 keyword);
786 keyword
621 *keyword; local
7914 SetMSLAttributes(MSLInfo *msl_info,const char *keyword, const char *value) argument
[all...]
H A Dmpc.c153 keyword[MagickPathExtent],
222 (void) ResetMagickMemory(keyword,0,sizeof(keyword));
281 Get the keyword.
284 p=keyword;
289 if ((size_t) (p-keyword) < (MagickPathExtent-1))
300 Get the keyword value.
338 Assign a value to the specified keyword.
340 switch (*keyword)
345 if (LocaleCompare(keyword,"alph
149 keyword[MagickPathExtent], local
[all...]
/external/libcups/cups/
H A Dppd-custom.c41 const char *keyword)/* I - Custom option name */
49 strlcpy(key.keyword, keyword, sizeof(key.keyword));
40 ppdFindCustomOption(ppd_file_t *ppd, const char *keyword) argument
H A Dpwg-private.h39 extern void _pwgGenerateSize(char *keyword, size_t keysize,
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
H A Dpredicates.rb14 /* With this true, enum is seen as a keyword. False, it's an identifier */
24 | enumAsKeyword {$enumIs = "keyword"}
52 example "'enum' is a keyword" do
56 parser.stat.should == 'keyword'
/external/icu/icu4c/source/test/cintltst/
H A Dcpluralrulestest.c80 UChar keyword[kKeywordBufLen]; local
82 int32_t keywdLen = uplrules_select(uplrules, testItemPtr->number, keyword, kKeywordBufLen, &status);
84 keyword[kKeywordBufLen-1] = 0;
88 if ( u_strcmp(keyword, keywordExpected) != 0 ) {
91 testItemPtr->locale, testItemPtr->number, testItemPtr->keywordExpected, u_austrcpy(bcharBuf,keyword) );
101 keywdLen = uplrules_selectWithFormat(uplrules, testItemPtr->number, unumfmt, keyword, kKeywordBufLen, &status);
103 keyword[kKeywordBufLen-1] = 0;
107 if ( u_strcmp(keyword, keywordExpected) != 0 ) {
110 testItemPtr->locale, testItemPtr->number, testItemPtr->keywordExpectedForDecimals, u_austrcpy(bcharBuf,keyword) );
130 UChar keyword[ local
162 getKeywordIndex(const char* keyword) argument
227 const char* keyword; local
[all...]
/external/python/cpython2/Tools/scripts/
H A Difdef.py69 keyword = words[0]
70 if keyword not in keywords:
73 if keyword in ('ifdef', 'ifndef') and len(words) == 2:
74 if keyword == 'ifdef':
88 elif keyword == 'if':
91 elif keyword == 'else' and stack:
100 elif keyword == 'endif' and stack:
107 sys.stderr.write('Unknown keyword %s\n' % keyword)
/external/python/cpython3/Tools/scripts/
H A Difdef.py69 keyword = words[0]
70 if keyword not in keywords:
73 if keyword in ('ifdef', 'ifndef') and len(words) == 2:
74 if keyword == 'ifdef':
88 elif keyword == 'if':
91 elif keyword == 'else' and stack:
100 elif keyword == 'endif' and stack:
107 sys.stderr.write('Unknown keyword %s\n' % keyword)
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DPluralSamples.java90 String keyword = pluralRules.select(s);
91 addRelation(foundKeywords, keyword, s);
104 System.out.println("Failed to find sample for each keyword: " + foundKeywords + "\n\t" + pluralRules + "\n\t" + mentioned);
113 String keyword = pluralRules.select(s);
114 Set<FixedDecimal> list = sampleFractionMap.get(keyword);
117 sampleFractionMap.put(keyword, list);
147 String keyword = pluralRules.select(val);
148 boolean keyIsLimited = _keyLimitedMap.get(keyword);
150 List<Double> list = sampleMap.get(keyword);
153 sampleMap.put(keyword, lis
165 addRelation(Map<String, Set<FixedDecimal>> foundKeywords, String keyword, FixedDecimal s) argument
231 getDifferentCategory(List<Integer> ints, String keyword) argument
247 getStatus(String keyword, int offset, Set<Double> explicits, Output<Double> uniqueValue) argument
315 getAllKeywordValues(String keyword) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DPluralSamples.java88 String keyword = pluralRules.select(s);
89 addRelation(foundKeywords, keyword, s);
102 System.out.println("Failed to find sample for each keyword: " + foundKeywords + "\n\t" + pluralRules + "\n\t" + mentioned);
111 String keyword = pluralRules.select(s);
112 Set<FixedDecimal> list = sampleFractionMap.get(keyword);
115 sampleFractionMap.put(keyword, list);
145 String keyword = pluralRules.select(val);
146 boolean keyIsLimited = _keyLimitedMap.get(keyword);
148 List<Double> list = sampleMap.get(keyword);
151 sampleMap.put(keyword, lis
163 addRelation(Map<String, Set<FixedDecimal>> foundKeywords, String keyword, FixedDecimal s) argument
229 getDifferentCategory(List<Integer> ints, String keyword) argument
245 getStatus(String keyword, int offset, Set<Double> explicits, Output<Double> uniqueValue) argument
314 getAllKeywordValues(String keyword) argument
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DKeywordsBox.java57 for (String keyword : keywords) {
58 contentSize += 1 + Utf8.utf8StringLengthInBytes(keyword) + 1;
80 for (String keyword : keywords) {
81 IsoTypeWriter.writeUInt8(byteBuffer, Utf8.utf8StringLengthInBytes(keyword) + 1);
82 byteBuffer.put(Utf8.convert(keyword));
90 buffer.append(";keyword").append(i).append("=").append(keywords[i]);

Completed in 627 milliseconds

1234567891011