/external/chromium/base/third_party/nspr/ |
prtime.cc | 534 const char *rest = string; local 541 while (*rest) 549 switch (*rest) 553 (rest[1] == 'p' || rest[1] == 'P') && 554 (rest[2] == 'r' || rest[2] == 'R')) 557 (rest[1] == 's' || rest[1] == 'S') && 558 (rest[2] == 't' || rest[2] == 'T') [all...] |
/external/iproute2/ip/ |
routel | 18 while read network rest 19 do set xx $rest
|
/sdk/monkeyrunner/scripts/ |
monkey_playback.py | 41 (cmd, rest) = line.split('|') 44 rest = eval(rest) 53 CMD_MAP[cmd](device, rest)
|
/external/llvm/lib/Support/ |
StringExtras.cpp | 65 StringRef rest = *this; local 67 // rest.data() is used to distinguish cases like "a," that splits into 70 rest.data() != NULL && (MaxSplit < 0 || splits < MaxSplit); 72 std::pair<llvm::StringRef, llvm::StringRef> p = rest.split(Separators); 76 rest = p.second; 79 if (rest.data() != NULL && (rest.size() != 0 || KeepEmpty)) 80 A.push_back(rest);
|
/dalvik/vm/mterp/armv5te/ |
OP_BREAKPOINT.S | 11 FETCH(rINST, 0) @ reload OP_BREAKPOINT + rest of inst
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
CallIDParser.java | 74 String rest = lexer.getRest(); local 75 callID.setCallId(rest.trim());
|
/external/v8/src/ |
fast-dtoa.cc | 58 // * rest = (too_high - buffer * 10^kappa).f() * unit 68 uint64_t rest, 90 // . . . . rest 141 // Conceptually rest ~= too_high - buffer 144 ASSERT(rest <= unsafe_interval); 145 while (rest < small_distance && // Negated condition 1 146 unsafe_interval - rest >= ten_kappa && // Negated condition 2 147 (rest + ten_kappa < small_distance || // buffer{-1} > w_high 148 small_distance - rest >= rest + ten_kappa - small_distance)) 439 uint64_t rest = local 554 uint64_t rest = local [all...] |
/external/chromium/net/ftp/ |
ftp_util.cc | 159 const string16& rest, 172 if (!base::StringToInt(rest, &time_exploded.year)) { 174 if (rest.length() == 5 && rest[2] == ':') { 175 if (!base::StringToInt(rest.begin(), 176 rest.begin() + 2, 180 if (!base::StringToInt(rest.begin() + 3, 181 rest.begin() + 5, 184 } else if (rest.length() == 4 && rest[1] == ':') [all...] |
ftp_util.h | 41 const string16& rest,
|
ftp_util_unittest.cc | 116 const char* rest; member in struct:__anon3572::__anon3576 159 kTestCases[i].rest)); 164 UTF8ToUTF16(kTestCases[i].rest), mock_current_time, &time));
|
/external/grub/stage2/ |
fsys_ffs.c | 185 char *rest, ch; local 228 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++); 230 *rest = 0; 247 *rest = ch; 261 *rest = ch; 286 *(dirname = rest) = ch;
|
fsys_ufs2.c | 209 char *rest, ch; local 253 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++); 255 *rest = 0; 268 *rest = ch; 282 *rest = ch; 307 *(dirname = rest) = ch;
|
fsys_minix.c | 311 char * rest; local 442 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; 443 rest++); 446 /* invariant: rest points to slash after the next filename component */ 447 *rest = 0; 453 printf ("dirname=`%s', rest=`%s', loc=%d\n", dirname, rest, loc); 469 *rest = ch; 488 *rest = ch [all...] |
/external/guava/src/com/google/common/collect/ |
Lists.java | 220 * rest} array will be reflected in the returned list. Unlike {@link 230 * @param rest an array of additional elements, possibly empty 233 public static <E> List<E> asList(@Nullable E first, E[] rest) { 234 return new OnePlusArrayList<E>(first, rest); 241 final E[] rest; field in class:Lists.OnePlusArrayList 243 OnePlusArrayList(@Nullable E first, E[] rest) { 245 this.rest = checkNotNull(rest); 248 return rest.length + 1; 253 return (index == 0) ? first : rest[index - 1] 285 final E[] rest; field in class:Lists.TwoPlusArrayList [all...] |
ReverseNaturalOrdering.java | 52 @Override public <E extends Comparable> E min(E a, E b, E c, E... rest) { 53 return NaturalOrdering.INSTANCE.max(a, b, c, rest); 64 @Override public <E extends Comparable> E max(E a, E b, E c, E... rest) { 65 return NaturalOrdering.INSTANCE.min(a, b, c, rest);
|
ReverseOrdering.java | 50 @Override public <E extends T> E min(E a, E b, E c, E... rest) { 51 return forwardOrder.max(a, b, c, rest); 62 @Override public <E extends T> E max(E a, E b, E c, E... rest) { 63 return forwardOrder.min(a, b, c, rest);
|
/external/icu4c/common/ |
unisetspan.cpp | 645 int32_t pos=spanLength, rest=length-pos; local 669 if(inc>rest) { 674 if(inc==rest) { 708 if(inc>rest || overlap<maxOverlap) { 728 rest-=maxInc; 729 if(rest==0) { 753 spanLength=spanSet.span(s+pos, rest, USET_SPAN_CONTAINED); 754 if( spanLength==rest || // Reached the end of the string, or 760 rest-=spanLength; 766 spanLength=spanOne(spanSet, s+pos, rest); 967 int32_t pos=spanLength, rest=length-pos; local 1338 int32_t pos=0, rest=length; local 1422 int32_t pos=0, rest=length; local [all...] |
/external/guava/src/com/google/common/base/ |
Joiner.java | 111 @Nullable Object first, @Nullable Object second, Object... rest) 113 return appendTo(appendable, iterable(first, second, rest)); 148 @Nullable Object first, @Nullable Object second, Object... rest) { 149 return appendTo(builder, iterable(first, second, rest)); 173 @Nullable Object first, @Nullable Object second, Object... rest) { 174 return join(iterable(first, second, rest)); 324 final Object first, final Object second, final Object[] rest) { 325 checkNotNull(rest); 328 return rest.length + 2; 337 return rest[index - 2] [all...] |
/bionic/libc/tools/ |
genserv.py | 56 rest = string.strip(m.group(4)) 59 m = re_alias.match(rest) 63 rest = string.strip(m.group(2))
|
/external/mksh/src/ |
check.pl | 426 local($type, $perm, $rest, $c, $len, $name); 432 ($type, $perm, $rest) = 434 $c = substr($rest, 0, 1); 435 $len = index($rest, $c, 1) - 1; 436 $name = substr($rest, 1, $len); 437 $rest = substr($rest, 2 + $len); 440 return undef if !&write_file($name, $rest); 454 local($ret) = symlink($rest, $name); 938 local($type, $perm, $rest, $c, $len, $name) [all...] |
/external/oprofile/libabi/tests/ |
abi_test.cpp | 40 vector<string> rest; local 41 popt::parse_options(argc, argv, rest);
|
/frameworks/base/core/java/android/text/style/ |
LeadingMarginSpan.java | 100 * @param rest the indent for the remaining lines of the paragraph 102 public Standard(int first, int rest) { 104 mRest = rest;
|
/system/core/toolbox/ |
umount.c | 34 char rest[256]; local 45 count = fscanf(f, "%255s %255s %255s\n", device, mount_path, rest);
|
/external/bluetooth/glib/gio/ |
glocalvfs.c | 136 char *rest; local 175 rest = NULL; 177 rest = g_filename_from_utf8 (user_end, -1, NULL, NULL, NULL); 179 filename = g_build_filename (user_prefix, rest, NULL); 180 g_free (rest);
|
/frameworks/base/tools/localize/ |
file_utils.cpp | 55 const char* rest = NULL; local 61 rest = values; 63 if (0 == strncmp("values", values+1, rest-values-1)) { 71 result.append(values, rest-values); 91 result += rest;
|