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

1 2 3 4

  /external/libhevc/
decoder.arm64.mk 99 comma := , macro
100 LOCAL_ASFLAGS_arm64 += $(addprefix -Wa$(comma)-I,$(libhevcd_inc_dir_arm64))
  /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" ";
  /external/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;
  /external/libvpx/libvpx/
args.c 112 char *comma = def->has_val ? "," : ", "; local
115 def->short_name, short_val, comma,
  /external/toybox/lib/
getmountlist.c 15 // Only add a comma if old string didn't end with one
17 char *comma = ","; local
19 if (atold[strlen(atold)-1] == ',') comma = "";
20 temp = xmprintf("%s%s%s", atold, comma, new);
26 // iterate through strings in a comma separated list.
28 // sets *len to length of entry (not including comma)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
args.c 112 char *comma = def->has_val ? "," : ", "; local
115 def->short_name, short_val, comma,
  /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));
  /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/iproute2/tc/
q_cbq.c 498 int comma=0; local
502 comma=1;
505 if (comma)
  /external/iptables/extensions/
libxt_HMARK.c 186 const char *comma; local
188 while ((comma = strchr(arg, ',')) != NULL) {
189 if (comma == arg ||
190 !hmark_parse(arg, comma-arg, info, &cb->xflags))
192 arg = comma+1;
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/toybox/toys/lsb/
mount.c 29 OPTIONS is a comma separated list of options, which can also be supplied
78 // Strip flags out of comma separated list of options, return flags,.
105 char *comma = strchr(new, ','); local
108 if (comma) *comma = 0;
128 if (!comma) break;
129 *comma = ',';
130 new = comma + 1;
  /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...]
  /system/core/libpixelflinger/codeflinger/
disassem.c 579 int comma; local
583 comma = 0;
588 if (comma)
591 comma = 1;
  /external/google-breakpad/src/processor/
minidump_processor.cc 444 const char* comma = ""; local
447 cpu_info->append(comma);
449 comma = ",";
    [all...]
  /external/icu/icu4c/source/tools/tzcode/
icuzdump.cpp 334 char* comma = (char*)strchr(options[kOptCutover].value, ','); local
335 if (comma == NULL) {
338 *comma = 0;
340 high = atoi(comma + 1);
  /external/llvm/lib/TableGen/
TGLexer.h 41 comma, period, // , . enumerator in enum:llvm::tgtok::TokKind
  /external/tcpdump/
print-egp.c 146 const char *comma; local
187 comma = "";
191 printf("%sd%d:", comma, (int)*cp++);
192 comma = ", ";
  /ndk/build/core/
definitions-utils.mk 39 # Macro : comma
40 # Returns : a single comma
41 # Usage : $(comma)
43 comma := , macro
  /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/ppp/pppd/
ipv6cp.c 335 char *comma, *arg, c; local
344 if ((comma = strchr(arg, ',')) == NULL)
345 comma = arg + strlen(arg);
348 * If comma first character, then no local identifier
350 if (comma != arg) {
351 c = *comma;
352 *comma = '\0';
364 *comma = c;
368 * If comma last character, the no remote identifier
370 if (*comma != 0 && *++comma != '\0')
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-internal.h 643 // Skips to the first non-space char after the first comma in 'str';
644 // returns NULL if no comma is found in 'str'.
646 const char* comma = strchr(str, ','); local
647 if (comma == NULL) {
650 while (isspace(*(++comma))) {}
651 return comma;
654 // Returns the prefix of 'str' before the first comma in it; returns
655 // the entire string if it contains no comma.
657 const char* comma = strchr(str, ','); local
658 return comma == NULL ? String(str) : String(str, comma - str)
    [all...]
  /external/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...]
  /external/clang/test/CodeGenCXX/
const-init-cxx11.cpp 263 constexpr const int &comma = (1, (2, ConstDerived{}).b); member in namespace:LiteralReference

Completed in 773 milliseconds

1 2 3 4