HomeSort by relevance Sort by last modified time
    Searched full:rest (Results 51 - 75 of 4510) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/kernel-headers/original/asm-generic/
poll.h 12 /* The rest seem to be more-or-less nonstandard. Check them! */
  /external/kernel-headers/original/linux/
fadvise.h 11 * for s390-64 differ from the values for the rest of the world.
  /external/strace/
README-Android 6 Build Strace on Android using the Android build system, like the rest
  /external/valgrind/main/gdbserver_tests/
invoker 5 # rest of args are given to vgdb
  /ndk/sources/host-tools/make-3.81/config/
xsize.m4 7 dnl the same distribution terms as the rest of that program.
lcmessage.m4 7 dnl the same distribution terms as the rest of that program.
14 dnl by the GNU Library General Public License, and the rest of the GNU
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm-generic/
poll.h 12 /* The rest seem to be more-or-less nonstandard. Check them! */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
fadvise.h 11 * for s390-64 differ from the values for the rest of the world.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm-generic/
poll.h 12 /* The rest seem to be more-or-less nonstandard. Check them! */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
fadvise.h 11 * for s390-64 differ from the values for the rest of the world.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm-generic/
poll.h 12 /* The rest seem to be more-or-less nonstandard. Check them! */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
fadvise.h 11 * for s390-64 differ from the values for the rest of the world.
  /external/elfutils/m4/
lcmessage.m4 7 dnl the same distribution terms as the rest of that program.
14 dnl by the GNU Library General Public License, and the rest of the GNU
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
mac-mf.inp 8 # characters in the rest of the file, so it claims that the file is type
13 # characters in the rest of the file, so it claims that the file is type
18 # characters in the rest of the file, so it claims that the file is type
23 # characters in the rest of the file, so it claims that the file is type
28 # characters in the rest of the file, so it claims that the file is type
33 # characters in the rest of the file, so it claims that the file is type
38 # characters in the rest of the file, so it claims that the file is type
43 # characters in the rest of the file, so it claims that the file is type
48 # characters in the rest of the file, so it claims that the file is type
53 # characters in the rest of the file, so it claims that the file is typ
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
reference_resolver.py 15 node_name, rest = node_name.split('.', 1)
17 rest = None
24 if rest is not None:
25 ret = _ClassifySchemaNode(rest, item)
176 ref_with_title, rest = ref_and_rest[1:].split(']', 1)
189 rest = ref_and_rest
192 rest = ref_and_rest[match.end():]
195 formatted_text.append('<a href="%(href)s">%(text)s</a>%(rest)s' %
196 { 'href': ref_dict['href'], 'text': ref_dict['text'], 'rest': rest })
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
fast-dtoa.cc 59 // * rest = (too_high - buffer * 10^kappa).f() * unit
69 uint64_t rest,
91 // . . . . rest
142 // Conceptually rest ~= too_high - buffer
145 ASSERT(rest <= unsafe_interval);
146 while (rest < small_distance && // Negated condition 1
147 unsafe_interval - rest >= ten_kappa && // Negated condition 2
148 (rest + ten_kappa < small_distance || // buffer{-1} > w_high
149 small_distance - rest >= rest + ten_kappa - small_distance))
    [all...]
  /external/chromium_org/v8/src/
fast-dtoa.cc 60 // * rest = (too_high - buffer * 10^kappa).f() * unit
70 uint64_t rest,
92 // . . . . rest
143 // Conceptually rest ~= too_high - buffer
146 ASSERT(rest <= unsafe_interval);
147 while (rest < small_distance && // Negated condition 1
148 unsafe_interval - rest >= ten_kappa && // Negated condition 2
149 (rest + ten_kappa < small_distance || // buffer{-1} > w_high
150 small_distance - rest >= rest + ten_kappa - small_distance))
441 uint64_t rest = local
556 uint64_t rest = local
    [all...]
  /external/v8/src/
fast-dtoa.cc 60 // * rest = (too_high - buffer * 10^kappa).f() * unit
70 uint64_t rest,
92 // . . . . rest
143 // Conceptually rest ~= too_high - buffer
146 ASSERT(rest <= unsafe_interval);
147 while (rest < small_distance && // Negated condition 1
148 unsafe_interval - rest >= ten_kappa && // Negated condition 2
149 (rest + ten_kappa < small_distance || // buffer{-1} > w_high
150 small_distance - rest >= rest + ten_kappa - small_distance))
441 uint64_t rest = local
556 uint64_t rest = local
    [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...]
  /external/valgrind/main/coregrind/m_sigframe/
sigframe-arm-linux.c 316 # define REST(reg,REG) tst->arch.vex.guest_##REG = mc->arm_##reg;
317 REST(r0,R0);
318 REST(r1,R1);
319 REST(r2,R2);
320 REST(r3,R3);
321 REST(r4,R4);
322 REST(r5,R5);
323 REST(r6,R6);
324 REST(r7,R7);
325 REST(r8,R8)
    [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/tools/
genserv.py 56 rest = string.strip(m.group(4))
59 m = re_alias.match(rest)
63 rest = string.strip(m.group(2))
  /cts/tests/tests/text/src/android/text/style/cts/
LeadingMarginSpan_StandardTest.java 46 int rest = 5; local
48 Standard standard = new LeadingMarginSpan.Standard(first, rest);
50 assertEquals(rest, standard.getLeadingMargin(false));
  /development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/
Notepadv2.java 91 // TODO: fill in rest of method
98 // TODO: fill in rest of method
110 // TODO: fill in rest of method
118 // TODO: fill in rest of method
  /external/chromium_org/chrome/browser/extensions/
stubs_apitest.cc 25 // injected and run the rest of the test.

Completed in 2006 milliseconds

1 23 4 5 6 7 8 91011>>