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

12345

/external/deqp/modules/gles2/scripts/
H A Dgen-keywords.py75 for keyword in KEYWORDS:
76 keywords.append(IdentifierCase(keyword, keyword)) # Keywords
78 for keyword in RESERVED_KEYWORDS:
79 reservedKeywords.append(IdentifierCase(keyword, keyword)) # Reserved keywords
/external/deqp/modules/gles3/scripts/
H A Dgen-keywords.py89 for keyword in KEYWORDS:
90 keywords.append(IdentifierCase(keyword, keyword)) # Keywords
92 for keyword in RESERVED_KEYWORDS:
93 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/llvm/utils/vim/
H A Dllvm.vim17 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
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 llvmStatemen
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dcpluralrulestest.c70 UChar keyword[kKeywordBufLen]; local
72 int32_t keywdLen = uplrules_select(uplrules, testItemPtr->number, keyword, kKeywordBufLen, &status);
74 keyword[kKeywordBufLen-1] = 0;
78 if ( u_strcmp(keyword, keywordExpected) != 0 ) {
81 testItemPtr->locale, testItemPtr->number, testItemPtr->keywordExpected, u_austrcpy(bcharBuf,keyword) );
96 UChar keyword[8]; local
105 length = uplrules_select(upr, 2., keyword, 8, &errorCode);
106 if (U_FAILURE(errorCode) || u_strCompare(keyword, length, two, 3, FALSE) != 0) {
/external/v8/test/mjsunit/
H A Dobject-literal.js142 function testKeywordProperty(keyword) {
145 // Sanity check that what we get is a keyword.
146 eval("var " + keyword + " = 42;");
153 var x = eval("({" + keyword + ": 42})");
154 assertEquals(42, x[keyword]);
155 assertEquals(42, eval("x." + keyword));
156 eval("x." + keyword + " = 37");
157 assertEquals(37, x[keyword]);
158 assertEquals(37, eval("x." + keyword));
161 var y = eval("({value : 42, get " + keyword
[all...]
/external/icu/icu4c/source/i18n/
H A Dupluralrules.cpp41 UChar *keyword, int32_t capacity,
47 if (keyword == NULL ? capacity != 0 : capacity < 0) {
52 return result.extract(keyword, capacity, *status);
39 uplrules_select(const UPluralRules *uplrules, double number, UChar *keyword, int32_t capacity, UErrorCode *status) argument
H A Dselfmt.cpp86 SelectFormat::format(const UnicodeString& keyword, argument
93 // Check for the validity of the keyword
94 if (!PatternProps::isIdentifier(keyword.getBuffer(), keyword.length())) {
101 int32_t msgStart = findSubMessage(msgPattern, 0, keyword, status);
126 const UnicodeString& keyword, UErrorCode& ec) {
141 if(pattern.partSubstringMatches(part, keyword)) {
142 // keyword matches
125 findSubMessage(const MessagePattern& pattern, int32_t partIndex, const UnicodeString& keyword, UErrorCode& ec) argument
/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/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
256 getStatus(String keyword, int offset, Set<Double> explicits, Output<Double> uniqueValue) argument
325 getAllKeywordValues(String keyword) argument
[all...]
H A DSelectFormat.java85 * <p>The resulting keyword is provided to <code>MessageFormat</code> as a
120 * for each user-defined keyword.
121 * The pattern is a sequence of (keyword, message) pairs.
122 * A keyword is a "pattern identifier": [^[[:Pattern_Syntax:][:Pattern_White_Space:]]]+</p>
126 * <p>You always have to define a phrase for the default keyword
127 * <code>other</code>; this phrase is returned when the keyword
129 * the <code>format</code> method matches no other keyword.
216 * Finds the SelectFormat sub-message for the given keyword, or the "other" sub-message.
219 * @param keyword a keyword t
222 findSubMessage(MessagePattern pattern, int partIndex, String keyword) argument
253 format(String keyword) argument
316 format(Object keyword, StringBuffer toAppendTo, FieldPosition pos) argument
[all...]
H A DPluralRules.java40 * method examines each condition in order and returns the keyword for the first condition that matches the number. If
64 * keyword "other" by the default rule.
71 * This illustrates that the same keyword can be defined multiple times. Each rule is examined in order, and the first
72 * keyword whose condition passes is the one returned. Also notes that a modulus is applied to n in the last rule. Thus
90 * rule = keyword ':' condition
91 * keyword = &lt;identifier&gt;
1347 * rule : keyword ':' condition
1348 * keyword: <identifier>
1363 String keyword = description.substring(0, x).trim();
1364 if (!isValidKeyword(keyword)) {
1606 private final String keyword; field in class:PluralRules.Rule
1611 Rule(String keyword, Constraint constraint, FixedDecimalSamples integerSamples, FixedDecimalSamples decimalSamples) argument
1721 isLimited(String keyword, SampleType sampleType) argument
1730 computeLimited(String keyword, SampleType sampleType) argument
1756 getRules(String keyword) argument
1765 select(FixedDecimal sample, String keyword) argument
1774 getDecimalSamples(String keyword, SampleType sampleType) argument
2037 matches(FixedDecimal sample, String keyword) argument
2060 getUniqueKeywordValue(String keyword) argument
2077 getAllKeywordValues(String keyword) argument
2094 getAllKeywordValues(String keyword, SampleType type) argument
2112 getSamples(String keyword) argument
2131 getSamples(String keyword, SampleType sampleType) argument
2172 addSample(String keyword, Number sample, int maxCount, Set<Double> result) argument
2197 getDecimalSamples(String keyword, SampleType sampleType) argument
2319 getKeywordStatus(String keyword, int offset, Set<Double> explicits, Output<Double> uniqueValue) argument
2342 getKeywordStatus(String keyword, int offset, Set<Double> explicits, Output<Double> uniqueValue, SampleType sampleType) argument
2398 getRules(String keyword) argument
2431 isLimited(String keyword) argument
2440 isLimited(String keyword, SampleType sampleType) argument
2449 computeLimited(String keyword, SampleType sampleType) 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]);
/external/messageformat/java/com/ibm/icu/text/
H A DSelectFormat.java85 * <p>The resulting keyword is provided to <code>MessageFormat</code> as a
120 * for each user-defined keyword.
121 * The pattern is a sequence of (keyword, message) pairs.
122 * A keyword is a "pattern identifier": [^[[:Pattern_Syntax:][:Pattern_White_Space:]]]+</p>
126 * <p>You always have to define a phrase for the default keyword
127 * <code>other</code>; this phrase is returned when the keyword
129 * the <code>format</code> method matches no other keyword.
216 * Finds the SelectFormat sub-message for the given keyword, or the "other" sub-message.
219 * @param keyword a keyword t
222 findSubMessage(MessagePattern pattern, int partIndex, String keyword) argument
253 format(String keyword) argument
316 format(Object keyword, StringBuffer toAppendTo, FieldPosition pos) argument
[all...]
/external/messageformat/java/com/ibm/icu/simple/
H A DPluralRules.java36 * method examines each condition in order and returns the keyword for the first condition that matches the number. If
60 * keyword "other" by the default rule.
67 * This illustrates that the same keyword can be defined multiple times. Each rule is examined in order, and the first
68 * keyword whose condition passes is the one returned. Also notes that a modulus is applied to n in the last rule. Thus
86 * rule = keyword ':' condition
87 * keyword = &lt;identifier&gt;
1337 * rule : keyword ':' condition
1338 * keyword: <identifier>
1353 String keyword = description.substring(0, x).trim();
1354 if (!isValidKeyword(keyword)) {
1596 private final String keyword; field in class:PluralRules.Rule
1601 Rule(String keyword, Constraint constraint, FixedDecimalSamples integerSamples, FixedDecimalSamples decimalSamples) argument
1711 isLimited(String keyword, SampleType sampleType) argument
1720 computeLimited(String keyword, SampleType sampleType) argument
1746 getRules(String keyword) argument
1755 select(FixedDecimal sample, String keyword) argument
1764 getDecimalSamples(String keyword, SampleType sampleType) argument
1974 matches(FixedDecimal sample, String keyword) argument
1997 getUniqueKeywordValue(String keyword) argument
2014 getAllKeywordValues(String keyword) argument
2031 getAllKeywordValues(String keyword, SampleType type) argument
2049 getSamples(String keyword) argument
2068 getSamples(String keyword, SampleType sampleType) argument
2109 addSample(String keyword, Number sample, int maxCount, Set<Double> result) argument
2134 getDecimalSamples(String keyword, SampleType sampleType) argument
2256 getKeywordStatus(String keyword, int offset, Set<Double> explicits, Output<Double> uniqueValue) argument
2278 getKeywordStatus(String keyword, int offset, Set<Double> explicits, Output<Double> uniqueValue, SampleType sampleType) argument
2334 getRules(String keyword) argument
2367 isLimited(String keyword) argument
2376 isLimited(String keyword, SampleType sampleType) argument
2385 computeLimited(String keyword, SampleType sampleType) argument
[all...]
/external/icu/icu4c/source/i18n/unicode/
H A Dplurrule.h52 * examines each condition in order and returns the keyword for the
67 * are assigned the keyword "other" by the default rule.
70 * This illustrates that the same keyword can be defined multiple times.
71 * Each rule is examined in order, and the first keyword whose condition
87 * rule = keyword ':' condition
88 * keyword = <identifier>
173 * 'other'. Callers need to check the value of keyword returned by
178 * UnicodeString keyword = pl->select(number);
179 * if (keyword== UnicodeString("one") {
323 * Given a number, returns the keyword o
[all...]
H A Dupluralrules.h25 * returns the keyword for the first condition that matches the number.
33 * the value of keyword returned by the uplrules_select function.
127 * Given a number, returns the keyword of the first rule that
131 * @param keyword The keyword of the rule that applies to number.
132 * @param capacity The capacity of keyword.
134 * @return The length of keyword.
140 UChar *keyword, int32_t capacity,
H A Dselfmt.h101 * <p>The resulting keyword is provided to <code>MessageFormat</code> as a
138 * for each user-defined keyword.
139 * The pattern is a sequence of (keyword, message) pairs.
140 * A keyword is a "pattern identifier": [^[[:Pattern_Syntax:][:Pattern_White_Space:]]]+</p>
144 * <p>You always have to define a phrase for the default keyword
145 * <code>other</code>; this phrase is returned when the keyword
147 * the <code>format</code> method matches no other keyword.
210 * for the keyword rules.
225 * Selects the phrase for the given keyword
227 * @param keyword Th
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DPluralRulesTest.java180 public void checkOldSamples(String description, PluralRules rules, String keyword, SampleType sampleType, argument
182 Collection<Double> oldSamples = rules.getSamples(keyword, sampleType);
183 if (!assertEquals("getOldSamples; " + keyword + "; " + description, new HashSet(Arrays.asList(expected)),
185 rules.getSamples(keyword, sampleType);
189 public void checkNewSamples(String description, PluralRules test, String keyword, SampleType sampleType, argument
192 FixedDecimalSamples samples = test.getDecimalSamples(keyword, sampleType);
198 assertEquals("limited: " + title, isBounded, test.isLimited(keyword, sampleType));
319 for (String keyword : rules.getKeywords()) {
321 FixedDecimalSamples samples2 = rules.getDecimalSamples(keyword, sampleType);
326 if (keyword
629 getAssertMessage(String message, ULocale locale, PluralRules rules, String keyword) argument
[all...]
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
H A DMaterialLoader.java159 String keyword = split[0];
160 if (keyword.equals("texture")){
162 }else if (keyword.equals("tex_address_mode")){
173 }else if (keyword.equals("filtering")){
175 }else if (keyword.equals("tex_coord_set")){
180 }else if (keyword.equals("max_anisotropy")){
184 logger.log(Level.WARNING, "Unsupported texture_unit directive: {0}", keyword);
212 String keyword = split[0];
213 if (keyword.equals("diffuse")){
221 }else if(keyword
[all...]
/external/protobuf/editors/
H A Dproto.vim53 syn keyword pbTodo contained TODO FIXME XXX
56 syn keyword pbSyntax syntax import option
57 syn keyword pbStructure package message group
58 syn keyword pbRepeat optional required repeated
59 syn keyword pbDefault default
60 syn keyword pbExtend extend extensions to max
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 pbTyp
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dplurults.h43 int32_t line, const char *keyword, ...);
/external/llvm/test/MC/AsmParser/
H A Dmacros-argument-parsing-diagnostics.s16 # CHECK: error: cannot mix positional and keyword arguments

Completed in 733 milliseconds

12345