Searched refs:rest (Results 1 - 25 of 74) sorted by relevance

123

/external/chromium/base/third_party/nspr/
H A Dprtime.cc533 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[
[all...]
/external/iproute2/ip/
H A Droutel18 while read network rest
19 do set xx $rest
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/
H A DOrderedTable.java49 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
[all...]
H A DASN1Collection.java41 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
[all...]
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
H A DX509NameElementList.java45 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/nist-sip/java/gov/nist/javax/sip/parser/
H A DCallIDParser.java74 String rest = lexer.getRest();
75 callID.setCallId(rest.trim());
/external/grub/stage2/
H A Dfsys_ffs.c185 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;
H A Dfsys_ufs2.c209 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;
H A Dfsys_minix.c311 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
[all...]
H A Dfsys_fat.c294 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;
/external/guava/src/com/google/common/collect/
H A DLists.java220 * 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) { argument
234 return new OnePlusArrayList<E>(first, rest);
241 final E[] rest; field in class:Lists.OnePlusArrayList
243 OnePlusArrayList(@Nullable E first, E[] rest) { argument
245 this.rest = checkNotNull(rest);
248 return rest.length + 1;
253 return (index == 0) ? first : rest[inde
275 asList( @ullable E first, @Nullable E second, E[] rest) argument
285 final E[] rest; field in class:Lists.TwoPlusArrayList
287 TwoPlusArrayList(@ullable E first, @Nullable E second, E[] rest) argument
[all...]
H A DReverseNaturalOrdering.java52 @Override public <E extends Comparable> E min(E a, E b, E c, E... rest) { argument
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) { argument
65 return NaturalOrdering.INSTANCE.min(a, b, c, rest);
H A DReverseOrdering.java50 @Override public <E extends T> E min(E a, E b, E c, E... rest) { argument
51 return forwardOrder.max(a, b, c, rest);
62 @Override public <E extends T> E max(E a, E b, E c, E... rest) { argument
63 return forwardOrder.min(a, b, c, rest);
/external/chromium/third_party/icu/source/common/
H A Dunisetspan.cpp645 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/icu4c/common/
H A Dunisetspan.cpp645 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/
H A DJoiner.java111 @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[inde
110 appendTo(A appendable, @Nullable Object first, @Nullable Object second, Object... rest) argument
147 appendTo(StringBuilder builder, @Nullable Object first, @Nullable Object second, Object... rest) argument
172 join( @ullable Object first, @Nullable Object second, Object... rest) argument
323 iterable( final Object first, final Object second, final Object[] rest) argument
[all...]
/external/chromium/net/ftp/
H A Dftp_util.cc149 const string16& rest, base::Time* time) {
158 if (!StringToInt(rest, &time_exploded.year)) {
160 if (rest.length() != 5 || rest[2] != ':')
163 if (!StringToInt(rest.substr(0, 2), &time_exploded.hour))
166 if (!StringToInt(rest.substr(3, 2), &time_exploded.minute))
148 LsDateListingToTime(const string16& month, const string16& day, const string16& rest, base::Time* time) argument
H A Dftp_util.h39 const string16& rest,
H A Dftp_util_unittest.cc112 const char* rest; member in struct:__anon1019::__anon1023
134 kTestCases[i].rest));
139 UTF8ToUTF16(kTestCases[i].rest), &time));
/external/bluetooth/glib/gio/
H A Dglocalvfs.c136 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);
/external/openssl/crypto/bio/
H A Dbss_bio.c190 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/
H A DHostNameParser.java120 String rest = lexer.getRest();
122 if(rest == null || rest.length() == 0){
129 int stripLen = rest.indexOf(']');
/external/qemu/
H A Dkeymaps.c104 const char *rest = end_of_keysym + 1; local
106 int keycode = strtol(rest, &rest2, 0);
108 if (rest && strstr(rest, "numlock")) {
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
H A Dsymshift.pl196 ($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/stlport/src/
H A Dnum_get_float.cpp345 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...]

Completed in 1528 milliseconds

123