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

1 2 3 4 56 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
posixpath.py 85 # rest). If the path ends in '/', tail will be empty. If there is no
108 # Split a pathname into a drive specification and the rest of the
372 def _joinrealpath(path, rest, seen):
373 if isabs(rest):
374 rest = rest[1:]
377 while rest:
378 name, _, rest = rest.partition(sep)
403 # Return already resolved part + rest of the path unchanged
    [all...]
ConfigParser.py 696 def _interpolate_some(self, option, accum, rest, section, map, depth):
698 raise InterpolationDepthError(option, section, rest)
699 while rest:
700 p = rest.find("%")
702 accum.append(rest)
705 accum.append(rest[:p])
706 rest = rest[p:]
708 c = rest[1:2]
711 rest = rest[2:
    [all...]
  /external/mksh/src/
check.pl 456 local($type, $perm, $rest, $c, $len, $name);
462 ($type, $perm, $rest) =
464 $c = substr($rest, 0, 1);
465 $len = index($rest, $c, 1) - 1;
466 $name = substr($rest, 1, $len);
467 $rest = substr($rest, 2 + $len);
470 return undef if !&write_file($name, $rest);
484 local($ret) = symlink($rest, $name);
976 local($type, $perm, $rest, $c, $len, $name)
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/handshake/
_base.py 109 rest = http_header_util.peek(state)
110 # If |rest| is not None, |subprotocol| is not one token or invalid. If
111 # |rest| is None, |token| must not be None because |subprotocol| is
112 # concatenation of |token| and |rest| and is not None.
113 if rest is not None:
115 'name: %r' % rest)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/
compatibility.py 23 unc_path, rest = os.path.splitunc(path)
24 unc_start, rest = os.path.splitunc(start)
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p23.cpp 7 void print(T first, Ts... rest) {
9 print(rest...);
  /external/kernel-headers/original/asm-mips/dec/
kn02xa.h 40 * The rest is defined in system-specific headers.
58 * The rest is defined in system-specific headers.
  /external/libmtp/examples/
newplaylist.c 44 char *rest; local
59 ids[(idcount-1)] = strtoul(optarg, &rest, 0);
  /external/llvm/test/DebugInfo/AArch64/
eh_frame.s 15 // The rest is largely incidental, but not expected to change regularly.
24 // Won't check the rest, it's rather incidental.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
atmbr2684.h 40 * the first element of the structure is the backend number and the rest
67 * the first element of the structure is the backend number and the rest
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
atmbr2684.h 40 * the first element of the structure is the backend number and the rest
67 * the first element of the structure is the backend number and the rest
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
atmbr2684.h 40 * the first element of the structure is the backend number and the rest
67 * the first element of the structure is the backend number and the rest
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_xrange.py 17 rest=any* >
50 for n in results["rest"]:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_xrange.py 17 rest=any* >
50 for n in results["rest"]:
  /external/grub/stage2/
fsys_minix.c 311 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 = ch
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bio/
bss_bio.c 190 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/openssl/crypto/bio/
bss_bio.c 190 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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ConfigParser.py 696 def _interpolate_some(self, option, accum, rest, section, map, depth):
698 raise InterpolationDepthError(option, section, rest)
699 while rest:
700 p = rest.find("%")
702 accum.append(rest)
705 accum.append(rest[:p])
706 rest = rest[p:]
708 c = rest[1:2]
711 rest = rest[2:
    [all...]
  /external/chromium_org/third_party/icu/source/common/
unisetspan.cpp 645 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/
unisetspan.cpp 647 int32_t pos=spanLength, rest=length-pos; local
671 if(inc>rest) {
676 if(inc==rest) {
710 if(inc>rest || overlap<maxOverlap) {
730 rest-=maxInc;
731 if(rest==0) {
755 spanLength=spanSet.span(s+pos, rest, USET_SPAN_CONTAINED);
756 if( spanLength==rest || // Reached the end of the string, or
762 rest-=spanLength;
768 spanLength=spanOne(spanSet, s+pos, rest);
969 int32_t pos=spanLength, rest=length-pos; local
1340 int32_t pos=0, rest=length; local
1424 int32_t pos=0, rest=length; local
    [all...]
  /bootable/recovery/edify/
expr.h 137 // to NULL, free the rest and return -1. Return 0 on success.
142 // to NULL, free the rest and return -1. Return 0 on success.
146 // results. If any evaluate to NULL, free the rest and return NULL.
152 // results. If any evaluate to NULL, free the rest and return NULL.
  /dalvik/dexgen/src/com/android/dexgen/rop/
BaseAttribute.java 22 * the attribute name but leaves the rest up to subclasses.
  /dalvik/dx/src/com/android/dx/cf/attrib/
BaseAttribute.java 23 * the attribute name but leaves the rest up to subclasses.
  /external/antlr/antlr-3.4/antlr3-maven-plugin/src/site/apt/examples/
simple.apt 39 finally rest as classes.
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
CharacterImplTest.java 33 // test the rest of the chars

Completed in 385 milliseconds

1 2 3 4 56 7 8 91011>>