HomeSort by relevance Sort by last modified time
    Searched refs:comma (Results 76 - 100 of 199) sorted by null

1 2 34 5 6 7 8

  /external/clang/lib/Parse/
ParseDeclCXX.cpp 652 if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "", tok::semi))
    [all...]
ParseExpr.cpp 121 return ParseRHSOfBinaryExpression(LHS, prec::Comma);
132 return ParseRHSOfBinaryExpression(LHS, prec::Comma);
152 return ParseRHSOfBinaryExpression(LHS, prec::Comma);
238 // Bail out when encountering a comma followed by a token which can't
241 // We can't do this before consuming the comma, because
243 if (OpToken.is(tok::comma) && isNotExpressionStart()) {
    [all...]
ParsePragma.cpp 291 if (Tok.is(tok::comma)) {
302 if (Tok.is(tok::comma)) {
522 if (Tok.is(tok::comma)) {
824 // Read the comma followed by a second string literal.
826 if (Tok.isNot(tok::comma)) {
898 if (Tok.is(tok::comma) && !PP.LexStringLiteral(Tok, ArgumentString,
ParseCXXInlineMethods.cpp 102 if (Tok.is(tok::comma)) {
223 // Consume everything up to (but excluding) the comma or semicolon.
224 ConsumeAndStoreUntil(tok::comma, Toks, /*StopAtSemi=*/true,
797 if (Tok.is(tok::comma)) {
ParseObjc.cpp 118 if (Tok.isNot(tok::comma))
513 // Parse all the comma separated declarators.
650 if (Tok.isNot(tok::comma))
    [all...]
  /build/core/tasks/
vendor_module_check.mk 48 $(eval _ersl_new_modules := $(sort $(subst $(comma),$(space),$(_ersl_new_modules))))\
  /external/bison/data/
glr.c 50 # The possible parse-params formal arguments preceded by a comma.
71 # a trailing comma.
87 # Same as b4_yyerror_args, but with a leading comma.
102 # Arguments passed to yyerror: user formals plus yylocp with leading comma.
615 contains an apostrophe, a comma, or backslash (other than
    [all...]
  /external/llvm/lib/AsmParser/
LLToken.h 25 equal, comma, // = , enumerator in enum:llvm::lltok::Kind
  /external/llvm/lib/TableGen/
TGLexer.cpp 105 case ',': return tgtok::comma;
TGParser.cpp 611 while (Lex.getCode() == tgtok::comma) {
612 Lex.Lex(); // Eat the comma.
954 while (Lex.getCode() == tgtok::comma) {
1015 if (Lex.getCode() != tgtok::comma) {
1024 if (Lex.getCode() != tgtok::comma) {
    [all...]
  /external/qemu/
curses_keys.h 260 { "comma", 0x02c },
  /external/chromium_org/ui/keyboard/resources/webui/
main.css 112 .comma,
  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-40931.js 30 // To reproduce this we need to split a comma separated string and check the
  /external/chromium_org/v8/test/mozilla/
mozilla-shell-emulation.js 34 // Returns comma-separated list of options set.
  /external/v8/test/mjsunit/regress/
regress-crbug-40931.js 30 // To reproduce this we need to split a comma separated string and check the
  /external/v8/test/mozilla/
mozilla-shell-emulation.js 34 // Returns comma-separated list of options set.
  /external/doclava/src/com/google/doclava/
Stubs.java 392 String comma = ""; local
394 stream.print(comma + iface.fullName(classDeclTypeVars));
395 comma = ", ";
516 String comma; local
551 comma = "";
555 stream.print(comma + fullParameterTypeName(method, param.type(), count == size) + " "
557 comma = ", ";
562 comma = "";
566 stream.print(comma + thrown.qualifiedName());
567 comma = ", "
    [all...]
  /dalvik/vm/
Init.cpp 412 char* comma; local
420 comma = strchr(name, ','); // use name, not value, for safety
421 if (comma != NULL) {
422 if (comma < value) {
423 ALOGE("JDWP opts: found comma before '=' in '%s'", mangle);
426 *comma = '\0';
434 if (comma == NULL) {
438 name = comma+1;
663 * Break comma-separated method signatures and enter them into the hash
    [all...]
  /external/iputils/
ping_common.c 1008 char *comma = ""; local
1044 comma = ", ";
1047 printf("%spipe %d", comma, pipesize);
1048 comma = ", ";
1053 comma, ipg/1000, ipg%1000, rtt/8000, (rtt/8)%1000);
  /external/clang/lib/Lex/
TokenLexer.cpp 122 /// Remove comma ahead of __VA_ARGS__, if present, according to compiler dialect
123 /// settings. Returns true if the comma is removed.
133 // In Microsoft-compatibility mode, a comma is removed in the expansion
139 // GCC removes the comma in the expansion of " ... , ## __VA_ARGS__ " if
148 // Is a comma available to be removed?
149 if (ResultToks.empty() || !ResultToks.back().is(tok::comma))
156 // Remove the comma.
159 // If the comma was right after another paste (e.g. "X##,##__VA_ARGS__"),
160 // then removal of the comma should produce a placemarker token (in C99
166 // Never add a space, even if the comma, ##, or arg had a space
    [all...]
  /external/iproute2/tc/
q_cbq.c 498 int comma=0; local
502 comma=1;
505 if (comma)
  /external/chromium_org/chrome/browser/translate/
translate_manager_browsertest.cc 278 const char* comma = ""; local
281 "%s\"%s\": \"UnusedFullName\"", comma, languages[i].c_str());
283 comma = ",";
289 comma = "";
291 data += base::StringPrintf("%s\"%s\": 1", comma,
294 comma = ",";
    [all...]
  /build/core/
definitions.mk     [all...]
prebuilt.mk 89 $(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES += $(LOCAL_MODULE):$(LOCAL_INSTALLED_MODULE):$(subst $(space),$(comma),$(LOCAL_SHARED_LIBRARIES))
  /external/chromium_org/chrome/third_party/mozilla_security_manager/
nsNSSCertHelper.cpp 758 bool comma; local
797 comma = false;
800 if (comma)
803 comma = true;
    [all...]

Completed in 1500 milliseconds

1 2 34 5 6 7 8