HomeSort by relevance Sort by last modified time
    Searched refs:comma (Results 26 - 50 of 125) sorted by null

12 3 4 5

  /external/clang/lib/Parse/
ParseInit.cpp 83 case tok::comma:
84 // Since a comma cannot occur in a constant-expression, this must
426 if (Tok.isNot(tok::comma)) break;
453 // grammatically ok (i.e. we have a comma coming up) try to continue
455 // diagnostics for later elements that we find. If we don't see a comma,
460 if (Tok.isNot(tok::comma)) {
466 // If we don't have a comma continued list, we're done.
467 if (Tok.isNot(tok::comma)) break;
469 // TODO: save comma locations if some client cares.
472 // Handle trailing comma
    [all...]
ParseDecl.cpp 97 /// which is followed by a comma or close parenthesis, then the arguments
125 Tok.is(tok::comma)) {
126 if (Tok.is(tok::comma)) {
235 (ParmLoc.isValid() ? Tok.is(tok::comma) : Tok.isNot(tok::r_paren))) {
236 // Eat the comma.
240 // Parse the non-empty comma-separated list of expressions.
248 if (Tok.isNot(tok::comma))
250 ConsumeToken(); // Eat the comma, move to the next argument
260 if (Tok.is(tok::comma)) {
433 SkipUntil(tok::comma, tok::r_paren, true, true, true)
    [all...]
ParseTentative.cpp 220 if (Tok.isNot(tok::comma))
222 ConsumeToken(); // the comma.
362 (Tok.is(tok::greater) || Tok.is(tok::comma) ||
477 if (Tok.is(tok::comma)) {
513 if (Tok.isNot(tok::comma))
    [all...]
  /external/v8/test/mjsunit/compiler/
regress-3218915.js 31 // side effect occurred in a comma expression in an effect context.
40 // immediately before the deopt is in a comma expresion in an effect context
41 // (i.e., itself the left subexpression of a comma expression).
  /build/core/combo/
TARGET_linux-arm.mk 260 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
262 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
283 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
285 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
  /external/icu4c/tools/tzcode/
icuzdump.cpp 337 char* comma = (char*)strchr(options[kOptCutover].value, ','); local
338 if (comma == NULL) {
341 *comma = 0;
343 high = atoi(comma + 1);
  /external/llvm/lib/TableGen/
TGLexer.h 40 comma, period, // , . enumerator in enum:llvm::tgtok::TokKind
  /build/core/
product_config.mk 244 comma := , macro
246 $(subst $(space),$(comma),$(strip $(PRODUCT_AAPT_CONFIG)))
248 $(subst $(space),$(comma),$(strip $(PRODUCT_AAPT_PREF_CONFIG)))
  /external/webkit/Source/WebCore/bindings/v8/
DebuggerScript.js 71 var comma = contextData.indexOf(",");
72 if (comma === -1)
76 var idSuffix = contextData.substring(comma); // including the comma
  /external/llvm/lib/AsmParser/
LLParser.cpp 283 while (EatIfPresent(lltok::comma)) {
504 } while (EatIfPresent(lltok::comma));
717 while (Lex.getKind() == lltok::comma) {
    [all...]
LLToken.h 25 equal, comma, // = , enumerator in enum:llvm::lltok::Kind
  /sdk/apigenerator/src/com/android/apigenerator/
NewApiParser.java 426 boolean comma = true;
431 if (comma) {
434 comma = true;
436 if (!comma) {
440 comma = false;
  /external/ppp/pppd/
ipv6cp.c 326 char *comma, *arg, c; local
335 if ((comma = strchr(arg, ',')) == NULL)
336 comma = arg + strlen(arg);
339 * If comma first character, then no local identifier
341 if (comma != arg) {
342 c = *comma;
343 *comma = '\0';
355 *comma = c;
359 * If comma last character, the no remote identifier
361 if (*comma != 0 && *++comma != '\0')
    [all...]
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-internal.h 608 // Skips to the first non-space char after the first comma in 'str';
609 // returns NULL if no comma is found in 'str'.
611 const char* comma = strchr(str, ','); local
612 if (comma == NULL) {
615 while (IsSpace(*(++comma))) {}
616 return comma;
619 // Returns the prefix of 'str' before the first comma in it; returns
620 // the entire string if it contains no comma.
622 const char* comma = strchr(str, ','); local
623 return comma == NULL ? String(str) : String(str, comma - str)
    [all...]
  /external/gtest/include/gtest/internal/
gtest-internal.h 614 // Skips to the first non-space char after the first comma in 'str';
615 // returns NULL if no comma is found in 'str'.
617 const char* comma = strchr(str, ','); local
618 if (comma == NULL) {
621 while (IsSpace(*(++comma))) {}
622 return comma;
625 // Returns the prefix of 'str' before the first comma in it; returns
626 // the entire string if it contains no comma.
628 const char* comma = strchr(str, ','); local
629 return comma == NULL ? String(str) : String(str, comma - str)
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 634 // Skips to the first non-space char after the first comma in 'str';
635 // returns NULL if no comma is found in 'str'.
637 const char* comma = strchr(str, ','); local
638 if (comma == NULL) {
641 while (IsSpace(*(++comma))) {}
642 return comma;
645 // Returns the prefix of 'str' before the first comma in it; returns
646 // the entire string if it contains no comma.
648 const char* comma = strchr(str, ','); local
649 return comma == NULL ? String(str) : String(str, comma - str)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
MessageParser.java 36 final int comma = args.indexOf(','); local
37 if (comma >= 0)
38 args = args.substring(comma + 1).trim();
89 int comma = args.indexOf(','); local
90 if (comma >= 0)
91 args = args.substring(comma + 1).trim();
99 final int comma = args.indexOf(','); local
101 if (comma >= 0)
103 arg = args.substring(0, comma);
104 args = args.substring(comma + 1)
    [all...]
  /external/v8/tools/
csvparser.js 66 pos += field.length + 3; // Skip comma and quotes.
72 pos += field.length + 1; // Skip comma.
  /system/core/libpixelflinger/codeflinger/
disassem.c 584 int comma; local
588 comma = 0;
593 if (comma)
596 comma = 1;
  /external/libvpx/
args.c 124 char *comma = def->has_val ? "," : ", "; local
127 def->short_name, short_val, comma,
  /external/v8/test/mjsunit/regress/
regress-3218915.js 30 // Checks that comma expression in conditional context is processed correctly.
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
jsilver.sablecc 108 {args} comma = ',';
274 [start]:expression comma [end]:expression cs_close
286 [start]:expression comma
287 [end]:expression [i3]:comma [increment]:expression cs_close
388 | {multiple} variable_list comma variable
395 | {multiple} expression_list comma expression
684 | {comma} [left]:expression [right]:expression // x, y
  /external/doclava/src/com/google/doclava/apicheck/
ApiFile.java 504 boolean comma = true;
509 if (comma) {
512 comma = true;
514 if (!comma) {
517 comma = false;
  /external/doclava/src/com/google/doclava/
Stubs.java 375 String comma = ""; local
377 stream.print(comma + iface.fullName(classDeclTypeVars));
378 comma = ", ";
499 String comma; local
534 comma = "";
538 stream.print(comma + fullParameterTypeName(method, param.type(), count == size) + " "
540 comma = ", ";
545 comma = "";
549 stream.print(comma + thrown.qualifiedName());
550 comma = ", "
    [all...]
  /dalvik/vm/
Init.cpp 399 char* comma; local
407 comma = strchr(name, ','); // use name, not value, for safety
408 if (comma != NULL) {
409 if (comma < value) {
410 ALOGE("JDWP opts: found comma before '=' in '%s'", mangle);
413 *comma = '\0';
421 if (comma == NULL) {
425 name = comma+1;
615 * Break comma-separated method signatures and enter them into the hash
    [all...]

Completed in 651 milliseconds

12 3 4 5