Searched refs:comma (Results 101 - 125 of 187) sorted by relevance

12345678

/external/ipsec-tools/src/racoon/
H A Dcftoken.l117 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/mesa3d/src/mapi/glapi/gen/
H A DglX_proto_send.py396 comma = ',' if i < len(names) - 1 else ''
397 print ' { "%s", (_glapi_proc) gl%s }%s' % (names[i], procs[names[i]], comma)
H A Dgl_XML.py792 comma = ""
797 p_string = p_string + comma + p.name
798 comma = ", "
/external/python/cpython2/Lib/
H A Dpdb.py353 # 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
/external/python/cpython3/Lib/
H A Dpdb.py618 # parse arguments; comma has lowest precedence
623 comma = arg.find(',')
624 if comma > 0:
625 # parse stuff after comma: "condition"
626 cond = arg[comma+1:].lstrip()
627 arg = arg[:comma].rstrip()
628 # parse stuff before comma: [filename:]lineno | function
/external/google-breakpad/src/processor/
H A Dminidump_processor.cc444 const char* comma = ""; local
447 cpu_info->append(comma);
449 comma = ",";
/external/clang/lib/Parse/
H A DParseExprCXX.cpp752 After.is(tok::comma))) ||
800 (NextToken().is(tok::comma) || NextToken().is(tok::r_square))) {
812 if (Tok.isNot(tok::comma)) {
1621 case tok::comma:
2879 // Discard the comma locations - ActOnCXXNew has enough parameters.
3006 } while (TryConsumeToken(tok::comma));
3045 SkipUntil(tok::comma, StopAtSemi);
3057 if (ExpectAndConsume(tok::comma)) {
H A DParser.cpp126 return Tok.is(tok::colon) || Tok.is(tok::comma); // : or , for ;
827 Tok.is(tok::comma) || // int X(), -> not a function def
1131 if (Tok.is(tok::comma)) {
1283 // If we don't have a comma, it is either the end of the list (a ';') or
1285 if (Tok.isNot(tok::comma))
1290 // Consume the comma.
H A DParseStmtAsm.cpp786 if (!TryConsumeToken(tok::comma))
861 // Eat the comma and continue parsing if it exists.
862 if (!TryConsumeToken(tok::comma))
/external/ImageMagick/www/api/
H A Dlist.php111 <p>CloneImages() clones one or more images from an image sequence, using a comma separated list of image numbers or ranges.</p>
168 <p>DeleteImages() deletes one or more images from an image sequence, using a comma separated list of image numbers or ranges.</p>
224 <p>DuplicateImages() duplicates one or more images from an image sequence, using a count and a comma separated list of image numbers or ranges.</p>
/external/v8/tools/gcmole/
H A Dgcmole.cc384 bool comma = false; local
388 if (comma) std::cout << ", ";
390 comma = true;
/external/protobuf/conformance/third_party/jsoncpp/
H A Djsoncpp.cpp685 Token comma;
686 if (!readToken(comma) ||
687 (comma.type_ != tokenObjectEnd && comma.type_ != tokenArraySeparator &&
688 comma.type_ != tokenComment)) {
690 "Missing ',' or '}' in object declaration", comma, tokenObjectEnd);
693 while (comma.type_ == tokenComment && finalizeTokenOk)
694 finalizeTokenOk = readToken(comma);
695 if (comma.type_ == tokenObjectEnd)
1667 Token comma;
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Collections.pas140 /// The separator is a comma followed by a space i.e. ", ".
152 /// The separator is a comma followed by a space i.e. ", ".
/external/clang/lib/Format/
H A DSortJavaScriptImports.cpp423 if (Current->isNot(tok::comma))
/external/clang/lib/Lex/
H A DPPMacroExpansion.cpp647 // Assume comma separator is actually braced list separator and change
648 // it back to a comma.
650 I->setKind(tok::comma);
735 assert(Tok.isOneOf(tok::l_paren, tok::comma) &&
776 } else if (Tok.is(tok::comma) && NumParens == 0 &&
784 // variadic part, then the comma is just an argument token.
923 // If the macro contains the comma pasting extension, the diagnostic
931 // Remember this occurred, allowing us to elide the comma when used for
1463 case tok::comma:
/external/clang/test/CodeGenCXX/
H A Dconst-init-cxx11.cpp263 constexpr const int &comma = (1, (2, ConstDerived{}).b); member in namespace:LiteralReference
/external/mksh/src/
H A Deval.c1865 char *brace_start, *brace_end, *comma = NULL; local
1876 comma = NULL;
1886 comma = p;
1905 if (!comma) {
/external/v8/src/asmjs/
H A Dasm-typer.h322 AsmType* ValidateCommaExpression(BinaryOperation* comma);
/external/curl/packages/vms/
H A Dsetup_gnv_curl_build.com37 $! Allow arguments to be grouped together with comma or separated by spaces
/external/doclava/res/assets/templates/
H A Dmacros.cs90 # A comma separated parameter list ?><?cs
224 # Show a comma-separated list of annotations associated with obj ?><?cs
/external/ltp/
H A Drunltp125 Run LTP under additional background Load on Secondary Storage (Seperate by comma)
141 Run LTP under additional background Load on Main memory (Seperate by comma)
/external/robolectric/v3/
H A Drobolectric-processor-3.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/robolectric/ org/robolectric/annotation/ ...
/external/robolectric-shadows/
H A Drun_robotests.mk169 -javaagent:$(my_jacoco_agent_jar)=$(call normalize-comma-list, $(my_jacoco_agent_args))
/external/iw/
H A Dscan.c1548 bool comma = false; local
1554 if (comma) \
1556 comma = true; \
/external/mesa3d/src/compiler/glsl/
H A Dast_function.cpp86 const char *comma = ""; local
88 ralloc_asprintf_append(&str, "%s%s", comma, param->type->name);
89 comma = ", ";

Completed in 752 milliseconds

12345678