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

1 2 3 45 6 7 8 91011>>

  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
ReflectUtils.java 155 int comma = desc.indexOf(',', start); local
156 if (comma < 0) {
159 params.add(desc.substring(start, comma).trim());
160 start = comma + 1;
  /external/v8/src/
json-stringifier.h 62 Result Serialize_(Handle<Object> object, bool comma, Handle<Object> key);
  /frameworks/base/packages/SystemUI/tests/
Android.mk 68 # Generate a comma separated list of patterns based on the test source files under src/
85 jacoco_exclude := $(subst $(space),$(comma),$(patsubst %,%*,$(local_classes)))
  /toolchain/binutils/binutils-2.25/gas/config/
tc-dlx.c 453 int comma = idx; local
506 pb = comma;
511 pb = comma;
514 for (i = comma + 1; (str[i] == ' ' || str[i] == '\t'); i++)
765 /* Must match a comma. */
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68hc11/
insns9s12xg.s 86 par r1 ; comma on datasheet a typo?
  /toolchain/binutils/binutils-2.25/opcodes/
fr30-dis.c 71 char * comma = "";
81 comma = ",";
93 (*info->fprintf_func) (info->stream, "%sr%li", comma, reg_index + offset);
94 comma = ",";
70 char * comma = ""; local
  /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/valgrind/auxprogs/
s390-check-opcodes.pl 113 print "warning: description of $mnemonic contains comma\n";
  /ndk/build/core/
definitions-utils.mk 39 # Macro : comma
40 # Returns : a single comma
41 # Usage : $(comma)
43 comma := , macro
  /toolchain/binutils/binutils-2.25/ld/
lexsup.c 1680 bfd_boolean comma; local
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
std_map.i 356 bool comma = false;
358 for ( ; i != e; ++i, comma = true )
360 if (comma) str = rb_str_cat2( str, "," );
  /external/doclava/src/com/google/doclava/
Stubs.java 562 String comma = ""; local
564 stream.print(comma + iface.fullName(classDeclTypeVars));
565 comma = ", ";
690 String comma; local
728 comma = "";
732 stream.print(comma);
736 comma = ", ";
741 comma = "";
745 stream.print(comma + thrown.qualifiedName());
746 comma = ", "
    [all...]
  /external/llvm/lib/CodeGen/MIRParser/
MIParser.cpp 279 case MIToken::comma:
346 } while (consumeIfPresent(MIToken::comma));
434 } while (consumeIfPresent(MIToken::comma));
463 } while (consumeIfPresent(MIToken::comma));
579 if (Token.isNot(MIToken::comma))
602 if (Token.isNot(MIToken::comma))
629 if (Token.isNot(MIToken::comma))
    [all...]
  /external/clang/lib/Parse/
ParseCXXInlineMethods.cpp 91 if (Tok.is(tok::comma)) {
213 // Consume everything up to (but excluding) the comma or semicolon.
    [all...]
ParseExpr.cpp 122 return ParseRHSOfBinaryExpression(LHS, prec::Comma);
133 return ParseRHSOfBinaryExpression(LHS, prec::Comma);
153 return ParseRHSOfBinaryExpression(LHS, prec::Comma);
266 // Bail out when encountering a comma followed by a token which can't
269 // We can't do this before consuming the comma, because
271 if (OpToken.is(tok::comma) && isNotExpressionStart()) {
    [all...]
  /external/doclava/src/com/google/doclava/apicheck/
ApiFile.java 570 boolean comma = true;
575 if (comma) {
578 comma = true;
580 if (!comma) {
583 comma = false;
  /external/iputils/
ping_common.c 1013 char *comma = ""; local
1049 comma = ", ";
1052 printf("%spipe %d", comma, pipesize);
1053 comma = ", ";
1058 comma, ipg/1000, ipg%1000, rtt/8000, (rtt/8)%1000);
  /toolchain/binutils/binutils-2.25/libiberty/
simple-object-mach-o.c 1169 char *comma; local
    [all...]
  /external/clang/lib/Lex/
TokenLexer.cpp 131 // In Microsoft-compatibility mode, a comma is removed in the expansion
137 // GCC removes the comma in the expansion of " ... , ## __VA_ARGS__ " if
146 // Is a comma available to be removed?
147 if (ResultToks.empty() || !ResultToks.back().is(tok::comma))
154 // Remove the comma.
157 // If the comma was right after another paste (e.g. "X##,##__VA_ARGS__"),
158 // then removal of the comma should produce a placemarker token (in C99
164 // Never add a space, even if the comma, ##, or arg had a space.
253 // In Microsoft mode, remove the comma before __VA_ARGS__ to ensure there
286 ResultToks.back().is(tok::comma))
    [all...]
  /external/iproute2/tc/
q_cbq.c 503 int comma=0; local
507 comma=1;
510 if (comma)
  /external/iw/
info.c 351 bool comma = false; local
379 if (comma)
381 comma = true;
  /external/llvm/lib/TableGen/
TGParser.cpp 598 while (Lex.getCode() == tgtok::comma) {
599 Lex.Lex(); // Eat the comma.
922 while (Lex.getCode() == tgtok::comma) {
996 if (Lex.getCode() != tgtok::comma) {
1006 if (Lex.getCode() != tgtok::comma) {
    [all...]
  /external/v8/test/mjsunit/es6/
destructuring.js 513 // last comma is not an elision.
522 // last comma is not an elision, but the comma before the last is.
611 // last comma is not an elision.
620 // last comma is not an elision, but the comma before the last is.
  /external/clang/lib/Format/
ContinuationIndenter.cpp 54 return Previous.is(tok::comma) && !Current.isTrailingComment() &&
105 Previous.Previous->isOneOf(tok::l_brace, tok::l_paren, tok::comma))
178 Previous.is(tok::comma) || Current.NestingLevel < 2) &&
373 (Previous.is(tok::comma) ||
488 if ((Previous.isOneOf(tok::comma, tok::semi) &&
525 !PreviousNonComment->isOneOf(tok::comma, tok::semi) &&
606 if (Previous.is(tok::comma) && State.Stack.back().VariablePos != 0)
    [all...]

Completed in 844 milliseconds

1 2 3 45 6 7 8 91011>>