HomeSort by relevance Sort by last modified time
    Searched full:comma (Results 1 - 25 of 1418) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Preprocessor/
expr_comma.c 0 // Comma is not allowed in C89
4 // Comma is allowed if unevaluated in C99
stringize_misc.c 8 M( {a=1 , b=2;} ) /* A semicolon is not a comma */
23 * To pass a comma token as an argument it is
26 #define COMMA ,
28 M(a COMMA b, (a, b))
29 // CHECK: "a COMMA b" "(a, b)"
macro_fn_comma_swallow.c 1 // Test the GNU comma swallowing extension.
13 // should eat the comma.
expr_invalid_tok.c 13 // PR2284 - The constant-expr production does not including comma.
  /external/smali/smali/src/test/resources/LexerTest/
RealSmaliFileTest.tokens 110 COMMA(",")
121 COMMA(",")
123 COMMA(",")
125 COMMA(",")
127 COMMA(",")
143 COMMA(",")
145 COMMA(",")
147 COMMA(",")
166 COMMA(",")
170 COMMA(",")
    [all...]
SymbolTest.tokens 5 COMMA(",") WHITE_SPACE("\n")
  /frameworks/opt/vcard/tests/res/raw/
v30_comma_separated.vcf 4 TEL;TYPE="COMMA,SEPARATED:INSIDE.DQUOTE",PREF:1
  /external/chromium/net/base/
data_url.cc 30 std::string::const_iterator comma = std::find(after_colon, end, ','); local
31 if (comma == end)
36 std::search(after_colon, comma, kBase64Tag,
39 bool base64_encoded = (it != comma);
41 if (comma != after_colon) {
43 std::string::const_iterator semi_colon = std::find(after_colon, comma, ';');
48 if (semi_colon != comma) {
50 it = std::search(semi_colon + 1, comma, kCharsetTag,
52 if (it != comma)
53 charset->assign(it + sizeof(kCharsetTag)-1, comma);
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Python.g 100 : 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)*
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/
VecMath_Lexer.g3 17 COMMA : ','
VecMath_Parser.g3 32 | OPEN_SQUARE expr ( COMMA expr )* CLOSE_SQUARE -> ^( VEC expr+ )
  /external/chromium/net/tools/spdyshark/
moduleinfo.nmake 15 # The RC_VERSION should be comma-separated, not dot-separated,
20 # "The RC_VERSION variable in config.nmake should be comma separated.
  /external/eigen/doc/examples/
Tutorial_ArrayClass_accessors.cpp 18 // using the comma-initializer is also allowed
  /external/llvm/lib/MC/
MCSectionMachO.cpp 186 // Find the first comma.
187 std::pair<StringRef, StringRef> Comma = Spec.split(',');
189 // If there is no comma, we fail.
190 if (Comma.second.empty())
192 "separated by a comma";
195 Segment = Comma.first;
204 Comma = Comma.second.split(',');
207 Section = Comma.first;
215 // If there is no comma after the section, we're done
    [all...]
  /external/oprofile/doc/
opannotate.1.in 37 Exclude all files in the given comma-separated list of glob patterns.
41 Exclude all the symbols in the given comma-separated list.
49 Comma-separated list of additional paths to search for binaries.
58 Only include files in the given comma-separated list of glob patterns.
62 Only include symbols in the given comma-separated list.
75 Comma-separated list of paths to search for source files. You may need to use
80 Comma-separated list of paths to strip from debug source files, prior to
  /external/oprofile/pp/
opannotate_options.cpp 62 "directories to look for source files", "comma-separated paths"),
64 "source file prefixes to strip", "comma-separated paths"),
66 "include these comma separated filename", "filenames"),
68 "exclude these comma separated filename", "filenames"),
70 "include these comma separated symbols", "symbols"),
72 "exclude these comma separated symbols", "symbols"),
78 "comma separated list", "cpu,tid,tgid,unitmask,all"),
  /external/emma/ant/ant14/com/vladium/emma/instr/
