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

1 2 3 45 6 7 8 91011>>

  /packages/experimental/
README 14 Unlike the rest of the tree, code in experimental/ is NOT built by
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/config/
Setup.config 25 # The rest of the modules previously listed in this file are built
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/config/
Setup.config 25 # The rest of the modules previously listed in this file are built
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
runrc.cmd 21 parse arg name path rest
28 if rest \= '' then do
  /external/grub/stage2/
fsys_ffs.c 185 char *rest, ch; local
228 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
230 *rest = 0;
247 *rest = ch;
261 *rest = ch;
286 *(dirname = rest) = ch;
fsys_ufs2.c 209 char *rest, ch; local
253 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
255 *rest = 0;
268 *rest = ch;
282 *rest = ch;
307 *(dirname = rest) = ch;
  /external/iproute2/ip/
routel 18 while read network rest
19 do set xx $rest
  /external/oprofile/libabi/tests/
abi_test.cpp 40 vector<string> rest; local
41 popt::parse_options(argc, argv, rest);
  /ndk/sources/host-tools/make-3.81/config/
nls.m4 7 dnl the same distribution terms as the rest of that program.
14 dnl by the GNU Library General Public License, and the rest of the GNU
  /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
45 count = fscanf(f, "%255s %255s %255s\n", device, mount_path, rest);
  /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)
  /frameworks/base/services/java/com/android/server/power/
WirelessChargerDetector.java 91 // at rest and the current gravity vector. This field specifies the
92 // cosine of the maximum angle variance that we tolerate while at rest.
111 // True if the device is thought to be at rest on a wireless charger.
114 // The gravity vector most recently observed while at rest.
126 // True if the rest position should be updated if at rest.
127 // Otherwise, the current rest position is simply checked and cleared if movement
128 // is detected but no new rest position is stored.
134 // The number of samples collected that showed evidence of not being at rest.
188 // Update the rest position asynchronously
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
CGIHTTPServer.py 51 # the rest to a subprocess, so we can't use buffered input.
77 (dir, rest) if self.path requires running a CGI script.
109 dir, rest = self.cgi_info
118 dir, rest = nextdir, nextrest
124 i = rest.rfind('?')
126 rest, query = rest[:i], rest[i+1:]
132 i = rest.find('/')
134 script, rest = rest[:i], rest[i:
    [all...]
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/
CGIHTTPServer.py 51 # the rest to a subprocess, so we can't use buffered input.
77 (dir, rest) if self.path requires running a CGI script.
109 dir, rest = self.cgi_info
118 dir, rest = nextdir, nextrest
124 i = rest.rfind('?')
126 rest, query = rest[:i], rest[i+1:]
132 i = rest.find('/')
134 script, rest = rest[:i], rest[i:
    [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/net/ftp/
ftp_util.cc 227 const base::string16& rest,
247 if (!base::StringToInt(rest, &time_exploded.year)) {
249 if (rest.length() == 5 && rest[2] == ':') {
250 if (!base::StringToInt(StringPiece16(rest.begin(), rest.begin() + 2),
255 if (!base::StringToInt(StringPiece16(rest.begin() + 3, rest.begin() + 5),
259 } else if (rest.length() == 4 && rest[1] == ':')
    [all...]
  /bionic/libc/upstream-netbsd/libc/regex/
engine.c 365 const char *rest; /* start of rest of string */ local
366 const char *tail; /* string unmatched by rest of RE */
423 rest = slow(m, sp, stp, ss, es);
424 assert(rest != NULL); /* it did match */
425 /* could the rest match the rest? */
426 tail = slow(m, rest, stop, es, stopst);
430 stp = rest - 1;
436 if (slow(m, sp, rest, ssub, esub) != NULL)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
MultipartMimeContentImpl.java 122 String rest = nextPart.substring(position + off); local
124 if (rest == null)
126 // logger.debug("rest = [[" + rest + "]]");
128 ContentImpl content = new ContentImpl(rest, boundary);
  /external/svox/pico/lib/
picodata.c 700 picoos_int16 * restdur /* in/out, rest in ms */
704 picoos_int32 fact, rest; local
706 /* calculate rest and factor in number of frames (in PICODATA_PICODATA_PRECISION) */
707 rest = (*restdur) << (PICODATA_PRECISION - frame_duration_exp);
711 rest += fact * inout[i];
712 /* instead of rounding, we carry the rest to the next state */
713 inout[i] = rest >> PICODATA_PRECISION;
714 rest -= inout[i] << PICODATA_PRECISION;
716 (*restdur) = rest >> (PICODATA_PRECISION - frame_duration_exp);
726 picoos_int16 * restdur /* in/out, rest in ms *
730 picoos_int32 fact, rest, out, weighted_sum; local
    [all...]
  /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/linux-tools-perf/util/
parse-options.c 208 const char *rest; local
214 rest = skip_prefix(arg, options->long_name);
216 if (!rest)
218 if (*rest == '=')
220 if (*rest)
225 if (!rest) {
254 rest = skip_prefix(arg + 3, options->long_name);
256 if (!rest && !prefixcmp(options->long_name, arg + 3))
258 if (!rest)
261 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...]

Completed in 1343 milliseconds

1 2 3 45 6 7 8 91011>>