HomeSort by relevance Sort by last modified time
    Searched refs:rest (Results 26 - 50 of 213) sorted by null

12 3 4 5 6 7 8 9

  /system/core/toolbox/
umount.c 34 char rest[256]; local
45 count = fscanf(f, "%255s %255s %255s\n", device, mount_path, rest);
  /external/v8/test/mjsunit/regress/
regress-1582.js 30 function f(restIsArray, rest) {
32 if (typeof rest === "object" && (rest instanceof Array)) {
33 arr = rest;
39 var arrIsArguments = (arr[1] !== rest);
  /external/chromium/net/ftp/
ftp_util_unittest.cc 116 const char* rest; member in struct:__anon5007::__anon5011
159 kTestCases[i].rest));
164 UTF8ToUTF16(kTestCases[i].rest), mock_current_time, &time));
  /external/chromium-trace/trace-viewer/build/
parse_deps.py 98 rest = text
100 while len(rest):
101 indices = [rest.find(token) for token in tokens]
106 yield rest
113 yield rest[:min_index]
115 yield rest[min_index:min_index + len(token_with_min)]
116 rest = rest[min_index + len(token_with_min):]
265 rest = stripped_text
269 rest, re.DOTALL
    [all...]
  /external/linux-tools-perf/util/
parse-options.c 208 const char *rest; local
214 rest = skip_prefix(arg, options->long_name);
216 if (!rest)
218 if (*rest == '=')
220 if (*rest)
225 if (!rest) {
254 rest = skip_prefix(arg + 3, options->long_name);
256 if (!rest && !prefixcmp(options->long_name, arg + 3))
258 if (!rest)
261 if (*rest) {
    [all...]
  /external/openssl/crypto/bio/
bss_bio.c 190 size_t rest; local
233 rest = size;
235 assert(rest > 0);
240 assert(rest <= peer_b->len);
241 if (peer_b->offset + rest <= peer_b->size)
242 chunk = rest;
262 assert(chunk == rest);
265 rest -= chunk;
267 while (rest);
355 size_t rest; local
    [all...]
  /external/nist-sip/java/gov/nist/core/
HostNameParser.java 120 String rest = lexer.getRest(); local
122 if(rest == null || rest.length() == 0){
129 int stripLen = rest.indexOf(']');
  /external/qemu/
keymaps.c 127 const char *rest = end_of_keysym + 1; local
129 int keycode = strtol(rest, &rest2, 0);
131 if (rest && strstr(rest, "numlock")) {
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
symshift.pl 196 ($sym,$rest) = ($1,$2);
199 $rest =~ s/[\!].*//;
200 next if $rest =~ /iscombined/; #filter out combined POS
201 if ($rest =~ /.*:PROP.*mapval\s*=\s*(\d+)/) {
  /external/libmtp/examples/
thumb.c 52 char *rest; local
63 id = strtoul(optarg, &rest, 0);
albumart.c 54 char *rest; local
70 ids[(idcount-1)] = strtoul(optarg, &rest, 0);
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
ClusterChainDirectory.java 99 final int rest = (int) (trueSize - toWrite); local
100 final ByteBuffer fill = ByteBuffer.allocate(rest);
  /external/guava/guava/src/com/google/common/base/
Joiner.java 142 A appendable, @Nullable Object first, @Nullable Object second, Object... rest)
144 return appendTo(appendable, iterable(first, second, rest));
203 StringBuilder builder, @Nullable Object first, @Nullable Object second, Object... rest) {
204 return appendTo(builder, iterable(first, second, rest));
252 public final String join(@Nullable Object first, @Nullable Object second, Object... rest) {
253 return join(iterable(first, second, rest));
537 final Object first, final Object second, final Object[] rest) {
538 checkNotNull(rest);
541 return rest.length + 2;
551 return rest[index - 2]
    [all...]
  /external/stlport/src/
num_get_float.cpp 345 uint64 rest; /* Remaining guard bits */ local
402 rest = value;
407 rest = value & ((ULL(1)<< 63)-1);
412 rest = value & (((ULL(1) << lead0)-1)-1);
418 if (guard && ((value & 1) || rest) ) {
429 rest = value & ((1 << 10) - 1);
434 /* value&1 guard rest Action
442 if (((value&1)!=0) || (rest!=0)) {
532 uint64_t rest = vv.i64 & ((~ULL(0) / ULL(2)) >> (limits::digits - 1)); local
537 /* value&1 guard rest Actio
599 uint64_t rest; local
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
num_get_float.cpp 345 uint64 rest; /* Remaining guard bits */ local
402 rest = value;
407 rest = value & ((ULL(1)<< 63)-1);
412 rest = value & (((ULL(1) << lead0)-1)-1);
418 if (guard && ((value & 1) || rest) ) {
429 rest = value & ((1 << 10) - 1);
434 /* value&1 guard rest Action
442 if (((value&1)!=0) || (rest!=0)) {
532 uint64_t rest = vv.i64 & ((~ULL(0) / ULL(2)) >> (limits::digits - 1)); local
537 /* value&1 guard rest Actio
599 uint64_t rest; local
    [all...]
  /external/grub/stage2/
fsys_fat.c 294 char *rest, ch, dir_buf[FAT_DIRENTRY_LENGTH]; local
343 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
345 *rest = 0;
370 *rest = ch;
476 *(dirname = rest) = ch;
fsys_ext2fs.c 513 char *rest; local
697 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/';
698 rest++);
701 /* invariant: rest points to slash after the next filename component */
702 *rest = 0;
709 printf ("dirname=%s, rest=%s, loc=%d\n", dirname, rest, loc);
725 *rest = ch;
744 *rest = ch
    [all...]
  /external/llvm/lib/Support/
regengine.inc 303 const char *rest; /* start of rest of string */
304 const char *tail; /* string unmatched by rest of RE */
354 rest = slow(m, sp, stp, ss, es);
355 assert(rest != NULL); /* it did match */
356 /* could the rest match the rest? */
357 tail = slow(m, rest, stop, es, stopst);
361 stp = rest - 1;
367 if (slow(m, sp, rest, ssub, esub) != NULL)
    [all...]
  /bionic/libc/upstream-netbsd/libc/regex/
engine.c 365 const char *rest; /* start of rest of string */ local
366 const char *tail; /* string unmatched by rest of RE */
423 rest = slow(m, sp, stp, ss, es);
424 assert(rest != NULL); /* it did match */
425 /* could the rest match the rest? */
426 tail = slow(m, rest, stop, es, stopst);
430 stp = rest - 1;
436 if (slow(m, sp, rest, ssub, esub) != NULL)
    [all...]
  /ndk/sources/host-tools/ndk-stack/regex/
engine.c 298 char *rest; /* start of rest of string */ local
299 char *tail; /* string unmatched by rest of RE */
349 rest = slow(m, sp, stp, ss, es);
350 assert(rest != NULL); /* it did match */
351 /* could the rest match the rest? */
352 tail = slow(m, rest, stop, es, stopst);
356 stp = rest - 1;
362 if (slow(m, sp, rest, ssub, esub) != NULL)
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/
BodyDescriptor.java 156 String rest; local
159 rest = null;
162 rest = headerValue.substring(main.length() + 1);
166 if (rest != null) {
167 char[] chars = rest.toCharArray();
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/handshake/
_base.py 109 rest = http_header_util.peek(state)
110 # If |rest| is not None, |subprotocol| is not one token or invalid. If
111 # |rest| is None, |token| must not be None because |subprotocol| is
112 # concatenation of |token| and |rest| and is not None.
113 if rest is not None:
115 'name: %r' % rest)
  /external/nist-sip/java/gov/nist/javax/sip/message/
MultipartMimeContentImpl.java 122 String rest = nextPart.substring(position + off); local
124 if (rest == null)
126 // logger.debug("rest = [[" + rest + "]]");
128 ContentImpl content = new ContentImpl(rest, boundary);
  /external/guava/guava-testlib/src/com/google/common/testing/
EquivalenceTester.java 95 public EquivalenceTester<T> addEquivalenceGroup(T first, T... rest) {
96 addEquivalenceGroup(Lists.asList(first, rest));
  /external/guava/guava-tests/test/com/google/common/base/
JoinerTest.java 200 Object[] rest = new Integer[num]; local
202 rest[i] = partsArray[i + 2];
205 assertEquals(expected, joiner.join(partsArray[0], partsArray[1], rest));
208 joiner.appendTo(sb3, partsArray[0], partsArray[1], rest);
241 Object[] rest = new Integer[num]; local
243 rest[i] = partsArray[i + 2];
246 assertEquals(expected, joiner.join(partsArray[0], partsArray[1], rest));
249 joiner.appendTo(sb3, partsArray[0], partsArray[1], rest);

Completed in 762 milliseconds

12 3 4 5 6 7 8 9