HomeSort by relevance Sort by last modified time
    Searched full:rest (Results 1 - 25 of 1870) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/nist-sip/java/gov/nist/core/
package.html 3 Contains core classes that the rest of the implementation depends upon. These
  /external/chromium/base/third_party/nspr/
prtime.cc 533 const char *rest = string; local
540 while (*rest)
548 switch (*rest)
552 (rest[1] == 'p' || rest[1] == 'P') &&
553 (rest[2] == 'r' || rest[2] == 'R'))
556 (rest[1] == 's' || rest[1] == 'S') &&
557 (rest[2] == 't' || rest[2] == 'T')
    [all...]
  /external/chromium/base/
DEPS 10 # ICU dependendencies must be separate from the rest of base.
  /external/openssl/crypto/aes/
README 3 API that looks like the rest of the OpenSSL symmetric cipher suite.
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
OrderedTable.java 49 private Object[] rest; field in class:OrderedTable
97 // Do initial allocation of rest.
98 rest = new Object[10];
99 rest[0] = key;
100 rest[1] = value;
106 if (index1 >= rest.length) {
107 // Grow rest.
109 System.arraycopy(rest, 0, newRest, 0, rest.length);
110 rest = newRest
    [all...]
ASN1Collection.java 41 private DEREncodable[] rest; field in class:ASN1Collection
59 default: return rest[index - 4];
106 // Initial allocation of rest.
107 rest = new DEREncodable[5];
108 rest[0] = obj;
113 if (index >= rest.length) {
114 // Grow rest.
116 System.arraycopy(rest, 0, newRest, 0, rest.length);
117 rest = newRest
    [all...]
  /external/kernel-headers/original/linux/
atmppp.h 16 * the first element of the structure is the backend number and the rest
fadvise.h 11 * for s390-64 differ from the values for the rest of the world.
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
atmppp.h 16 * the first element of the structure is the backend number and the rest
fadvise.h 11 * for s390-64 differ from the values for the rest of the world.
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
X509NameElementList.java 45 private ArrayList<Object> rest; field in class:X509NameElementList
105 // Do initial allocation of rest.
106 rest = new ArrayList<Object>();
110 rest.add(key);
111 rest.add(value);
153 default: return (DERObjectIdentifier) rest.get((n - 4) * 2);
173 default: return (String) rest.get(((n - 4) * 2) + 1);
  /external/guava/src/com/google/common/collect/
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);
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...]
  /external/kernel-headers/original/asm-arm/arch/
omap24xx.h 5 * Please place only base defines here and put the rest in device
  /external/kernel-headers/original/asm-arm/
poll.h 12 /* The rest seem to be more-or-less nonstandard. Check them! */
  /external/kernel-headers/original/asm-generic/
poll.h 12 /* The rest seem to be more-or-less nonstandard. Check them! */
  /external/webkit/WebCore/manual-tests/qt/
qtplugin-scrolling.html 14 Scroll the page, ensure that the two labels move nicely along with the rest of the document.
  /prebuilt/linux-x86/toolchain/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! */
  /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
  /system/core/toolbox/
umount.c 19 char rest[256]; local
30 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;
  /bionic/libc/regex/
engine.c 298 char *rest; /* start of rest of string */ local
299 char *tail; /* string unmatched by rest of RE */
350 rest = slow(m, sp, stp, ss, es);
351 assert(rest != NULL); /* it did match */
352 /* could the rest match the rest? */
353 tail = slow(m, rest, stop, es, stopst);
357 stp = rest - 1;
363 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))

Completed in 1830 milliseconds

1 2 3 4 5 6 7 8 91011>>