HomeSort by relevance Sort by last modified time
    Searched refs:rest (Results 151 - 175 of 424) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/icu/source/test/perf/perldriver/
Output.pm 187 my ($t, $rest);
188 ($t, $rest) = split(/\.\w+/, $0);
  /external/icu/icu4c/source/test/perf/perldriver/
Output.pm 187 my ($t, $rest);
188 ($t, $rest) = split(/\.\w+/, $0);
  /external/ltrace/sysdeps/linux-gnu/ia64/
fetch.c 332 /* The rest is passed in registers and on stack. */
333 size_t rest = hfa_count * hfa_sz; local
334 return copy_aggregate_part(ctx, proc, buf, rest);
  /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);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
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...]
sgmllib.py 281 attrname, rest, attrvalue = match.group(1, 2, 3)
282 if not rest:
string.py 630 first, rest = field_name._formatter_field_name_split()
634 # loop through the rest of the field_name, doing
636 for is_attr, i in rest:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
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...]
sgmllib.py 281 attrname, rest, attrvalue = match.group(1, 2, 3)
282 if not rest:
string.py 630 first, rest = field_name._formatter_field_name_split()
634 # loop through the rest of the field_name, doing
636 for is_attr, i in 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]
  /external/guava/guava-tests/test/com/google/common/collect/
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/ltrace/
read_config_file.c 92 char *rest = NULL; local
98 rest = *name + sizeof(KWD) - 1; \
121 assert(rest == NULL);
127 if (isalnum(CTYPE_CONV(*rest)) || *rest == '_')
130 *name = rest;
  /external/fio/
parse.c 631 char *rest; local
636 rest = strstr(*cp ?: ptr, ":");
637 if (rest) {
639 *rest = '\0';
640 ptr = rest + 1;
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
math_semantic_tree.js     [all...]
  /external/chromium_org/components/nacl/renderer/
json_manifest.cc 491 std::string rest(p + 1, key.end());
492 if (!files.isMember(rest)) {
496 return GetKeyUrl(files, rest, full_url, pnacl_options);
  /external/chromium_org/net/websockets/
websocket_basic_handshake_stream.cc 266 const std::string rest(name, kPrefixLen);
267 if (rest == kNoContextTakeover) {
274 } else if (rest == kMaxWindowBits) {
  /external/chromium_org/third_party/webrtc/modules/utility/source/
file_player_impl.cc 608 uint32_t rest = 1000%_frameLengthMS; local
609 _accumulatedRenderTimeMs += rest;
file_recorder_impl.cc 593 uint32_t rest = 1000 % frameLengthMS; local
594 _writtenVideoMS += rest;
  /system/vold/
Volume.cpp 293 char rest[256]; local
304 sscanf(line, "%255s %255s %255s\n", device, mount_path, rest);
  /external/chromium_org/third_party/icu/source/common/
utrie.c 289 int32_t block, rest, repeatBlock; local
324 rest=limit&UTRIE_MASK;
361 if(rest>0) {
368 utrie_fillBlock(trie->data+block, 0, rest, value, initialValue, overwrite);
    [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glsl_parser.h 475 ast_expression *rest; member in struct:YYSTYPE::__anon17087

Completed in 3709 milliseconds

1 2 3 4 5 67 8 91011>>