HomeSort by relevance Sort by last modified time
    Searched defs:COMMA (Results 1 - 25 of 187) sorted by null

1 2 3 4 5 6 7 8

  /external/clang/test/Preprocessor/
stringize_misc.c 9 M( {a=1 , b=2;} ) /* A semicolon is not a comma */
24 * To pass a comma token as an argument it is
27 #define COMMA ,
29 M(a COMMA b, (a, b))
30 // CHECK: "a COMMA b" "(a, b)"
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
fix_ws_comma.py 20 COMMA = pytree.Leaf(token.COMMA, u",")
22 SEPS = (COMMA, COLON)
26 comma = False
32 comma = True
34 if comma:
38 comma = False
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_ws_comma.py 20 COMMA = pytree.Leaf(token.COMMA, u",")
22 SEPS = (COMMA, COLON)
26 comma = False
32 comma = True
34 if comma:
38 comma = False
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_ws_comma.py 20 COMMA = pytree.Leaf(token.COMMA, u",")
22 SEPS = (COMMA, COLON)
26 comma = False
32 comma = True
34 if comma:
38 comma = False
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_ws_comma.py 20 COMMA = pytree.Leaf(token.COMMA, u",")
22 SEPS = (COMMA, COLON)
26 comma = False
32 comma = True
34 if comma:
38 comma = False
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_ws_comma.py 20 COMMA = pytree.Leaf(token.COMMA, u",")
22 SEPS = (COMMA, COLON)
26 comma = False
32 comma = True
34 if comma:
38 comma = False
  /external/emma/ant/ant14/com/vladium/emma/ant/
FilterTask.java 64 protected static final String COMMA = ",";
65 protected static final String COMMA_DELIMITERS = COMMA + Strings.WHITE_SPACE;
66 protected static final String PATH_DELIMITERS = COMMA.concat (File.pathSeparator);
  /external/skia/bench/
ColorPrivBench.cpp 82 #define COMMA ,
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
  /external/deqp/framework/randomshaders/
rsgShader.cpp 140 str << Token::COMMA;
  /cts/tools/dasm/src/java_cup/
sym.java 25 static final int COMMA = 14;
  /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...]
  /external/nist-sip/java/gov/nist/core/
Separators.java 40 public static final String COMMA = ",";
  /external/smali/smalidea/src/main/java/org/jf/smalidea/
SmaliHighlightingColors.java 52 public static final TextAttributesKey COMMA = createTextAttributesKey(
53 "COMMA", DefaultLanguageHighlighterColors.COMMA);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
CodesArrayParser.java 28 * A key label may consist of multiple code points separated by comma.
30 * marker. An output text may consist of multiple code points separated by comma.
39 private static final char COMMA = Constants.CODE_COMMA;
40 private static final String COMMA_REGEX = StringUtils.newSingleCodePointString(COMMA);
89 if (codeSpec.indexOf(COMMA) < 0) {
97 if (codeSpec.indexOf(COMMA) < 0) {
  /packages/services/NetworkRecommendation/src/com/android/networkrecommendation/config/
Csv.java 24 * Utilities for parsing and serializing Comma-Separated Value data.
25 * See http://en.wikipedia.org/wiki/Comma-separated_values and
30 public static final String COMMA = ",";
40 * write field delimiters -- append {@link COMMA} yourself between values.
64 * Parse a record of comma separated values from an input file.
79 int comma; local
81 comma = text.indexOf(',', pos);
83 if (quote == -1 || (comma != -1 && comma < quote)) break;
101 buf.append(text, pos, comma == -1 ? text.length() : comma)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/
astgen.py 16 COMMA = ", "
133 clist = COMMA.join(["self.%s" % c
167 print >> buf, " return %s" % COMMA.join(clist)
186 fmt = COMMA.join(["%s"] * self.nargs)
190 vals = COMMA.join(vals)
  /external/icu/icu4c/source/tools/genrb/
read.c 28 #define COMMA 0x002C
94 case COMMA:
276 || c == COMMA
312 if (c == OPENBRACE || c == CLOSEBRACE || c == COMMA || c == COLON) {
  /external/v8/
Makefile 386 COMMA = ,
389 quickcheck: $(subst $(COMMA),$(SPACE),$(FASTCOMPILEMODES))
397 turbocheck: $(subst $(COMMA),$(SPACE),$(FASTCOMPILEMODES))
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PostalSplitter.java 77 private static final String COMMA = ",";
206 if (hasCity) builder.append(COMMA + SPACE);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
token.h 24 #define COMMA 12
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
token.py 23 COMMA = 12
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
token.h 24 #define COMMA 12
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
token.py 21 COMMA = 12
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
token.py 25 COMMA = 12
  /external/icu/icu4c/source/common/
ucnv_u7.c 862 #define COMMA 0x2c
871 #define TO_BASE64_IMAP(n) ((n)<63 ? toBase64[n] : COMMA
    [all...]

Completed in 497 milliseconds

1 2 3 4 5 6 7 8