HomeSort by relevance Sort by last modified time
    Searched refs:rest (Results 126 - 150 of 357) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/grub/stage2/
fsys_reiserfs.c 466 * we can still read the rest from the disk on demand.
997 char *rest, ch; local
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableSetTest.java 69 String e4, String e5, String e6, String... rest) {
70 return ImmutableSet.of(e1, e2, e3, e4, e5, e6, rest);
ListsTest.java 108 String[] rest = new String[elements.length - 1];
109 Platform.unsafeArrayCopy(elements, 1, rest, 0, elements.length - 1);
110 return Lists.asList(elements[0], rest);
120 String[] rest = new String[elements.length - 2];
121 Platform.unsafeArrayCopy(elements, 2, rest, 0, elements.length - 2);
122 return Lists.asList(elements[0], elements[1], rest);
  /external/libmtp/examples/
pathutils.c 65 char *rest; local
70 item_id = strtoul(path, &rest, 0);
71 // really should check contents of "rest" here...
  /external/v8/tools/
gen-postmortem-metadata.py 336 rest = call[idx + 1: len(call) - 1];
337 args = re.split('\s*,\s*', rest);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
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:
HTMLParser.py 298 attrname, rest, attrvalue = m.group(1, 2, 3)
299 if not rest:
urllib.py 159 # This code sometimes runs when the rest of this module
306 urltype, rest = splittype(selector)
307 url = rest
312 realhost, rest = splithost(rest)
316 selector = "%s://%s%s" % (urltype, realhost, rest)
400 urltype, rest = splittype(selector)
401 url = rest
406 realhost, rest = splithost(rest)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
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:
HTMLParser.py 298 attrname, rest, attrvalue = m.group(1, 2, 3)
299 if not rest:
  /external/aac/libSBRenc/src/
fram_gen.cpp 231 INT rest);
1081 INT j, rest, segm, S, s = 0, bord; local
    [all...]
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
json_manifest.cc 643 nacl::string rest(p + 1, key.end());
652 if (!files.isMember(rest)) {
658 return GetKeyUrl(files, rest, sandbox_isa_, this, full_url, pnacl_options,
  /external/chromium_org/v8/test/mjsunit/
array-shift.js 57 // ... but keeps the rest as holes:
98 // ... but keeps the rest as holes:
  /external/llvm/test/MC/ARM/
eh-directive-text-section-multiple-func.s 51 @ 0xB0B0B080, which means compact model 0 is used (0x80) and the rest of the
eh-directive-text-section.s 65 @ 0xB0B0B080, which means compact model 0 is used (0x80) and the rest of the
  /external/chromium_org/chrome/browser/resources/net_internals/
cros_log_entry.js 54 // Treats the rest of the entry as description.
  /external/chromium_org/chrome/browser/resources/sync_internals/
notifications.js 50 // so fill in the rest (if necessary).
  /external/chromium_org/chrome/common/extensions/docs/examples/tutorials/getstarted/
popup.js 23 searchOnFlickr_: 'https://secure.flickr.com/services/rest/?' +
  /external/chromium_org/native_client_sdk/src/examples/tutorial/testing/
example.js 81 // Last argument is the rest of the message.
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io_test/
example.js 81 // Last argument is the rest of the message.
  /external/chromium_org/third_party/icu/source/test/perf/perldriver/
Output.pm 187 my ($t, $rest);
188 ($t, $rest) = split(/\.\w+/, $0);
  /external/icu4c/test/perf/perldriver/
Output.pm 187 my ($t, $rest);
188 ($t, $rest) = split(/\.\w+/, $0);
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
IntegralToString.java 371 int rest = ((int) ((n - midDigit) >>> 1)) * 0xCCCCCCCD; local
372 cursor = intIntoCharArray(buf, cursor, rest);
  /libcore/luni/src/main/java/java/lang/
IntegralToString.java 378 int rest = ((int) ((n - midDigit) >>> 1)) * 0xCCCCCCCD; local
379 cursor = intIntoCharArray(buf, cursor, rest);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
AST.stg 546 [[treeAdaptor createTree:<tokenType> <if(first(args))>FromToken:<first(args)><endif> <if(first(rest(args)))>Text:<first(rest(args))><else>Text:@"<tokenType>"<endif>] retain]
558 [[treeAdaptor createTree:<token> Text:<first(rest(args))> <args; separator=", ">] retain]

Completed in 642 milliseconds

1 2 3 4 56 7 8 91011>>