FilterCfg.java 54 appendValue (spec, COMMA);
58 appendValue (IInclExclFilter.INCLUSION_PREFIX + spec, COMMA); // default to inclusion
68 appendValue ("@".concat (file.getAbsolutePath ()), COMMA); // actual file I/O delayed until getFilterSpecs()
81 appendValue (spec, COMMA);
86 appendValue (IInclExclFilter.INCLUSION_PREFIX + spec.substring (1), COMMA); // override
88 appendValue (IInclExclFilter.INCLUSION_PREFIX + spec, COMMA);
103 appendValue (spec, COMMA);
108 appendValue (IInclExclFilter.EXCLUSION_PREFIX + spec.substring (1), COMMA); // override
110 appendValue (IInclExclFilter.EXCLUSION_PREFIX + spec, COMMA);
131 createFilter ().appendValue (filter, COMMA);
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
MultiAutoCompleteTextView_CommaTokenizerTest.java 53 // cursor point to the comma before "second"
105 String text = "end with comma,";
108 text = "end without comma";
109 // ends with both comma and space
112 text = "end without comma!";
113 // ends with both comma and space
  /external/smali/smali/src/main/antlr3/
smaliParser.g 65 COMMA;
695 : OPEN_BRACE (literal (COMMA literal)* | ) CLOSE_BRACE
743 : REGISTER (COMMA REGISTER)* -> ^(I_REGISTER_LIST[$start, "I_REGISTER_LIST"] REGISTER*)
790 : LOCAL_DIRECTIVE REGISTER COMMA simple_name COLON nonvoid_type_descriptor (COMMA STRING_LITERAL)?
901 INSTRUCTION_FORMAT11n REGISTER COMMA integral_literal {$size = Format.Format11n.size;}
911 instruction_format12x REGISTER COMMA REGISTER {$size = Format.Format12x.size;}
916 INSTRUCTION_FORMAT20bc VERIFICATION_ERROR_TYPE COMMA verification_error_reference {$size += Format.Format20bc.size;}
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
KeySpecParserCsvTests.java 145 assertTextArray("Escaped comma", "\\,", "\\,");
146 assertTextArray("Escaped comma escape", "a\\,\\", "a\\,\\");
154 assertTextArray("Escaped label with comma", "a\\,c", "a\\,c");
155 assertTextArray("Escaped surrogate with comma",
157 assertTextArray("Escaped label with comma at beginning", "\\,bc", "\\,bc");
158 assertTextArray("Escaped surrogate with comma at beginning",
160 assertTextArray("Escaped label with comma at end", "ab\\,", "ab\\,");
161 assertTextArray("Escaped surrogate with comma at end",
193 assertTextArray("Multiple chars with comma", "a,\\,,c", "a", "\\,", "c");
194 assertTextArray("Multiple chars with comma surrounded by spaces", " a , \\, , c "
    [all...]
  /cts/libs/json/src/com/android/json/stream/
JsonScope.java 31 * A array with at least one value requires a comma and newline before
49 * An object with at least one name/value pair requires a comma and
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
expression-001.js 13 case of a comma expression as the center expression.
41 "comma expression in a conditional statement "+
  /frameworks/base/core/java/android/util/
JsonScope.java 31 * A array with at least one value requires a comma and newline before
49 * An object with at least one name/value pair requires a comma and
  /external/dnsmasq/src/
option.c 508 /* find next comma, split string with zero and eliminate spaces.
509 return start of string following comma */
513 char *comma, *p; local
515 if (!s || !(comma = strchr(s, c)))
518 p = comma;
519 *comma = ' ';
521 for (; isspace((int)*comma); comma++);
526 return comma;
671 char *comma = NULL, *problem = NULL local
981 char *comma, *problem = NULL;; local
    [all...]
  /external/clang/test/Index/
complete-macros.c 31 // CHECK-CC1: macro definition:{TypedText FOO}{LeftParen (}{Placeholder Arg1}{Comma , }{Placeholder Arg2}{RightParen )}
43 // CHECK-VARIADIC: macro definition:{TypedText variadic4}{LeftParen (}{Placeholder first}{Comma , }{Placeholder second}{Comma , }{Placeholder args, ...}{RightParen )} (70)
44 // CHECK-VARIADIC: macro definition:{TypedText variadic5}{LeftParen (}{Placeholder first}{Comma , }{Placeholder second}{Comma , }{Placeholder args...}{RightParen )} (70)

Completed in 941 milliseconds

1 2 3 4 5 6 7 8 91011>>