Home
last modified time | relevance | path

Searched refs:COMMA (Results 1 - 25 of 96) sorted by relevance

1234

/third_party/skia/bench/
H A DColorPrivBench.cpp82 #define COMMA , macro
83 DEF_BENCH(return (new FourByteInterpBench<true COMMA true>);)
84 DEF_BENCH(return (new FourByteInterpBench<true COMMA false>);)
85 DEF_BENCH(return (new FourByteInterpBench<false COMMA true>);)
86 DEF_BENCH(return (new FourByteInterpBench<false COMMA false>);)
87 #undef COMMA macro
/third_party/node/deps/npm/node_modules/jsonparse/test/
H A Doffset.js13 [ 21, Parser.C.COMMA ],
17 [ 36, Parser.C.COMMA ],
25 [ 70, Parser.C.COMMA ],
30 [ 89, Parser.C.COMMA ],
36 [ 114, Parser.C.COMMA ],
40 [ 128, Parser.C.COMMA ],
44 [ 144, Parser.C.COMMA ],
/third_party/python/Lib/lib2to3/fixes/
H A Dfix_ws_comma.py20 COMMA = pytree.Leaf(token.COMMA, ",") variable in FixWsComma
22 SEPS = (COMMA, COLON)
H A Dfix_isinstance.py37 if idx < len(args) - 1 and args[idx + 1].type == token.COMMA:
44 if new_args and new_args[-1].type == token.COMMA:
H A Dfix_itertools_imports.py43 if remove_comma and child.type == token.COMMA:
48 while children and children[-1].type == token.COMMA:
/third_party/node/deps/npm/node_modules/@tufjs/canonical-json/lib/
H A Dindex.js1 const COMMA = ',';
27 buffer.push(COMMA);
40 buffer.push(COMMA);
/third_party/python/Lib/test/
H A Dtest_tokenize.py1397 self.assertExactTypeEqual(',', token.COMMA)
1448 token.NUMBER, token.COMMA,
1449 token.NUMBER, token.COMMA,
1968 COMMA ',' (1, 9) (1, 10)
1970 COMMA ',' (1, 12) (1, 13)
1974 COMMA ',' (1, 17) (1, 18)
1978 COMMA ',' (1, 22) (1, 23)
1993 COMMA ',' (1, 13) (1, 14)
1996 COMMA ',' (1, 17) (1, 18)
2011 COMMA ',' (
[all...]
/third_party/node/deps/npm/node_modules/jsonparse/
H A Djsonparse.js10 var COMMA = C.COMMA = 0x6; variable
139 }else if(n === 0x2c){ this.onToken(COMMA, ","); // ,
336 if (this.mode) { this.state = COMMA; }
396 }else if(this.state === COMMA){
397 if (token === COMMA) {
/third_party/python/Lib/
H A Dtoken.py18 COMMA = 12 variable
94 ',': COMMA,
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DStaticUnicodeSets.java32 // - COMMA is a superset of STRICT_COMMA
34 // - ALL_SEPARATORS is the union of COMMA, PERIOD, and OTHER_GROUPING_SEPARATORS
36 COMMA, enum constant
200 saveSet(isLenient ? Key.COMMA : Key.STRICT_COMMA, str); in put()
246 assert unicodeSets.containsKey(Key.COMMA);
257 computeUnion(Key.COMMA, Key.PERIOD, Key.OTHER_GROUPING_SEPARATORS));
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DStaticUnicodeSets.java39 // - COMMA is a superset of STRICT_COMMA
41 // - ALL_SEPARATORS is the union of COMMA, PERIOD, and OTHER_GROUPING_SEPARATORS
43 COMMA, enum constant
207 saveSet(isLenient ? Key.COMMA : Key.STRICT_COMMA, str); in put()
253 assert unicodeSets.containsKey(Key.COMMA);
264 computeUnion(Key.COMMA, Key.PERIOD, Key.OTHER_GROUPING_SEPARATORS));
/third_party/node/deps/icu-small/source/tools/genrb/
H A Dread.c31 #define COMMA 0x002C macro
97 case COMMA: in getNextToken()
279 || c == COMMA in getStringToken()
315 if (c == OPENBRACE || c == CLOSEBRACE || c == COMMA || c == COLON) { in getStringToken()
/third_party/icu/icu4c/source/tools/genrb/
H A Dread.c31 #define COMMA 0x002C macro
97 case COMMA: in getNextToken()
279 || c == COMMA in getStringToken()
315 if (c == OPENBRACE || c == CLOSEBRACE || c == COMMA || c == COLON) { in getStringToken()
/third_party/skia/third_party/externals/icu/source/tools/genrb/
H A Dread.c29 #define COMMA 0x002C macro
95 case COMMA: in getNextToken()
277 || c == COMMA in getStringToken()
313 if (c == OPENBRACE || c == CLOSEBRACE || c == COMMA || c == COLON) { in getStringToken()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A Dglslang.y198 %token <lex> COMMA COLON EQUAL SEMICOLON BANG DASH TILDE PLUS STAR SLASH PERCENT
373 | function_call_header_with_parameters COMMA assignment_expression {
583 | expression COMMA assignment_expression {
666 | function_header_with_parameters COMMA parameter_declaration {
737 | init_declarator_list COMMA identifier {
741 | init_declarator_list COMMA identifier array_specifier {
745 | init_declarator_list COMMA identifier array_specifier EQUAL initializer {
750 | init_declarator_list COMMA identifier EQUAL initializer {
951 | layout_qualifier_id_list COMMA layout_qualifier_id {
1464 | struct_declarator_list COMMA struct_declarato
[all...]
/third_party/icu/icu4c/source/common/
H A Dstatic_unicode_sets.cpp97 saveSet(isLenient ? COMMA : STRICT_COMMA, str, status);
168 U_ASSERT(gUnicodeSets[COMMA] != nullptr); in initNumberParseUniSets()
181 gUnicodeSets[ALL_SEPARATORS] = computeUnion(COMMA, PERIOD, OTHER_GROUPING_SEPARATORS); in initNumberParseUniSets()
H A Dstatic_unicode_sets.h40 // - COMMA is a superset of STRICT_COMMA
42 // - ALL_SEPARATORS is the union of COMMA, PERIOD, and OTHER_GROUPING_SEPARATORS
44 COMMA, enumerator
/third_party/node/deps/icu-small/source/common/
H A Dstatic_unicode_sets.cpp97 saveSet(isLenient ? COMMA : STRICT_COMMA, str, status);
168 U_ASSERT(gUnicodeSets[COMMA] != nullptr); in initNumberParseUniSets()
181 gUnicodeSets[ALL_SEPARATORS] = computeUnion(COMMA, PERIOD, OTHER_GROUPING_SEPARATORS); in initNumberParseUniSets()
H A Dstatic_unicode_sets.h40 // - COMMA is a superset of STRICT_COMMA
42 // - ALL_SEPARATORS is the union of COMMA, PERIOD, and OTHER_GROUPING_SEPARATORS
44 COMMA, enumerator
/third_party/skia/third_party/externals/icu/source/common/
H A Dstatic_unicode_sets.cpp97 saveSet(isLenient ? COMMA : STRICT_COMMA, str, status);
168 U_ASSERT(gUnicodeSets[COMMA] != nullptr); in initNumberParseUniSets()
181 gUnicodeSets[ALL_SEPARATORS] = computeUnion(COMMA, PERIOD, OTHER_GROUPING_SEPARATORS); in initNumberParseUniSets()
H A Dstatic_unicode_sets.h40 // - COMMA is a superset of STRICT_COMMA
42 // - ALL_SEPARATORS is the union of COMMA, PERIOD, and OTHER_GROUPING_SEPARATORS
44 COMMA, enumerator
/third_party/mesa3d/src/intel/tools/
H A Di965_gram.y361 %token COMMA
2004 | LSQUARE exp2 COMMA exp2 COMMA exp2 COMMA exp2 RSQUARE
2042 | LANGLE exp COMMA exp COMMA exp RANGLE
2057 | LANGLE exp SEMICOLON exp COMMA exp RANGLE
2071 | LANGLE VxH COMMA exp COMMA exp RANGLE
2085 LANGLE exp COMMA ex
[all...]
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
H A Dglslang.y183 %token <lex> COMMA COLON EQUAL SEMICOLON BANG DASH TILDE PLUS STAR SLASH PERCENT
356 | function_call_header_with_parameters COMMA assignment_expression {
580 | expression COMMA assignment_expression {
666 | function_header_with_parameters COMMA parameter_declaration {
806 | init_declarator_list COMMA IDENTIFIER {
810 | init_declarator_list COMMA IDENTIFIER LEFT_BRACKET constant_expression RIGHT_BRACKET {
814 | init_declarator_list COMMA IDENTIFIER LEFT_BRACKET RIGHT_BRACKET EQUAL initializer {
819 | init_declarator_list COMMA IDENTIFIER LEFT_BRACKET constant_expression RIGHT_BRACKET EQUAL initializer {
824 | init_declarator_list COMMA IDENTIFIER EQUAL initializer {
1040 | layout_qualifier_id_list COMMA layout_qualifier_i
[all...]
/third_party/gn/src/gn/
H A Dtoken.h48 COMMA, // , enumerator
/third_party/python/Include/
H A Dtoken.h25 #define COMMA 12 macro

Completed in 16 milliseconds

1234