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

1 2 3 4

  /external/clang/test/Preprocessor/
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)"
  /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/chromium_org/third_party/skia/bench/
ColorPrivBench.cpp 76 #define COMMA ,
77 DEF_BENCH( return SkNEW(FourByteInterpBench<true COMMA true>); )
78 DEF_BENCH( return SkNEW(FourByteInterpBench<true COMMA false>); )
79 DEF_BENCH( return SkNEW(FourByteInterpBench<false COMMA true>); )
80 DEF_BENCH( return SkNEW(FourByteInterpBench<false COMMA false>); )
81 #undef COMMA
  /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 76 #define COMMA ,
77 DEF_BENCH( return SkNEW(FourByteInterpBench<true COMMA true>); )
78 DEF_BENCH( return SkNEW(FourByteInterpBench<true COMMA false>); )
79 DEF_BENCH( return SkNEW(FourByteInterpBench<false COMMA true>); )
80 DEF_BENCH( return SkNEW(FourByteInterpBench<false COMMA false>); )
81 #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 = ",";
  /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) {
MoreKeySpec.java 34 * The more keys specification is comma separated "key specification" each of which represents one
37 * expanded before parsing comma.
38 * Special character, comma ',' backslash '\' can be escaped by '\' character.
115 private static final char COMMA = Constants.CODE_COMMA;
124 * comma character.
138 return text.charAt(0) == COMMA ? null : new String[] { text };
143 // The characters in question in this loop are COMMA and BACKSLASH. These characters never
148 if (c == COMMA) {
156 // Skip comma
  /external/chromium_org/third_party/icu/source/tools/genrb/
read.c 25 #define COMMA 0x002C
90 case COMMA:
272 || c == COMMA
308 if (c == OPENBRACE || c == CLOSEBRACE || c == COMMA || c == COLON) {
  /external/chromium_org/v8/
Makefile 369 COMMA = ,
372 quickcheck: $(subst $(COMMA),$(SPACE),$(FASTCOMPILEMODES))
  /external/chromium_org/v8/src/
flag-definitions.h 77 #define COMMA ,
131 { false COMMA false }, cmt)
136 { 0 COMMA NULL }, cmt)
    [all...]
  /external/icu/icu4c/source/tools/genrb/
read.c 26 #define COMMA 0x002C
92 case COMMA:
274 || c == COMMA
310 if (c == OPENBRACE || c == CLOSEBRACE || c == COMMA || c == COLON) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PostalSplitter.java 77 private static final String COMMA = ",";
206 if (hasCity) builder.append(COMMA + SPACE);
  /external/chromium_org/third_party/icu/source/common/
ucnv_u7.c 833 #define COMMA 0x2c
842 #define TO_BASE64_IMAP(n) ((n)<63 ? toBase64[n] : COMMA)
843 #define FROM_BASE64_IMAP(c) ((c)==COMMA ? 63 : (c)==SLASH ? -1 : fromBase64[c])
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
selfmtimpl.h 41 #define COMMA ((UChar)0x002C)
  /external/chromium_org/tools/gn/
token.h 47 COMMA, // ,
  /external/icu/icu4c/source/common/
ucnv_u7.c 859 #define COMMA 0x2c
868 #define TO_BASE64_IMAP(n) ((n)<63 ? toBase64[n] : COMMA)
869 #define FROM_BASE64_IMAP(c) ((c)==COMMA ? 63 : (c)==SLASH ? -1 : fromBase64[c])
    [all...]
  /external/icu/icu4c/source/i18n/
selfmtimpl.h 36 #define COMMA ((UChar)0x002C)
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
token.h 24 #define COMMA 12
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
token.py 21 COMMA = 12
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
token.py 25 COMMA = 12

Completed in 704 milliseconds

1 2 3 4