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

12 3 4 5 6 7 8 91011>>

  /external/fonttools/Lib/fontTools/ttLib/tables/
_h_e_a_d.py 36 dummy, rest = sstruct.unpack2(headFormat, data, self)
37 if rest:
39 assert rest == "\0\0"
  /external/valgrind/main/drd/scripts/
run-splash2 17 read avg1 stddev1 vsz1 vszdev1 rest < "$tmp"
21 if [ "${rest}" != "" ]; then
22 echo "Internal error ($rest)"
29 read avg2 stddev2 vsz2 vszdev2 rest < "$tmp"
33 if [ "${rest}" != "" ]; then
34 echo "Internal error ($rest)"
41 read avg4 stddev4 vsz4 vszdev4 rest < "$tmp"
46 if [ "${rest}" != "" ]; then
47 echo "Internal error ($rest)"
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p5-generic-lambda-1y.cpp 20 auto NumParams = [](auto Self, auto h, auto ... rest) -> unsigned {
21 return 1 + Self(Self, rest...);
38 auto NumParams = [](auto Self, auto h, auto ... rest) {
39 return 1 + Self(Self, rest...);
p23.cpp 7 void print(T first, Ts... rest) {
9 print(rest...);
  /external/guava/guava/src/com/google/common/collect/
ReverseNaturalOrdering.java 52 @Override public <E extends Comparable> E min(E a, E b, E c, E... rest) {
53 return NaturalOrdering.INSTANCE.max(a, b, c, rest);
68 @Override public <E extends Comparable> E max(E a, E b, E c, E... rest) {
69 return NaturalOrdering.INSTANCE.min(a, b, c, rest);
ReverseOrdering.java 52 @Override public <E extends T> E min(E a, E b, E c, E... rest) {
53 return forwardOrder.max(a, b, c, rest);
68 @Override public <E extends T> E max(E a, E b, E c, E... rest) {
69 return forwardOrder.min(a, b, c, rest);
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/
math_store.js 205 var rest = s;
207 while (rest) {
208 var num = rest.match(/^\d+/);
209 var alpha = rest.match(/^[a-zA-Z]+/);
212 rest = rest.substring(num[0].length);
215 rest = rest.substring(alpha[0].length);
218 var chr = rest[0];
221 rest.length > 1 && !isNaN(rest.charCodeAt(1)))
    [all...]
  /external/mksh/src/
check.pl 464 local($type, $perm, $rest, $c, $len, $name);
470 ($type, $perm, $rest) =
472 $c = substr($rest, 0, 1);
473 $len = index($rest, $c, 1) - 1;
474 $name = substr($rest, 1, $len);
475 $rest = substr($rest, 2 + $len);
478 return undef if !&write_file($name, $rest);
492 local($ret) = symlink($rest, $name);
984 local($type, $perm, $rest, $c, $len, $name)
    [all...]
  /external/libmtp/examples/
newplaylist.c 44 char *rest; local
59 ids[(idcount-1)] = strtoul(optarg, &rest, 0);
  /external/oprofile/libabi/tests/
abi_test.cpp 40 vector<string> rest; local
41 popt::parse_options(argc, argv, rest);
  /frameworks/base/core/java/android/text/style/
LeadingMarginSpan.java 107 * @param rest the indent for the remaining lines of the paragraph
109 public Standard(int first, int rest) {
111 mRest = rest;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
_endian.py 33 rest = desc[2:]
34 fields.append((name, _other_endian(typ)) + rest)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
_endian.py 33 rest = desc[2:]
34 fields.append((name, _other_endian(typ)) + rest)
  /system/core/toolbox/
umount.c 34 char rest[256]; local
44 count = fscanf(f, "%255s %255s %255s\n", device, mount_path, rest);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1582.js 30 function f(restIsArray, rest) {
32 if (typeof rest === "object" && (rest instanceof Array)) {
33 arr = rest;
39 var arrIsArguments = (arr[1] !== rest);
  /prebuilts/python/darwin-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...]
  /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...]
  /external/chromium-trace/trace-viewer/build/
parse_deps.py 98 rest = text
100 while len(rest):
101 indices = [rest.find(token) for token in tokens]
106 yield rest
113 yield rest[:min_index]
115 yield rest[min_index:min_index + len(token_with_min)]
116 rest = rest[min_index + len(token_with_min):]
280 rest = stripped_text
284 rest, re.DOTALL
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/
_base.py 99 rest = http_header_util.peek(state)
100 # If |rest| is not None, |subprotocol| is not one token or invalid. If
101 # |rest| is None, |token| must not be None because |subprotocol| is
102 # concatenation of |token| and |rest| and is not None.
103 if rest is not None:
105 'name: %r' % rest)
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_debug.c 288 static char rest[64]; local
296 util_snprintf(rest, sizeof(rest), "0x%08lx", value);
297 return rest;
306 static char rest[64]; local
322 util_snprintf(rest, sizeof(rest), "0x%08lx", value);
323 return rest;
332 static char rest[256]; local
356 util_snprintf(rest, sizeof(rest), "0x%08lx", value)
    [all...]
  /external/jarjar/src/main/com/tonicsystems/jarjar/
MainUtil.java 63 String[] rest = new String[remaining]; local
64 System.arraycopy(args, 1, rest, 0, remaining);
65 parameters.add(rest);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
parse-options.c 209 const char *rest; local
215 rest = skip_prefix(arg, options->long_name);
217 if (!rest)
219 if (*rest == '=')
221 if (*rest)
226 if (!rest) {
255 rest = skip_prefix(arg + 3, options->long_name);
257 if (!rest && !prefixcmp(options->long_name, arg + 3))
259 if (!rest)
262 if (*rest) {
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_debug.c 288 static char rest[64]; local
296 util_snprintf(rest, sizeof(rest), "0x%08lx", value);
297 return rest;
306 static char rest[64]; local
322 util_snprintf(rest, sizeof(rest), "0x%08lx", value);
323 return rest;
332 static char rest[256]; local
356 util_snprintf(rest, sizeof(rest), "0x%08lx", value)
    [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...]

Completed in 817 milliseconds

12 3 4 5 6 7 8 91011>>