HomeSort by relevance Sort by last modified time
    Searched refs:comma (Results 1 - 25 of 241) sorted by null

1 2 3 4 5 6 7 8 910

  /ndk/sources/host-tools/toolbox/
echo_win.c 58 const TCHAR* comma = L""; local
60 _tprintf(L"%s%s", comma, argv[1]);
61 comma = L" ";
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_ws_comma.py 20 COMMA = pytree.Leaf(token.COMMA, u",")
22 SEPS = (COMMA, COLON)
26 comma = False
32 comma = True
34 if comma:
38 comma = False
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_ws_comma.py 20 COMMA = pytree.Leaf(token.COMMA, u",")
22 SEPS = (COMMA, COLON)
26 comma = False
32 comma = True
34 if comma:
38 comma = False
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
JSONWriter.java 63 * The comma flag determines if a comma should be output before the next
66 private boolean comma; field in class:JSONWriter
97 this.comma = false;
116 if (this.comma && this.mode == 'a') {
126 this.comma = true;
145 this.comma = false;
169 this.comma = true;
207 if (this.comma) {
213 this.comma = false
    [all...]
  /external/chromium_org/v8/src/compiler/
schedule.cc 41 bool comma = false; local
44 if (comma) os << ", ";
45 comma = true;
74 comma = false;
77 if (comma) os << ", ";
78 comma = true;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/punctuation/
comma_if.hpp 20 # include <boost/preprocessor/punctuation/comma.hpp>
  /external/dnsmasq/src/
option.c 508 /* find next comma, split string with zero and eliminate spaces.
509 return start of string following comma */
513 char *comma, *p; local
515 if (!s || !(comma = strchr(s, c)))
518 p = comma;
519 *comma = ' ';
521 for (; isspace((int)*comma); comma++);
526 return comma;
671 char *comma = NULL, *problem = NULL local
981 char *comma, *problem = NULL;; local
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
awkgram.y 72 %type <i> pst opt_pst lbrace rbrace rparen comma nl opt_nl and bor
111 comma: label
112 ',' | comma NL
195 | patlist comma pattern { $$ = linkum($1, $3); }
253 pattern comma pattern { $$ = linkum($1, $3); }
254 | plist comma pattern { $$ = linkum($1, $3); }
259 | pplist comma ppattern { $$ = linkum($1, $3); }
376 | INDEX '(' pattern comma pattern ')'
378 | INDEX '(' pattern comma reg_expr ')'
382 | MATCHFCN '(' pattern comma reg_expr ')
    [all...]
  /external/chromium_org/net/base/
data_url.cc 35 std::string::const_iterator comma = std::find(after_colon, end, ','); local
36 if (comma == end)
40 std::string unparsed_meta_data(after_colon, comma);
94 std::string temp_data = std::string(comma + 1, end);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLDimension.cpp 105 static const char comma = ','; local
107 // Step 2. Remove the last character if it's a comma.
109 if (trimmedString.endsWith(comma))
121 size_t nextComma = trimmedString.find(comma, lastParsedIndex);
  /external/chromium_org/native_client_sdk/src/examples/tutorial/testing/
example.js 70 var comma = argList.indexOf(',');
71 if (comma === -1) {
80 arg = argList.substr(0, comma);
81 argList = argList.substr(comma + 1);
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_socket_test/
example.js 83 var comma = argList.indexOf(',');
84 if (comma === -1) {
93 arg = argList.substr(0, comma);
94 argList = argList.substr(comma + 1);
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
example.js 83 var comma = argList.indexOf(',');
84 if (comma === -1) {
93 arg = argList.substr(0, comma);
94 argList = argList.substr(comma + 1);
  /external/chromium_org/native_client_sdk/src/tests/sdk_util_test/
example.js 82 var comma = argList.indexOf(',');
83 if (comma === -1) {
92 arg = argList.substr(0, comma);
93 argList = argList.substr(comma + 1);
  /external/ipsec-tools/src/libipsec/
policy_token.l 75 comma \,
  /external/llvm/test/MC/ARM/
directive-eabi_attribute-diagnostics.s 28 @ CHECK: error: comma expected
  /external/harfbuzz_ng/src/
hb-buffer-deserialize-json.rl 72 comma = space* ',' space*;
90 ( '{' space* element (comma element)* space* '}')
95 main := space* item (comma item)* space* (','|']')?;
  /frameworks/native/opengl/libs/EGL/
trace.cpp 106 const char* comma = i < count-1 ? "," : "";
110 ALOGD(" \"%*s\"%s", len, s, comma);
112 ALOGD(" \"%s\"%s", s, comma);
119 const char* comma = i < count-1 ? "," : "";
121 ALOGD(" \"%d\"%s", len, comma);
143 const char* comma = ", ";
146 comma = "";
148 comma = ",";
152 builder.append("%g%s", * (GLfloat*) value, comma);
155 builder.append("%d%s", * (GLint*) value, comma);
    [all...]
  /external/clang/lib/Parse/
ParseOpenMP.cpp 173 if (Tok.is(tok::comma))
251 SkipUntil(tok::comma, tok::r_paren, tok::annot_pragma_openmp_end,
256 SkipUntil(tok::comma, tok::r_paren, tok::annot_pragma_openmp_end,
258 } else if (Tok.isNot(tok::comma) && Tok.isNot(tok::r_paren) &&
261 SkipUntil(tok::comma, tok::r_paren, tok::annot_pragma_openmp_end,
274 if (Tok.is(tok::comma)) {
384 SkipUntil(tok::comma, tok::annot_pragma_openmp_end, StopBeforeMatch);
447 if (Tok.isNot(tok::r_paren) && Tok.isNot(tok::comma) &&
493 if (Tok.isNot(tok::r_paren) && Tok.isNot(tok::comma) &&
500 Tok.is(tok::comma)) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
gl_apitemp.py 58 comma = ""
78 t_string = t_string + comma + p.format_string()
79 p_string = p_string + comma + p.name
80 o_string = o_string + comma + cast + p.name
81 comma = ", "
  /external/iptables/extensions/
libxt_addrtype.c 88 const char *comma; local
90 while ((comma = strchr(arg, ',')) != NULL) {
91 if (comma == arg || !parse_type(arg, comma-arg, mask))
94 arg = comma + 1;
libxt_conntrack.c 213 const char *comma; local
215 while ((comma = strchr(arg, ',')) != NULL) {
216 if (comma == arg || !parse_state(arg, comma-arg, sinfo))
218 arg = comma+1;
254 const char *comma; local
256 while ((comma = strchr(arg, ',')) != NULL) {
257 if (comma == arg || !conntrack_ps_state(info, arg, comma - arg))
260 arg = comma + 1
290 const char *comma; local
324 const char *comma; local
1055 const char *comma; local
    [all...]
  /external/mesa3d/src/mapi/glapi/gen/
gl_apitemp.py 58 comma = ""
78 t_string = t_string + comma + p.format_string()
79 p_string = p_string + comma + p.name
80 o_string = o_string + comma + cast + p.name
81 comma = ", "
  /external/chromium_org/v8/src/
json-stringifier.h 103 Result Serialize_(Handle<Object> object, bool comma, Handle<Object> key);
397 Handle<Object> object, bool comma, Handle<Object> key) {
406 if (deferred_string_key) SerializeDeferredKey(comma, key);
413 if (deferred_string_key) SerializeDeferredKey(comma, key);
418 if (deferred_string_key) SerializeDeferredKey(comma, key);
422 if (deferred_string_key) SerializeDeferredKey(comma, key);
426 if (deferred_string_key) SerializeDeferredKey(comma, key);
434 if (deferred_string_key) SerializeDeferredKey(comma, key);
437 if (deferred_string_key) SerializeDeferredKey(comma, key);
443 if (deferred_string_key) SerializeDeferredKey(comma, key)
639 bool comma = false; local
    [all...]
  /cts/tests/tests/text/src/android/text/util/cts/
Rfc822TokenizerTest.java 102 String comma = ","; local
106 assertEquals(text + comma + space, rfc822Tokenizer.terminateToken(text));
110 assertEquals(text + comma + space, rfc822Tokenizer.terminateToken(null));

Completed in 656 milliseconds

1 2 3 4 5 6 7 8 910