/external/libvpx/libvpx/third_party/googletest/src/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 | 642 // Skips to the first non-space char after the first comma in 'str'; 643 // returns NULL if no comma is found in 'str'. 645 const char* comma = strchr(str, ','); local 646 if (comma == NULL) { 649 while (IsSpace(*(++comma))) {} 650 return comma; 653 // Returns the prefix of 'str' before the first comma in it; returns 654 // the entire string if it contains no comma. 656 const char* comma = strchr(str, ','); local 657 return comma == NULL ? String(str) : String(str, comma - str) [all...] |
/external/mesa3d/src/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...] |
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/ |
gtest-internal.h | 529 // Skips to the first non-space char after the first comma in 'str'; 530 // returns NULL if no comma is found in 'str'. 532 const char* comma = strchr(str, ','); local 533 if (comma == NULL) { 536 while (IsSpace(*(++comma))) {} 537 return comma; 540 // Returns the prefix of 'str' before the first comma in it; returns 541 // the entire string if it contains no comma. 543 const char* comma = strchr(str, ','); local 544 return comma == NULL ? str : std::string(str, comma) [all...] |
/external/chromium_org/net/dns/ |
mock_host_resolver.h | 23 // comma-separated list of IPv4 or IPv6 literal(s) without enclosing brackets. 176 // |ip_literal| can be a single IP address like "192.168.1.1" or a comma
|
/external/chromium_org/ppapi/native_client/src/trusted/plugin/ |
nacl_http_response_headers_unittest.cc | 106 // Say that there is one, when comma separated. 115 // Comma separated, in a different position.
|
/external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/ |
MacroExpander.cpp | 276 // The individual arguments are separated by comma tokens, but 277 // the comma tokens between matching inner parentheses do not
|
/external/chromium_org/third_party/mesa/src/docs/ |
envvars.html | 156 <li>LP_DEBUG - a comma-separated list of debug options is acceptec. See the 158 <li>LP_PERF - a comma-separated list of options to selectively no-op various
|
/external/chromium_org/tools/code_coverage/ |
example.croc | 15 # Note the trailing comma, which will help save you from python's built-in
18 # with a trailing comma, which will help save you from python's built-in
|
/external/clang/test/Index/ |
complete-preprocessor.m | 62 // CHECK-CC4: macro definition:{TypedText FOO}{LeftParen (}{Placeholder a}{Comma , }{Placeholder b}{RightParen )} (70) 69 // CHECK-CC5: macro definition:{TypedText FOO}{LeftParen (}{Placeholder a}{Comma , }{Placeholder b}{RightParen )} (70)
|
/external/ipsec-tools/src/racoon/ |
cfparse.h | 203 COMMA = 419 368 #define COMMA 419
|
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/libvpx/libvpx/ |
args.c | 112 char *comma = def->has_val ? "," : ", "; local 115 def->short_name, short_val, comma,
|
/external/mesa3d/docs/ |
envvars.html | 156 <li>LP_DEBUG - a comma-separated list of debug options is acceptec. See the 158 <li>LP_PERF - a comma-separated list of options to selectively no-op various
|
/external/v8/src/ |
token.h | 93 T(COMMA, ",", 1) \ 211 return COMMA <= op && op <= MOD;
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
XMPUtilsImpl.java | 1133 * U+002C, ASCII comma<br> 1134 * U+FF0C, full width comma<br> 1135 * U+FF64, half width ideographic comma<br> 1136 * U+FE50, small comma<br> 1137 * U+FE51, small ideographic comma<br> 1138 * U+3001, ideographic comma<br> 1139 * U+060C, Arabic comma<br> 1140 * U+055D, Armenian comma [all...] |
/frameworks/base/core/java/android/widget/ |
MultiAutoCompleteTextView.java | 227 * it ends with a token terminator (for example a space or comma). 234 * separated by a comma and one or more spaces.
|
/frameworks/testing/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/ |
RunTestCommand.java | 177 * Add test classes from a potentially comma separated list 238 + " <CLASSES>: a list of test class names to run, separated by comma. To\n"
|
/frameworks/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/ |
RunTestCommand.java | 177 * Add test classes from a potentially comma separated list 238 + " <CLASSES>: a list of test class names to run, separated by comma. To\n"
|
/ndk/sources/host-tools/sed-4.2.1/m4/ |
locale-fr.m4 | 53 /* Check whether the decimal separator is a comma. 150 /* Check whether the decimal separator is a comma.
|
/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" )
|
/external/clang/lib/Parse/ |
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,
|
/external/dnsmasq/contrib/dns-loc/ |
dnsmasq2-loc-rfc1876.patch | 72 new->intr = safe_string_alloc(comma); 81 + comma = split(arg); 94 + if (!comma || loc_aton(comma,new->loc)!=16) 101 + if (comma) 102 + *comma = 0;
|
/external/chromium_org/third_party/sqlite/src/src/ |
parse.y | 167 columnlist ::= columnlist COMMA column. 257 typetoken(A) ::= typename(X) LP signed COMMA signed RP(Y). { 340 conslist_opt(A) ::= COMMA(X) conslist. {A = X;} 341 conslist ::= conslist COMMA tcons. 445 sclp(A) ::= selcollist(X) COMMA. {A = X;} 539 joinop(X) ::= COMMA|JOIN. { X = JT_INNER; } 580 sortlist(A) ::= sortlist(X) COMMA sortitem(Y) sortorder(Z). { 623 limit_opt(A) ::= LIMIT expr(X) COMMA expr(Y). 670 setlist(A) ::= setlist(Z) COMMA nm(X) EQ expr(Y). { 697 itemlist(A) ::= itemlist(X) COMMA expr(Y) [all...] |
/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...] |