/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/ |
KeywordsBox.java | 57 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]);
|
/external/llvm/utils/vim/syntax/ |
llvm.vim | 17 syn keyword llvmType void half float double x86_fp80 fp128 ppc_fp128 18 syn keyword llvmType label metadata x86_mmx 19 syn keyword llvmType type label opaque token 25 syn keyword llvmStatement add addrspacecast alloca and arcp ashr atomicrmw 26 syn keyword llvmStatement bitcast br call cmpxchg eq exact extractelement 27 syn keyword llvmStatement extractvalue fadd fast fcmp fdiv fence fmul fpext 28 syn keyword llvmStatement fptosi fptoui fptrunc free frem fsub getelementptr 29 syn keyword llvmStatement icmp inbounds indirectbr insertelement insertvalue 30 syn keyword llvmStatement inttoptr invoke landingpad load lshr malloc max min 31 syn keyword llvmStatement mul nand ne ninf nnan nsw nsz nuw oeq oge ogt ol [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
SelectFormat.java | 88 * <p>The resulting keyword is provided to <code>MessageFormat</code> as a 123 * for each user-defined keyword. 124 * The pattern is a sequence of (keyword, message) pairs. 125 * A keyword is a "pattern identifier": [^[[:Pattern_Syntax:][:Pattern_White_Space:]]]+ 129 * <p>You always have to define a phrase for the default keyword 130 * <code>other</code>; this phrase is returned when the keyword 132 * the <code>format</code> method matches no other keyword. 213 * Finds the SelectFormat sub-message for the given keyword, or the "other" sub-message. 216 * @param keyword a keyword to be matched to one of the SelectFormat argument's keywords [all...] |
PluralRules.java | 42 * method examines each condition in order and returns the keyword for the first condition that matches the number. If 66 * keyword "other" by the default rule. 73 * This illustrates that the same keyword can be defined multiple times. Each rule is examined in order, and the first 74 * keyword whose condition passes is the one returned. Also notes that a modulus is applied to n in the last rule. Thus 92 * rule = keyword ':' condition 93 * keyword = <identifier> 1524 String keyword = description.substring(0, x).trim(); local 1778 private final String keyword; field in class:PluralRules.Rule 1840 String keyword = nextRule.getKeyword(); local [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
SelectFormat.java | 87 * <p>The resulting keyword is provided to <code>MessageFormat</code> as a 122 * for each user-defined keyword. 123 * The pattern is a sequence of (keyword, message) pairs. 124 * A keyword is a "pattern identifier": [^[[:Pattern_Syntax:][:Pattern_White_Space:]]]+ 128 * <p>You always have to define a phrase for the default keyword 129 * <code>other</code>; this phrase is returned when the keyword 131 * the <code>format</code> method matches no other keyword. 217 * Finds the SelectFormat sub-message for the given keyword, or the "other" sub-message. 220 * @param keyword a keyword to be matched to one of the SelectFormat argument's keywords [all...] |
PluralRules.java | 41 * method examines each condition in order and returns the keyword for the first condition that matches the number. If 65 * keyword "other" by the default rule. 72 * This illustrates that the same keyword can be defined multiple times. Each rule is examined in order, and the first 73 * keyword whose condition passes is the one returned. Also notes that a modulus is applied to n in the last rule. Thus 91 * rule = keyword ':' condition 92 * keyword = <identifier> 1463 String keyword = description.substring(0, x).trim(); local 1717 private final String keyword; field in class:PluralRules.Rule 1779 String keyword = nextRule.getKeyword(); local [all...] |
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/ |
parsetree.py | 66 def __init__(self, keyword, isend, text, **kwargs): 69 self.keyword = keyword 71 self.is_primary = keyword in ['for', 'if', 'while', 'try', 'with'] 90 def is_ternary(self, keyword): 91 """return true if the given keyword is a ternary keyword 94 return keyword in { 98 }.get(self.keyword, []) 102 self.keyword, [all...] |
ast.py | 81 (keyword, expr) = m.group(1,2) 82 if keyword in ['for','if', 'while']: 84 elif keyword == 'try': 86 elif keyword == 'elif' or keyword == 'else': 88 elif keyword == 'except': 90 elif keyword == 'with': 94 "Unsupported control keyword: '%s'" % 95 keyword, **exception_kwargs) 113 "'**%s' keyword argument not allowed here" [all...] |
lexer.py | 145 control_frame.is_ternary(node.keyword)): 160 self.control_line[-1].is_ternary(node.keyword): 163 not self.control_line[-1].is_ternary(node.keyword): 165 "Keyword '%s' not a legal ternary for keyword '%s'" % 166 (node.keyword, self.control_line[-1].keyword), 253 self.tag[-1].keyword, 257 "Unterminated control keyword: '%s'" % 258 self.control_line[-1].keyword, [all...] |
/prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/ |
Scan.cpp | 759 keyword = it->second; 761 switch (keyword) { 778 return keyword; 785 return keyword; 806 return keyword; 813 return keyword; 819 return keyword; 825 return keyword; [all...] |
ScanContext.h | 85 int keyword; member in class:glslang::TScanContext
|
/external/icu/icu4c/source/i18n/unicode/ |
upluralrules.h | 31 * returns the keyword for the first condition that matches the number. 39 * the value of keyword returned by the uplrules_select function. 135 * Given a number, returns the keyword of the first rule that 139 * @param keyword The keyword of the rule that applies to number. 140 * @param capacity The capacity of keyword. 142 * @return The length of keyword. 148 UChar *keyword, int32_t capacity, 153 * Given a number, returns the keyword of the first rule that applies to the 163 * @param keyword The keyword of the rule that applies to number [all...] |
plurrule.h | 58 * examines each condition in order and returns the keyword for the 73 * are assigned the keyword "other" by the default rule. 76 * This illustrates that the same keyword can be defined multiple times. 77 * Each rule is examined in order, and the first keyword whose condition 93 * rule = keyword ':' condition 94 * keyword = <identifier> 179 * 'other'. Callers need to check the value of keyword returned by 184 * UnicodeString keyword = pl->select(number); 185 * if (keyword== UnicodeString("one") { 329 * Given a number, returns the keyword of the first rule that applies t [all...] |
/external/libcups/cups/ |
ppd.c | 39 #define PPD_KEYWORD 1 /* Line contained a keyword */ 105 char *keyword, char *option, char *text, 329 _("Illegal main keyword string"), 330 _("Illegal option keyword string"), 334 _("Missing option keyword"), 454 char keyword[PPD_MAX_NAME], local 455 /* Keyword from file */ 470 int ui_keyword; /* Is this line a UI keyword? */ 621 mask = ppd_read(fp, &line, keyword, name, text, &string, 0, pg); 623 DEBUG_printf(("2_ppdOpen: mask=%x, keyword=\"%s\"...", mask, keyword)) [all...] |
ppd-localize.c | 61 char ckeyword[PPD_MAX_NAME], /* Custom keyword */ 92 if ((locattr = _ppdLocalizedAttr(ppd, "Translation", option->keyword, 101 !ppdFindCustomOption(ppd, option->keyword)) 102 locattr = _ppdLocalizedAttr(ppd, option->keyword, choice->choice, 106 snprintf(ckeyword, sizeof(ckeyword), "Custom%s", option->keyword); 129 snprintf(ckeyword, sizeof(ckeyword), "ParamCustom%s", coption->keyword); 192 const char *keyword, /* I - Main keyword */ 193 const char *spec) /* I - Option keyword or @code NULL@ for none */ 210 locattr = _ppdLocalizedAttr(ppd, keyword, spec, ll_CC) [all...] |
/external/python/cpython3/Lib/test/ |
test_keyword.py | 1 import keyword 11 KEYWORD_FILE = support.findfile('keyword.py') 22 self.assertTrue(keyword.iskeyword('True')) 25 self.assertFalse(keyword.iskeyword('TRUE')) 28 self.assertFalse(keyword.iskeyword(None)) 33 oldlist = keyword.kwlist 34 self.addCleanup(setattr, keyword, 'kwlist', oldlist) 35 keyword.kwlist = ['its', 'all', 'eggs', 'beans', 'and', 'a', 'slice'] 36 self.assertFalse(keyword.iskeyword('eggs'))
|
/external/curl/lib/ |
curl_fnmatch.c | 74 char keyword[KEYLEN] = { 0 }; local 85 keyword[i] = c; 101 if(strcmp(keyword, "digit") == 0) 103 else if(strcmp(keyword, "alnum") == 0) 105 else if(strcmp(keyword, "alpha") == 0) 107 else if(strcmp(keyword, "xdigit") == 0) 109 else if(strcmp(keyword, "print") == 0) 111 else if(strcmp(keyword, "graph") == 0) 113 else if(strcmp(keyword, "space") == 0) 115 else if(strcmp(keyword, "blank") == 0 [all...] |
/external/python/cpython2/Misc/Vim/ |
vim_syntax.py | 3 import keyword 82 [("Statement", "pythonStatement", "keyword", 83 (kw for kw in keyword.kwlist 87 ("Statement", "pythonStatement", "keyword", 92 ("Repeat", "pythonRepeat", "keyword", looping), 93 ("Conditional", "pythonConditional", "keyword", 95 ("Operator", "pythonOperator", "keyword", boolean_ops), 96 ("PreCondit", "pythonPreCondit", "keyword", import_stmts), 99 ("Todo", "pythonTodo", "keyword", 112 [("Function", "pythonBuiltin", "keyword", builtin_names) [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
PluralRulesTest.java | 189 public void checkOldSamples(String description, PluralRules rules, String keyword, SampleType sampleType, 191 Collection<Double> oldSamples = rules.getSamples(keyword, sampleType); 192 if (!assertEquals("getOldSamples; " + keyword + "; " + description, new HashSet(Arrays.asList(expected)), 194 rules.getSamples(keyword, sampleType); 198 public void checkNewSamples(String description, PluralRules test, String keyword, SampleType sampleType, 201 FixedDecimalSamples samples = test.getDecimalSamples(keyword, sampleType); 207 assertEquals("limited: " + title, isBounded, test.isLimited(keyword, sampleType)); 332 for (String keyword : rules.getKeywords()) { 334 FixedDecimalSamples samples2 = rules.getDecimalSamples(keyword, sampleType); 339 if (keyword.equals("other")) [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
PluralRulesTest.java | 186 public void checkOldSamples(String description, PluralRules rules, String keyword, SampleType sampleType, 188 Collection<Double> oldSamples = rules.getSamples(keyword, sampleType); 189 if (!assertEquals("getOldSamples; " + keyword + "; " + description, new HashSet(Arrays.asList(expected)), 191 rules.getSamples(keyword, sampleType); 195 public void checkNewSamples(String description, PluralRules test, String keyword, SampleType sampleType, 198 FixedDecimalSamples samples = test.getDecimalSamples(keyword, sampleType); 204 assertEquals("limited: " + title, isBounded, test.isLimited(keyword, sampleType)); 329 for (String keyword : rules.getKeywords()) { 331 FixedDecimalSamples samples2 = rules.getDecimalSamples(keyword, sampleType); 336 if (keyword.equals("other")) [all...] |
/external/icu/icu4c/source/i18n/ |
selfmt.cpp | 88 SelectFormat::format(const UnicodeString& keyword, 95 // Check for the validity of the keyword 96 if (!PatternProps::isIdentifier(keyword.getBuffer(), keyword.length())) { 103 int32_t msgStart = findSubMessage(msgPattern, 0, keyword, status); 128 const UnicodeString& keyword, UErrorCode& ec) { 143 if(pattern.partSubstringMatches(part, keyword)) { 144 // keyword matches
|
/external/protobuf/editors/ |
proto.vim | 53 syn keyword pbTodo contained TODO FIXME XXX 56 syn keyword pbSyntax syntax import option 57 syn keyword pbStructure package message group oneof 58 syn keyword pbRepeat optional required repeated 59 syn keyword pbDefault default 60 syn keyword pbExtend extend extensions to max reserved 61 syn keyword pbRPC service rpc returns 63 syn keyword pbType int32 int64 uint32 uint64 sint32 sint64 64 syn keyword pbType fixed32 fixed64 sfixed32 sfixed64 65 syn keyword pbType float double bool string byte [all...] |
/external/ImageMagick/coders/ |
vicar.c | 153 keyword[MagickPathExtent], 228 Determine a keyword and its value. 230 p=keyword; 233 if ((size_t) (p-keyword) < (MagickPathExtent-1)) 259 Assign a value to the specified keyword. 261 if (LocaleCompare(keyword,"Label_RECORDS") == 0) 263 if (LocaleCompare(keyword,"LBLSIZE") == 0) 265 if (LocaleCompare(keyword,"RECORD_BYTES") == 0) 267 if (LocaleCompare(keyword,"NS") == 0) 269 if (LocaleCompare(keyword,"LINES") == 0 149 keyword[MagickPathExtent], local [all...] |
/external/icu/icu4c/source/test/intltest/ |
plurults.h | 45 int32_t line, const char *keyword, ...);
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/javadoc/ |
JavadocBlockTag.java | 63 this.keyword = screamingToCamelCase(name()); 66 private String keyword; field in class:JavadocBlockTag.Type 74 if (t.keyword.equals(tagName)) { 90 this.tagName = type.keyword;
|