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

<<11121314151617181920>>

  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
AST.stg 102 <rest(alts):{a| els<rewriteAltRest(a)>}; anchor, separator="\n\n">
319 <if(!rest(args))>@adaptor.create_from_token( <token>, <first(args)> )
320 <else><if(!rest(rest(args)))>@adaptor.create_from_token( <token>, <first(args)>, <first(rest(args))> )
  /system/extras/ext4_utils/
indirect.c 167 blocks, and return the rest */
188 and return the rest
220 blocks, and return the rest.
252 blocks, and return the rest.
324 /* We will need an indirect block for the rest of the blocks */
  /external/grub/stage2/
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...]
fsys_xfs.c 544 char *rest, *name, ch; local
591 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
592 *rest = 0;
608 *(dirname = rest) = ch;
617 *rest = ch;
  /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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
py2_test_grammar.py 172 def v0(*rest): pass
173 def v1(a, *rest): pass
174 def v2(a, b, *rest): pass
175 def v3(a, (b, c), *rest): return a, b, c, rest
204 self.assertEquals(v3.func_code.co_varnames, ('a', '(b, c)', 'rest', 'b', 'c'))
206 self.assertEquals(v3.func_code.co_varnames, ('a', '.1', 'rest', 'b', 'c'))
240 def d01v(a=1, *rest): pass
247 def d11v(a, b=1, *rest): pass
251 def d21v(a, b, c=1, *rest): pas
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_grammar.py 168 def v0(*rest): pass
169 def v1(a, *rest): pass
170 def v2(a, b, *rest): pass
172 exec('def v3(a, (b, c), *rest): return a, b, c, rest')
201 self.assertEqual(v3.func_code.co_varnames, ('a', '(b, c)', 'rest', 'b', 'c'))
203 self.assertEqual(v3.func_code.co_varnames, ('a', '.1', 'rest', 'b', 'c'))
237 def d01v(a=1, *rest): pass
244 def d11v(a, b=1, *rest): pass
248 def d21v(a, b, c=1, *rest): pas
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
py2_test_grammar.py 172 def v0(*rest): pass
173 def v1(a, *rest): pass
174 def v2(a, b, *rest): pass
175 def v3(a, (b, c), *rest): return a, b, c, rest
204 self.assertEquals(v3.func_code.co_varnames, ('a', '(b, c)', 'rest', 'b', 'c'))
206 self.assertEquals(v3.func_code.co_varnames, ('a', '.1', 'rest', 'b', 'c'))
240 def d01v(a=1, *rest): pass
247 def d11v(a, b=1, *rest): pass
251 def d21v(a, b, c=1, *rest): pas
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_grammar.py 168 def v0(*rest): pass
169 def v1(a, *rest): pass
170 def v2(a, b, *rest): pass
172 exec('def v3(a, (b, c), *rest): return a, b, c, rest')
201 self.assertEqual(v3.func_code.co_varnames, ('a', '(b, c)', 'rest', 'b', 'c'))
203 self.assertEqual(v3.func_code.co_varnames, ('a', '.1', 'rest', 'b', 'c'))
237 def d01v(a=1, *rest): pass
244 def d11v(a, b=1, *rest): pass
248 def d21v(a, b, c=1, *rest): pas
    [all...]
  /external/chromium/chrome/browser/
character_encoding.cc 416 // At last, we put all rest encoding items.
470 // We need to keep "Unicode (UTF-16LE)" always at the top (among the rest
472 // "Unicode (UTF-16LE)" is already in previous encodings, sort the rest
474 // rest of encodings, skip "Unicode (UTF-16LE)" and sort all left encodings.
483 // Add the rest of encodings that are neither in the static encoding list
540 // Generate the string for rest selected encoding list.
  /external/icu4c/layout/
LETypes.h 290 * Allocate an array of basic types. This is used to isolate the rest of
298 * Re-allocate an array of basic types. This is used to isolate the rest of
306 * Free an array of basic types. This is used to isolate the rest of
334 * Allocate an array of basic types. This is used to isolate the rest of
342 * Re-allocate an array of basic types. This is used to isolate the rest of
350 * Free an array of basic types. This is used to isolate the rest of
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
binhex.py 413 rest = self._read(1+4+4+2+4+4)
416 type = rest[1:5]
417 creator = rest[5:9]
418 flags = struct.unpack('>h', rest[9:11])[0]
419 self.dlen = struct.unpack('>l', rest[11:15])[0]
420 self.rlen = struct.unpack('>l', rest[15:19])[0]
mailcap.py 95 and the rest of the fields produce key-value pairs in the dict.
105 key, view, rest = fields[0], fields[1], fields[2:]
107 for field in rest:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
binhex.py 413 rest = self._read(1+4+4+2+4+4)
416 type = rest[1:5]
417 creator = rest[5:9]
418 flags = struct.unpack('>h', rest[9:11])[0]
419 self.dlen = struct.unpack('>l', rest[11:15])[0]
420 self.rlen = struct.unpack('>l', rest[15:19])[0]
mailcap.py 95 and the rest of the fields produce key-value pairs in the dict.
105 key, view, rest = fields[0], fields[1], fields[2:]
107 for field in rest:
  /external/chromium/net/ftp/
ftp_util_unittest.cc 116 const char* rest; member in struct:__anon5470::__anon5474
159 kTestCases[i].rest));
164 UTF8ToUTF16(kTestCases[i].rest), mock_current_time, &time));
  /external/chromium_org/components/autofill/content/browser/wallet/
full_wallet.cc 95 if (!dictionary.GetString("rest", &encrypted_rest)) {
96 DLOG(ERROR) << "Response from Google wallet missing rest";
273 DLOG(ERROR) << "Failed to parse encrypted rest";
  /external/chromium_org/third_party/openssl/openssl/crypto/modes/
ctr128.c 110 * overflow and the rest of the IV. This implementation takes NO
112 * into the rest of the IV when incremented.
161 /* the rest would be commonly eliminated by x86* compiler */
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
metafunctions.cpp 98 template<int First, int ...Rest>
99 struct sum<First, Rest...> {
100 static const int value = First + sum<Rest...>::value;
  /external/icu4c/common/
filterednormalizer2.cpp 143 UnicodeString rest(second.tempSubString(prefixLimit, INT32_MAX));
145 normalize(rest, first, USET_SPAN_NOT_CONTAINED, errorCode);
147 first.append(rest);
  /external/openssl/crypto/modes/
ctr128.c 110 * overflow and the rest of the IV. This implementation takes NO
112 * into the rest of the IV when incremented.
161 /* the rest would be commonly eliminated by x86* compiler */
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
config.py 418 rest = value
419 m = self.WORD_PATTERN.match(rest)
423 rest = rest[m.end():]
425 #print d, rest
426 while rest:
427 m = self.DOT_PATTERN.match(rest)
431 m = self.INDEX_PATTERN.match(rest)
443 rest = rest[m.end():
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
config.py 418 rest = value
419 m = self.WORD_PATTERN.match(rest)
423 rest = rest[m.end():]
425 #print d, rest
426 while rest:
427 m = self.DOT_PATTERN.match(rest)
431 m = self.INDEX_PATTERN.match(rest)
443 rest = rest[m.end():
    [all...]
  /art/runtime/
thread_android.cc 33 // We use Android thread priority constants to be consistent with the rest
  /bionic/libc/upstream-freebsd/lib/libc/string/
wcslcpy.c 61 /* Not enough room in dst, add NUL and traverse rest of src */

Completed in 1698 milliseconds

<<11121314151617181920>>