HomeSort by relevance Sort by last modified time
    Searched refs:comma (Results 126 - 150 of 344) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/clang/lib/Parse/
ParseDeclCXX.cpp 728 if (ExpectAndConsume(tok::comma)) {
3213 << tok::comma; member in class:tok
    [all...]
ParseObjc.cpp 149 if (!TryConsumeToken(tok::comma))
558 } while (TryConsumeToken(tok::comma));
571 tok::comma, tok::semi },
798 // Parse all the comma separated declarators.
    [all...]
ParsePragma.cpp 553 while (Tok.is(tok::comma)) {
633 if (Tok.is(tok::comma)) {
635 // If we've got a comma, we either need a label or a string.
639 if (Tok.is(tok::comma))
    [all...]
  /external/fio/tools/
genfio 56 Separated each disk with a comma
61 Separated each blocksize with a comma
  /toolchain/binutils/binutils-2.25/cpu/
m32c.opc 1123 char* comma = "";
1133 comma = ",";
1145 (*info->fprintf_func) (info->stream, "%s%s", comma,
1147 comma = ",";
  /external/clang/lib/Lex/
PPExpressions.cpp 442 case tok::comma: return 3;
520 // where 'expression' is actually comma-expression.
524 RHSPrec = getPrecedence(tok::comma);
542 case tok::comma: // Comma operands are not subject to UACs.
666 case tok::comma:
667 // Comma is invalid in pp expressions in c89/c++ mode, but is valid in C99
  /external/curl/lib/
checksrc.pl 45 'SPACEBEFORECOMMA' => 'space before a comma',
47 'COMMANOSPACE' => 'comma without following space',
356 # check spaces before comma!
360 "space before comma");
374 # check for comma without space
388 # There is a quote here, figure out whether the comma is
402 "comma without following space");
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
TextureAtlas.java 446 int comma = line.indexOf(',', lastMatch); local
447 if (comma == -1) break;
448 tuple[i] = line.substring(lastMatch, comma).trim();
449 lastMatch = comma + 1;
  /external/llvm/lib/TableGen/
TGLexer.cpp 105 case ',': return tgtok::comma;
  /external/v8/tools/release/
releases.py 88 The ranges are comma-separated, each range has the form R1:R2. The newest
114 # Stringify and comma-separate the range lists.
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
mock_object.hpp 23 #include <boost/preprocessor/punctuation/comma.hpp>
289 // !! MO_BINARY_OP( BOOST_PP_COMMA(), "Comma operator" )
  /toolchain/binutils/binutils-2.25/opcodes/
i386-gen.c 733 int macro, const char *comma, const char *indent)
755 fprintf (table, "%d } }%s\n", flags[i].value, comma);
760 const char *comma, const char *indent,
820 comma, indent);
    [all...]
  /external/ImageMagick/www/api/
composite.php 102 <dd> o "compose:args" A string containing extra numerical arguments for specific compose methods, generally expressed as a 'geometry' or a comma separated list of numbers. </dd>
  /external/clang/lib/ARCMigrate/
Transforms.cpp 441 } while (tok.isNot(tok::comma) && tok.isNot(tok::r_paren));
454 } else if (BeforeTok.is(tok::l_paren) && AfterTok.is(tok::comma)) {
  /external/ipsec-tools/src/racoon/
cftoken.l 117 comma \,
263 <S_CFG>{comma} { YYD; return(COMMA); }
298 <S_SAINFS>{comma} { YYD; return(COMMA); }
308 <S_RMTS>{comma} { YYD; /* XXX ignored, but to be handled. */ ; }
  /external/v8/test/mjsunit/regress/
regress-969.js 36 // This test uses comma expressions to put assignments in effect contexts,
  /ndk/build/core/
setup-app.mk 51 NDK_APP_ABI := $(subst $(comma),$(space),$(strip $(NDK_APP_ABI)))
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.osgi.services_3.3.100.v20130513-1956.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.osgi.services_3.3.100.v20130513-1956.jar 
  /toolchain/binutils/binutils-2.25/binutils/
objdump.c 447 char *comma = "";
472 if (section->flags & x) { printf ("%s%s", comma, y); comma = ", "; }
520 printf ("%s%s", comma, ls);
526 comma = ", ";
443 char *comma = ""; local
2629 char *comma = ""; local
    [all...]
  /external/mksh/src/
eval.c 1747 char *brace_start, *brace_end, *comma = NULL; local
    [all...]
  /external/v8/src/ast/
scopes.cc 889 bool comma = !var->IsUnallocated(); local
891 if (comma) PrintF(", ");
893 comma = true;
896 if (comma) PrintF(", ");
    [all...]
  /external/v8/test/webkit/fast/js/
parser-syntax-check.js 76 // some comma expressions: see reparsing-semicolon-insertion.js
175 debug ("Array and object literal, comma operator");
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pdb.py 353 # parse arguments; comma has lowest precedence
358 comma = arg.find(',')
359 if comma > 0:
360 # parse stuff after comma: "condition"
361 cond = arg[comma+1:].lstrip()
362 arg = arg[:comma].rstrip()
363 # parse stuff before comma: [filename:]lineno | function
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
pdb.py 353 # parse arguments; comma has lowest precedence
358 comma = arg.find(',')
359 if comma > 0:
360 # parse stuff after comma: "condition"
361 cond = arg[comma+1:].lstrip()
362 arg = arg[:comma].rstrip()
363 # parse stuff before comma: [filename:]lineno | function
    [all...]

Completed in 2314 milliseconds

1 2 3 4 56 7 8 91011>>