/external/syslinux/core/ |
D | keywords.inc | 16 ;; 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 initrd, pc_filename, InitRD [all …]
|
/external/ImageMagick/coders/ |
D | msl.c | 621 *keyword; in MSLStartElement() local 669 keyword=(const char *) NULL; in MSLStartElement() 700 keyword=(const char *) attributes[i++]; in MSLStartElement() 705 switch (*keyword) in MSLStartElement() 710 if (LocaleCompare(keyword,"channel") == 0) in MSLStartElement() 720 keyword); in MSLStartElement() 726 if (LocaleCompare(keyword,"noise") == 0) in MSLStartElement() 737 keyword); in MSLStartElement() 743 keyword); in MSLStartElement() 780 keyword=(const char *) attributes[i++]; in MSLStartElement() [all …]
|
D | mpc.c | 149 keyword[MagickPathExtent], in ReadMPCImage() local 218 (void) ResetMagickMemory(keyword,0,sizeof(keyword)); in ReadMPCImage() 280 p=keyword; in ReadMPCImage() 285 if ((size_t) (p-keyword) < (MagickPathExtent-1)) in ReadMPCImage() 336 switch (*keyword) in ReadMPCImage() 341 if (LocaleCompare(keyword,"alpha-color") == 0) in ReadMPCImage() 347 if (LocaleCompare(keyword,"alpha-trait") == 0) in ReadMPCImage() 359 (void) SetImageProperty(image,keyword,options,exception); in ReadMPCImage() 365 if (LocaleCompare(keyword,"background-color") == 0) in ReadMPCImage() 371 if (LocaleCompare(keyword,"blue-primary") == 0) in ReadMPCImage() [all …]
|
D | svg.c | 795 *keyword, in SVGStartElement() local 833 keyword=(const char *) attributes[i]; in SVGStartElement() 835 switch (*keyword) in SVGStartElement() 840 if (LocaleCompare(keyword,"cx") == 0) in SVGStartElement() 846 if (LocaleCompare(keyword,"cy") == 0) in SVGStartElement() 857 if (LocaleCompare(keyword,"fx") == 0) in SVGStartElement() 863 if (LocaleCompare(keyword,"fy") == 0) in SVGStartElement() 874 if (LocaleCompare(keyword,"height") == 0) in SVGStartElement() 885 if (LocaleCompare(keyword,"id") == 0) in SVGStartElement() 895 if (LocaleCompare(keyword,"r") == 0) in SVGStartElement() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | StandardPlural.java | 44 private final String keyword; field in StandardPlural 47 keyword = kw; in StandardPlural() 54 return keyword; in getKeyword() 61 public static final StandardPlural orNullFromString(CharSequence keyword) { in orNullFromString() argument 62 switch (keyword.length()) { in orNullFromString() 64 if ("one".contentEquals(keyword)) { in orNullFromString() 66 } else if ("two".contentEquals(keyword)) { in orNullFromString() 68 } else if ("few".contentEquals(keyword)) { in orNullFromString() 73 if ("many".contentEquals(keyword)) { in orNullFromString() 75 } else if ("zero".contentEquals(keyword)) { in orNullFromString() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | StandardPlural.java | 46 private final String keyword; field in StandardPlural 49 keyword = kw; in StandardPlural() 56 return keyword; in getKeyword() 63 public static final StandardPlural orNullFromString(CharSequence keyword) { in orNullFromString() argument 64 switch (keyword.length()) { in orNullFromString() 66 if ("one".contentEquals(keyword)) { in orNullFromString() 68 } else if ("two".contentEquals(keyword)) { in orNullFromString() 70 } else if ("few".contentEquals(keyword)) { in orNullFromString() 75 if ("many".contentEquals(keyword)) { in orNullFromString() 77 } else if ("zero".contentEquals(keyword)) { in orNullFromString() [all …]
|
/external/icu/icu4c/source/i18n/ |
D | standardplural.cpp | 34 int32_t StandardPlural::indexOrNegativeFromString(const char *keyword) { in indexOrNegativeFromString() argument 35 switch (*keyword++) { in indexOrNegativeFromString() 37 if (uprv_strcmp(keyword, "ew") == 0) { in indexOrNegativeFromString() 42 if (uprv_strcmp(keyword, "any") == 0) { in indexOrNegativeFromString() 47 if (uprv_strcmp(keyword, "ther") == 0) { in indexOrNegativeFromString() 49 } else if (uprv_strcmp(keyword, "ne") == 0) { in indexOrNegativeFromString() 54 if (uprv_strcmp(keyword, "wo") == 0) { in indexOrNegativeFromString() 59 if (uprv_strcmp(keyword, "ero") == 0) { in indexOrNegativeFromString() 76 int32_t StandardPlural::indexOrNegativeFromString(const UnicodeString &keyword) { in indexOrNegativeFromString() argument 77 switch (keyword.length()) { in indexOrNegativeFromString() [all …]
|
D | standardplural.h | 50 static Form orOtherFromString(const char *keyword) { in orOtherFromString() argument 51 return static_cast<Form>(indexOrOtherIndexFromString(keyword)); in orOtherFromString() 58 static Form orOtherFromString(const UnicodeString &keyword) { in orOtherFromString() argument 59 return static_cast<Form>(indexOrOtherIndexFromString(keyword)); in orOtherFromString() 68 static Form fromString(const char *keyword, UErrorCode &errorCode) { in fromString() argument 69 return static_cast<Form>(indexFromString(keyword, errorCode)); in fromString() 78 static Form fromString(const UnicodeString &keyword, UErrorCode &errorCode) { in fromString() argument 79 return static_cast<Form>(indexFromString(keyword, errorCode)); in fromString() 86 static int32_t indexOrNegativeFromString(const char *keyword); 92 static int32_t indexOrNegativeFromString(const UnicodeString &keyword); [all …]
|
/external/swiftshader/third_party/LLVM/utils/vim/ |
D | llvm.vim | 17 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 llvmStatement ult ule une uno [all …]
|
/external/python/cpython2/Misc/Vim/ |
D | python.vim | 17 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 pythonBuiltin Ellipsis False None NotImplemented True __debug__ [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | PluralSamples.java | 90 String keyword = pluralRules.select(s); in PluralSamples() local 91 addRelation(foundKeywords, keyword, s); in PluralSamples() 113 String keyword = pluralRules.select(s); in PluralSamples() local 114 Set<FixedDecimal> list = sampleFractionMap.get(keyword); in PluralSamples() 117 sampleFractionMap.put(keyword, list); in PluralSamples() 147 String keyword = pluralRules.select(val); in addSimpleSamples() local 148 boolean keyIsLimited = _keyLimitedMap.get(keyword); in addSimpleSamples() 150 List<Double> list = sampleMap.get(keyword); in addSimpleSamples() 153 sampleMap.put(keyword, list); in addSimpleSamples() 165 …private void addRelation(Map<String, Set<FixedDecimal>> foundKeywords, String keyword, FixedDecima… in addRelation() argument [all …]
|
D | PluralRules.java | 1414 String keyword = description.substring(0, x).trim(); in parseRule() local 1415 if (!isValidKeyword(keyword)) { in parseRule() 1416 throw new ParseException("keyword '" + keyword + in parseRule() 1448 boolean isOther = keyword.equals("other"); in parseRule() 1459 return new Rule(keyword, constraint, integerSamples, decimalSamples); in parseRule() 1668 private final String keyword; field in PluralRules.Rule 1673 …public Rule(String keyword, Constraint constraint, FixedDecimalSamples integerSamples, FixedDecima… in Rule() argument 1674 this.keyword = keyword; in Rule() 1682 … return new Rule(keyword, new AndConstraint(constraint, c), integerSamples, decimalSamples); in and() 1687 … return new Rule(keyword, new OrConstraint(constraint, c), integerSamples, decimalSamples); in or() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | PluralSamples.java | 88 String keyword = pluralRules.select(s); in PluralSamples() local 89 addRelation(foundKeywords, keyword, s); in PluralSamples() 111 String keyword = pluralRules.select(s); in PluralSamples() local 112 Set<FixedDecimal> list = sampleFractionMap.get(keyword); in PluralSamples() 115 sampleFractionMap.put(keyword, list); in PluralSamples() 145 String keyword = pluralRules.select(val); in addSimpleSamples() local 146 boolean keyIsLimited = _keyLimitedMap.get(keyword); in addSimpleSamples() 148 List<Double> list = sampleMap.get(keyword); in addSimpleSamples() 151 sampleMap.put(keyword, list); in addSimpleSamples() 163 …private void addRelation(Map<String, Set<FixedDecimal>> foundKeywords, String keyword, FixedDecima… in addRelation() argument [all …]
|
D | PluralRules.java | 1368 String keyword = description.substring(0, x).trim(); in parseRule() local 1369 if (!isValidKeyword(keyword)) { in parseRule() 1370 throw new ParseException("keyword '" + keyword + in parseRule() 1402 boolean isOther = keyword.equals("other"); in parseRule() 1413 return new Rule(keyword, constraint, integerSamples, decimalSamples); in parseRule() 1622 private final String keyword; field in PluralRules.Rule 1627 …public Rule(String keyword, Constraint constraint, FixedDecimalSamples integerSamples, FixedDecima… in Rule() argument 1628 this.keyword = keyword; in Rule() 1636 … return new Rule(keyword, new AndConstraint(constraint, c), integerSamples, decimalSamples); in and() 1641 … return new Rule(keyword, new OrConstraint(constraint, c), integerSamples, decimalSamples); in or() [all …]
|
/external/libcups/cups/ |
D | ppd.c | 105 char *keyword, char *option, char *text, 456 char keyword[PPD_MAX_NAME], in _ppdOpen() local 623 mask = ppd_read(fp, &line, keyword, name, text, &string, 0, pg); in _ppdOpen() 625 DEBUG_printf(("2_ppdOpen: mask=%x, keyword=\"%s\"...", mask, keyword)); in _ppdOpen() 628 strcmp(keyword, "PPD-Adobe") || in _ppdOpen() 644 DEBUG_printf(("2_ppdOpen: keyword=%s, string=%p", keyword, string)); in _ppdOpen() 681 while ((mask = ppd_read(fp, &line, keyword, name, text, &string, 1, pg)) != 0) in _ppdOpen() 684 "text=\"%s\", string=%d chars...", mask, keyword, name, text, in _ppdOpen() 687 if (strncmp(keyword, "Default", 7) && !string && in _ppdOpen() 726 (temp = strchr(keyword, '.')) != NULL && in _ppdOpen() [all …]
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/ |
D | parsetree.py | 66 def __init__(self, keyword, isend, text, **kwargs): argument 69 self.keyword = keyword 71 self.is_primary = keyword in ['for', 'if', 'while', 'try', 'with'] 90 def is_ternary(self, keyword): argument 94 return keyword in { 98 }.get(self.keyword, []) 102 self.keyword, 211 def __call__(cls, keyword, attributes, **kwargs): argument 212 if ":" in keyword: 213 ns, defname = keyword.split(':') [all …]
|
D | 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): 166 (node.keyword, self.control_line[-1].keyword), 253 self.tag[-1].keyword, 258 self.control_line[-1].keyword, 282 keyword, attr, isend = match.groups() 283 self.keyword = keyword 292 self.append_node(parsetree.Tag, keyword, attributes) 296 if keyword == 'text': [all …]
|
/external/python/cpython2/Doc/reference/ |
D | compound_stmts.rst | 14 The :keyword:`if`, :keyword:`while` and :keyword:`for` statements implement 15 traditional control flow constructs. :keyword:`try` specifies exception 26 identifying keyword and ends with a colon. A suite is a group of statements 31 mostly because it wouldn't be clear to which :keyword:`if` clause a following 32 :keyword:`else` clause would belong: :: 37 that in the following example, either all or none of the :keyword:`print` 64 keyword that cannot start a statement, thus there are no ambiguities (the 65 'dangling :keyword:`else`' problem is solved in Python by requiring nested 66 :keyword:`if` statements to be indented). 76 The :keyword:`if` statement [all …]
|
/external/messageformat/java/com/ibm/icu/simple/ |
D | PluralRules.java | 1353 String keyword = description.substring(0, x).trim(); in parseRule() local 1354 if (!isValidKeyword(keyword)) { in parseRule() 1355 throw new ParseException("keyword '" + keyword + in parseRule() 1387 boolean isOther = keyword.equals("other"); in parseRule() 1398 return new Rule(keyword, constraint, integerSamples, decimalSamples); in parseRule() 1596 private final String keyword; field in PluralRules.Rule 1601 …public Rule(String keyword, Constraint constraint, FixedDecimalSamples integerSamples, FixedDecima… in Rule() argument 1602 this.keyword = keyword; in Rule() 1610 … return new Rule(keyword, new AndConstraint(constraint, c), integerSamples, decimalSamples); in and() 1615 … return new Rule(keyword, new OrConstraint(constraint, c), integerSamples, decimalSamples); in or() [all …]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | PluralRulesTest.java | 183 …public void checkOldSamples(String description, PluralRules rules, String keyword, SampleType samp… 185 Collection<Double> oldSamples = rules.getSamples(keyword, sampleType); 186 …if (!assertEquals("getOldSamples; " + keyword + "; " + description, new HashSet(Arrays.asList(expe… 188 rules.getSamples(keyword, sampleType); 192 …public void checkNewSamples(String description, PluralRules test, String keyword, SampleType sampl… 195 FixedDecimalSamples samples = test.getDecimalSamples(keyword, sampleType); 201 assertEquals("limited: " + title, isBounded, test.isLimited(keyword, sampleType)); 326 for (String keyword : rules.getKeywords()) { 328 FixedDecimalSamples samples2 = rules.getDecimalSamples(keyword, sampleType); 333 if (keyword.equals("other")) { [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | PluralRulesTest.java | 184 …public void checkOldSamples(String description, PluralRules rules, String keyword, SampleType samp… 186 Collection<Double> oldSamples = rules.getSamples(keyword, sampleType); 187 …if (!assertEquals("getOldSamples; " + keyword + "; " + description, new HashSet(Arrays.asList(expe… 189 rules.getSamples(keyword, sampleType); 193 …public void checkNewSamples(String description, PluralRules test, String keyword, SampleType sampl… 196 FixedDecimalSamples samples = test.getDecimalSamples(keyword, sampleType); 202 assertEquals("limited: " + title, isBounded, test.isLimited(keyword, sampleType)); 327 for (String keyword : rules.getKeywords()) { 329 FixedDecimalSamples samples2 = rules.getDecimalSamples(keyword, sampleType); 334 if (keyword.equals("other")) { [all …]
|
/external/llvm/utils/vim/syntax/ |
D | 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 ole [all …]
|
/external/libxml2/doc/tutorial/ |
D | includeaddkeyword.c | 9 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; 66 keyword = argv[2]; 67 doc = parseDoc (docname, keyword);
|
/external/icu/icu4c/source/test/cintltst/ |
D | cpluralrulestest.c | 72 UChar keyword[kKeywordBufLen]; in TestPluralRules() local 74 …int32_t keywdLen = uplrules_select(uplrules, testItemPtr->number, keyword, kKeywordBufLen, &status… in TestPluralRules() 76 keyword[kKeywordBufLen-1] = 0; in TestPluralRules() 80 if ( u_strcmp(keyword, keywordExpected) != 0 ) { in TestPluralRules() 83 …ItemPtr->locale, testItemPtr->number, testItemPtr->keywordExpected, u_austrcpy(bcharBuf,keyword) ); in TestPluralRules() 98 UChar keyword[8]; in TestOrdinalRules() local 107 length = uplrules_select(upr, 2., keyword, 8, &errorCode); in TestOrdinalRules() 108 if (U_FAILURE(errorCode) || u_strCompare(keyword, length, two, 3, FALSE) != 0) { in TestOrdinalRules()
|
/external/deqp/modules/gles3/scripts/ |
D | gen-keywords.py | 111 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
|