Home
last modified time | relevance | path

Searched full:comma (Results 1 – 25 of 2031) sorted by relevance

12345678910>>...82

/external/python/uritemplates/tests/fixtures/
Dspec-examples.json67 "keys": {"semi": ";", "dot": ".", "comma":","} string
75 "comma,%2C,dot,.,semi,%3B",
76 "comma,%2C,semi,%3B,dot,.",
77 "dot,.,comma,%2C,semi,%3B",
78 "dot,.,semi,%3B,comma,%2C",
79 "semi,%3B,comma,%2C,dot,.",
80 "semi,%3B,dot,.,comma,%2C"
83 "comma=%2C,dot=.,semi=%3B",
84 "comma=%2C,semi=%3B,dot=.",
85 "dot=.,comma=%2C,semi=%3B",
[all …]
Dspec-examples-by-section.json15 "keys" : { "semi" : ";", "dot" : ".", "comma" : ","}, string
48 "keys" : { "semi" : ";", "dot" : ".", "comma" : ","}, string
72 "comma,%2C,dot,.,semi,%3B",
73 "comma,%2C,semi,%3B,dot,.",
74 "dot,.,comma,%2C,semi,%3B",
75 "dot,.,semi,%3B,comma,%2C",
76 "semi,%3B,comma,%2C,dot,.",
77 "semi,%3B,dot,.,comma,%2C"
80 "comma=%2C,dot=.,semi=%3B",
81 "comma=%2C,semi=%3B,dot=.",
[all …]
/external/smali/smali/src/test/resources/LexerTest/
DRealSmaliFileTest.tokens110 COMMA(",")
121 COMMA(",")
123 COMMA(",")
125 COMMA(",")
127 COMMA(",")
143 COMMA(",")
145 COMMA(",")
147 COMMA(",")
166 COMMA(",")
170 COMMA(",")
[all …]
/external/antlr/runtime/JavaScript/tests/functional/
DPython.g100 : defparameter (options {greedy=true;}:COMMA defparameter)*
101 (COMMA
102 ( STAR NAME (COMMA DOUBLESTAR NAME)?
106 | STAR NAME (COMMA DOUBLESTAR NAME)?
120 : fpdef (options {greedy=true;}:COMMA fpdef)* (COMMA)?
197 raise_stmt: 'raise' (test (COMMA test (COMMA test)?)?)?
201 : 'import' dotted_as_name (COMMA dotted_as_name)*
203 (STAR | import_as_name (COMMA import_as_name)*)
216 global_stmt: 'global' NAME (COMMA NAME)*
219 exec_stmt: 'exec' expr ('in' test (COMMA test)?)?
[all …]
/external/smali/smali/src/main/antlr/
DsmaliParser.g54 COMMA;
671 : OPEN_BRACE (literal (COMMA literal)* | ) CLOSE_BRACE
717 : REGISTER (COMMA REGISTER)* -> ^(I_REGISTER_LIST[$start, "I_REGISTER_LIST"] REGISTER*)
740 : PARAMETER_DIRECTIVE REGISTER (COMMA STRING_LITERAL)?
763 …: LOCAL_DIRECTIVE REGISTER (COMMA (NULL_LITERAL | name=STRING_LITERAL) COLON (VOID_TYPE | nonvoid_…
764 (COMMA signature=STRING_LITERAL)? )?
869 INSTRUCTION_FORMAT11n REGISTER COMMA integral_literal
879 instruction_format12x REGISTER COMMA REGISTER
884 INSTRUCTION_FORMAT20bc VERIFICATION_ERROR_TYPE COMMA verification_error_reference
899 INSTRUCTION_FORMAT21c_FIELD REGISTER COMMA field_reference
[all …]
/external/smali/smalidea/src/main/antlr/
DsmalideaParser.g463 comma
464 : COMMA;
687 : open_brace (literal (comma literal)* | ) close_brace
903 : open_brace (register (comma register)*)? close_brace;
940 (comma local_name)?
1016 : LOCAL_DIRECTIVE register (comma string_or_null_literal colon type_descriptor
1017 (comma string_literal)? )?
1148 INSTRUCTION_FORMAT11n register comma integral_literal;
1156 instruction_format12x register comma register;
1160 INSTRUCTION_FORMAT20bc VERIFICATION_ERROR_TYPE comma verification_error_reference;
[all …]
/external/icu/icu4c/source/test/testdata/
DWordBreakTest.txt39 ÷ 0001 ÷ 002C ÷ # ÷ [0.2] <START OF HEADING> (Other) ÷ [999.0] COMMA (MidNum) ÷ [0.3]
40 …<START OF HEADING> (Other) × [4.0] COMBINING DIAERESIS (Extend_FE) ÷ [999.0] COMMA (MidNum) ÷ [0.3]
73 …START OF HEADING> (Other) ÷ [999.0] LATIN SMALL LETTER A (ALetter) ÷ [999.0] COMMA (MidNum) ÷ [0.3]
74 …ING DIAERESIS (Extend_FE) ÷ [999.0] LATIN SMALL LETTER A (ALetter) ÷ [999.0] COMMA (MidNum) ÷ [0.3]
79 … ÷ [0.2] <START OF HEADING> (Other) ÷ [999.0] DIGIT ONE (Numeric) ÷ [999.0] COMMA (MidNum) ÷ [0.3]
80 …4.0] COMBINING DIAERESIS (Extend_FE) ÷ [999.0] DIGIT ONE (Numeric) ÷ [999.0] COMMA (MidNum) ÷ [0.3]
97 ÷ 000D ÷ 002C ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [3.1] COMMA (MidNum) ÷ [0.3]
98 …CARRIAGE RETURN (CR)> (CR) ÷ [3.1] COMBINING DIAERESIS (Extend_FE) ÷ [999.0] COMMA (MidNum) ÷ [0.3]
131 …<CARRIAGE RETURN (CR)> (CR) ÷ [3.1] LATIN SMALL LETTER A (ALetter) ÷ [999.0] COMMA (MidNum) ÷ [0.3]
132 …ING DIAERESIS (Extend_FE) ÷ [999.0] LATIN SMALL LETTER A (ALetter) ÷ [999.0] COMMA (MidNum) ÷ [0.3]
[all …]
/external/python/cpython3/Lib/test/test_json/
Dtest_scanstring.py25 scanstring('["extra comma",]', 2, True),
26 ('extra comma', 14))
29 scanstring('["double extra comma",,]', 2, True),
30 ('double extra comma', 21))
33 scanstring('["Comma after the close"],', 2, True),
34 ('Comma after the close', 24))
41 scanstring('{"Extra comma": true,}', 2, True),
42 ('Extra comma', 14))
77 scanstring('{"Comma instead of colon", null}', 2, True),
78 ('Comma instead of colon', 25))
[all …]
/external/swiftshader/third_party/LLVM/lib/MC/
DMCSectionMachO.cpp186 // Find the first comma. in ParseSectionSpecifier()
187 std::pair<StringRef, StringRef> Comma = Spec.split(','); in ParseSectionSpecifier() local
189 // If there is no comma, we fail. in ParseSectionSpecifier()
190 if (Comma.second.empty()) in ParseSectionSpecifier()
192 "separated by a comma"; in ParseSectionSpecifier()
195 Segment = Comma.first; in ParseSectionSpecifier()
204 Comma = Comma.second.split(','); in ParseSectionSpecifier()
207 Section = Comma.first; in ParseSectionSpecifier()
215 // If there is no comma after the section, we're done. in ParseSectionSpecifier()
218 if (Comma.second.empty()) in ParseSectionSpecifier()
[all …]
/external/google-fruit/extras/scripts/
Dparser.out7 Rule 2 comma_separated_balanced_string -> COMMA balanced_string comma_separated_balanced_string
27 COMMA : 2
129 COMMA reduce using rule 3 (optional_balanced_string -> .)
165 COMMA reduce using rule 3 (optional_balanced_string -> .)
230 COMMA reduce using rule 3 (optional_balanced_string -> .)
336 (2) comma_separated_balanced_string -> . COMMA balanced_string comma_separated_balanced_string
339 COMMA shift and go to state 23
362 COMMA reduce using rule 3 (optional_balanced_string -> .)
384 COMMA reduce using rule 4 (optional_balanced_string -> balanced_string .)
396 COMMA reduce using rule 6 (balanced_string -> AMPERSAND optional_balanced_string .)
[all …]
/external/dnsmasq/src/
Doption.c526 /* find next comma, split string with zero and eliminate spaces.
527 return start of string following comma */
530 char *comma, *p; in split_chr() local
532 if (!s || !(comma = strchr(s, c))) return NULL; in split_chr()
534 p = comma; in split_chr()
535 *comma = ' '; in split_chr()
537 for (; isspace((int) *comma); comma++) in split_chr()
542 return comma; in split_chr()
658 char *comma = NULL, *problem = NULL; in parse_dhcp_opt() local
669 comma = split(arg); in parse_dhcp_opt()
[all …]
/external/python/cpython2/Lib/json/tests/
Dtest_scanstring.py30 scanstring('["extra comma",]', 2, None, True),
31 (u'extra comma', 14))
34 scanstring('["double extra comma",,]', 2, None, True),
35 (u'double extra comma', 21))
38 scanstring('["Comma after the close"],', 2, None, True),
39 (u'Comma after the close', 24))
46 scanstring('{"Extra comma": true,}', 2, None, True),
47 (u'Extra comma', 14))
82 scanstring('{"Comma instead of colon", null}', 2, None, True),
83 (u'Comma instead of colon', 25))
[all …]
/external/clang/test/Index/
Dcomplete-call.cpp123 …idate:{ResultType void}{Text foo_3}{LeftParen (}{CurrentParameter void *}{Comma , }{Placeholder vo…
124 …andidate:{ResultType void}{Text foo_3}{LeftParen (}{CurrentParameter int}{Comma , }{Placeholder in…
136 // CHECK-CC4: OverloadCandidate:{ResultType void}{Text foo_3}{LeftParen (}{Placeholder int}{Comma ,…
148 …dCandidate:{ResultType void}{Text foo_3}{LeftParen (}{Placeholder void *}{Comma , }{CurrentParamet…
160 // CHECK-CC6: OverloadCandidate:{ResultType void}{Text foo_4}{LeftParen (}{Placeholder int}{Comma ,…
172 …dCandidate:{ResultType void}{Text foo_4}{LeftParen (}{Placeholder void *}{Comma , }{CurrentParamet…
184 // CHECK-CC8: OverloadCandidate:{ResultType void}{Text foo_5}{LeftParen (}{Placeholder int}{Comma ,…
185 // CHECK-CC8: OverloadCandidate:{ResultType void}{Text foo_5}{LeftParen (}{Placeholder int}{Comma ,…
233 // CHECK-CC12: OverloadCandidate:{ResultType void}{Text foo_8}{LeftParen (}{Placeholder int}{Comma
245 // CHECK-CC13: OverloadCandidate:{ResultType void}{Text foo_9}{LeftParen (}{Placeholder int}{Comma
[all …]
Dcomplete-functor-call.cpp29 …void}{Text operator()}{LeftParen (}{CurrentParameter void *}{Comma , }{Placeholder T}{Comma , }{Pl…
43 …void}{Text operator()}{LeftParen (}{CurrentParameter void *}{Comma , }{Placeholder T}{Comma , }{Pl…
57 …void}{Text operator()}{LeftParen (}{CurrentParameter void *}{Comma , }{Placeholder T}{Comma , }{Pl…
69 …pe void}{Text operator()}{LeftParen (}{Placeholder void *}{Comma , }{CurrentParameter T}{Comma , }…
81 … void}{Text operator()}{LeftParen (}{Placeholder void *}{Comma , }{Placeholder S<void *>}{Comma , …
95 …void}{Text operator()}{LeftParen (}{CurrentParameter void *}{Comma , }{Placeholder T}{Comma , }{Pl…
110 …pe void}{Text operator()}{LeftParen (}{CurrentParameter int}{Comma , }{Placeholder T}{Comma , }{Pl…
123 …tType void}{Text operator()}{LeftParen (}{Placeholder int}{Comma , }{CurrentParameter T}{Comma , }…
135 …ltType void}{Text operator()}{LeftParen (}{Placeholder int}{Comma , }{Placeholder int}{Comma , }{C…
182 …void}{Text operator()}{LeftParen (}{CurrentParameter void *}{Comma , }{Placeholder T}{Comma , }{Pl…
Dcomplete-constructor-params.cpp23 …verloadCandidate:{Text S}{LeftParen (}{CurrentParameter int}{Comma , }{Placeholder U}{Comma , }{Pl…
36 …verloadCandidate:{Text S}{LeftParen (}{CurrentParameter int}{Comma , }{Placeholder U}{Comma , }{Pl…
48 …: OverloadCandidate:{Text S}{LeftParen (}{Placeholder int}{Comma , }{CurrentParameter U}{Comma , }…
60 …4: OverloadCandidate:{Text S}{LeftParen (}{Placeholder int}{Comma , }{Placeholder int}{Comma , }{C…
73 …verloadCandidate:{Text S}{LeftParen (}{CurrentParameter int}{Comma , }{Placeholder U}{Comma , }{Pl…
85 …: OverloadCandidate:{Text S}{LeftParen (}{Placeholder int}{Comma , }{CurrentParameter U}{Comma , }…
97 …7: OverloadCandidate:{Text S}{LeftParen (}{Placeholder int}{Comma , }{Placeholder int}{Comma , }{C…
/external/emma/ant/ant14/com/vladium/emma/instr/
DFilterCfg.java54 appendValue (spec, COMMA); in setValue()
58 … appendValue (IInclExclFilter.INCLUSION_PREFIX + spec, COMMA); // default to inclusion in setValue()
68 …appendValue ("@".concat (file.getAbsolutePath ()), COMMA); // actual file I/O delayed until getFil… in setFile()
81 appendValue (spec, COMMA); in setIncludes()
86 … appendValue (IInclExclFilter.INCLUSION_PREFIX + spec.substring (1), COMMA); // override in setIncludes()
88 appendValue (IInclExclFilter.INCLUSION_PREFIX + spec, COMMA); in setIncludes()
103 appendValue (spec, COMMA); in setExcludes()
108 … appendValue (IInclExclFilter.EXCLUSION_PREFIX + spec.substring (1), COMMA); // override in setExcludes()
110 appendValue (IInclExclFilter.EXCLUSION_PREFIX + spec, COMMA); in setExcludes()
131 createFilter ().appendValue (filter, COMMA); in setFilter()
[all …]
/external/python/cpython3/Lib/lib2to3/fixes/
Dfix_ws_comma.py20 COMMA = pytree.Leaf(token.COMMA, ",") variable in FixWsComma
22 SEPS = (COMMA, COLON)
26 comma = False
32 comma = True
34 if comma:
38 comma = False
/external/python/cpython2/Lib/lib2to3/fixes/
Dfix_ws_comma.py20 COMMA = pytree.Leaf(token.COMMA, u",") variable in FixWsComma
22 SEPS = (COMMA, COLON)
26 comma = False
32 comma = True
34 if comma:
38 comma = False
/external/one-true-awk/
Dawkgram.y72 %type <i> pst opt_pst lbrace rbrace rparen comma nl opt_nl and bor
111 comma:
112 ',' | comma NL
195 | patlist comma pattern { $$ = linkum($1, $3); }
253 pattern comma pattern { $$ = linkum($1, $3); }
254 | plist comma pattern { $$ = linkum($1, $3); }
259 | pplist comma ppattern { $$ = linkum($1, $3); }
376 | INDEX '(' pattern comma pattern ')'
378 | INDEX '(' pattern comma reg_expr ')'
382 | MATCHFCN '(' pattern comma reg_expr ')'
[all …]
/external/libxkbcommon/xkbcommon/test/data/symbols/
Dkpdl28 // This assumes KP_Separator will be translated in a comma
30 xkb_symbols "comma" {
44 … key <KPDL> { [ KP_Delete, period, comma, 0x100202F ] }; // <delete> . , ⍽ (narrow no-break space)
54 key <KPDL> { [ KP_Delete, period, comma, nobreakspace ] }; // <delete> . , ⍽ (no-break space)
58 // Comma <KPDL>, what most non anglo-saxon people consider the real separator
64 … key <KPDL> { [ KP_Delete, comma, period, 0x100202F ] }; // <delete> , . ⍽ (narrow no-break space)
74 …key <KPDL> { [ KP_Delete, 0x100066B, comma, 0x100202F ] }; // <delete> ? , ⍽ (narrow no-break spac…
88 // punctuation, comma as a thousands separator and then semi-colon as
90 // when entering data by the keyboard; the comma can then be inferred
/external/clang/test/SemaCXX/
Dwarn-comma-operator.cpp70 // Test nested comma operators
88 // expected-warning@-1{{comma operator}} in test4()
97 // expected-warning@-1{{comma operator}} in test5()
108 // expected-warning@-1{{comma operator}} in test6()
122 // expected-warning@-1{{comma operator}} in test7()
134 // expected-warning@-1{{comma operator}} in test8()
140 // expected-warning@-1{{comma operator}} in test8()
153 // Ignore comma operator in for-loop initializations and increments.
164 // expected-warning@-1{{comma operator}} in test10()
170 // Ignore comma operator in templates.
[all …]
/external/v8/src/wasm/
Dwasm-features.h20 #define COMMA , macro
34 explicit constexpr WasmFeatures(FOREACH_WASM_FEATURE(DECL_PARAM, COMMA)) in WasmFeatures()
35 : FOREACH_WASM_FEATURE(DO_INIT, COMMA) {} in WasmFeatures()
39 FOREACH_WASM_FEATURE(JUST_TRUE, COMMA)};
42 FOREACH_WASM_FEATURE(JUST_FALSE, COMMA)};
49 #undef COMMA
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/LoopUnroll/
Dpeel-loop2.ll6 @Comma = external global i8
17 %0 = load i8, i8* @Comma
23 store i8 1, i8* @Comma
38 ; CHECK: %[[REG1:[0-9]+]] = load i8, i8* @Comma
43 ; CHECK: store i8 1, i8* @Comma
51 ; CHECK: %[[REG1b:.*]] = load i8, i8* @Comma
56 ; CHECK: store i8 1, i8* @Comma
/external/strace/tests/
Dnlattr_ifla_linkinfo.c54 #define COMMA , macro
332 {unsupported_tunnel_types COMMA in main()
333 unsupported_xstats_types COMMA in main()
334 unsupported_data_types COMMA in main()
342 {unsupported_tunnel_types COMMA in main()
343 unsupported_xstats_types COMMA in main()
344 unsupported_data_types COMMA in main()
352 {unsupported_tunnel_types COMMA in main()
353 unsupported_data_types COMMA in main()
652 {unsupported_tunnel_types COMMA in main()
[all …]
/external/strace/tests-m32/
Dnlattr_ifla_linkinfo.c54 #define COMMA , macro
332 {unsupported_tunnel_types COMMA in main()
333 unsupported_xstats_types COMMA in main()
334 unsupported_data_types COMMA in main()
342 {unsupported_tunnel_types COMMA in main()
343 unsupported_xstats_types COMMA in main()
344 unsupported_data_types COMMA in main()
352 {unsupported_tunnel_types COMMA in main()
353 unsupported_data_types COMMA in main()
652 {unsupported_tunnel_types COMMA in main()
[all …]

12345678910>>...82