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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/
speech_rule.js 134 // Prep the rest of the parsing.
135 var rest = input.slice(3).trimLeft();
136 if (!rest) {
142 if (rest[0] == '"') {
143 var quotedString = cvox.SpeechRule.splitString_(rest, '\\(')[0].trim();
148 rest = rest.slice(quotedString.length).trim();
149 if (rest.indexOf('(') == -1) {
150 rest = '';
158 var bracket = rest.indexOf(' (')
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
reference_resolver.py 18 node_name, rest = node_name.split('.', 1)
20 rest = None
27 if rest is not None:
28 ret = _ClassifySchemaNode(rest, item)
  /external/chromium_org/net/ftp/
ftp_util.h 41 const base::string16& rest,
ftp_util.cc 228 const base::string16& rest,
248 if (!base::StringToInt(rest, &time_exploded.year)) {
251 if (rest.length() > 5)
254 size_t colon_pos = rest.find(':');
261 StringPiece16(rest.begin(), rest.begin() + colon_pos),
266 StringPiece16(rest.begin() + colon_pos + 1, rest.end()),
ftp_util_unittest.cc 126 const char* rest; member in struct:__anon13256::__anon13260
169 kTestCases[i].rest));
174 UTF8ToUTF16(kTestCases[i].rest), mock_current_time, &time));
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/H264/
bitstream_builder.h 41 void AddSuffix(const uint8_t numBits, const uint32_t rest);
  /external/mockito/src/org/mockito/internal/creation/jmock/
ClassImposterizer.java 139 private Class<?>[] prepend(Class<?> first, Class<?>... rest) {
140 Class<?>[] all = new Class<?>[rest.length+1];
142 System.arraycopy(rest, 0, all, 1, rest.length);
  /external/nist-sip/java/gov/nist/core/
HostNameParser.java 120 String rest = lexer.getRest(); local
122 if(rest == null || rest.length() == 0){
129 int stripLen = rest.indexOf(']');
  /external/qemu/ui/
keymaps.c 111 const char *rest = end_of_keysym + 1; local
113 int keycode = strtol(rest, &rest2, 0);
115 if (rest && strstr(rest, "numlock")) {
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
symshift.pl 196 ($sym,$rest) = ($1,$2);
199 $rest =~ s/[\!].*//;
200 next if $rest =~ /iscombined/; #filter out combined POS
201 if ($rest =~ /.*:PROP.*mapval\s*=\s*(\d+)/) {
  /external/libmtp/examples/
thumb.c 52 char *rest; local
63 id = strtoul(optarg, &rest, 0);
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
ClusterChainDirectory.java 99 final int rest = (int) (trueSize - toWrite); local
100 final ByteBuffer fill = ByteBuffer.allocate(rest);
  /external/guava/guava/src/com/google/common/base/
Joiner.java 142 A appendable, @Nullable Object first, @Nullable Object second, Object... rest)
144 return appendTo(appendable, iterable(first, second, rest));
203 StringBuilder builder, @Nullable Object first, @Nullable Object second, Object... rest) {
204 return appendTo(builder, iterable(first, second, rest));
252 public final String join(@Nullable Object first, @Nullable Object second, Object... rest) {
253 return join(iterable(first, second, rest));
537 final Object first, final Object second, final Object[] rest) {
538 checkNotNull(rest);
541 return rest.length + 2;
551 return rest[index - 2]
    [all...]
  /external/linux-tools-perf/perf-3.12.0/arch/hexagon/lib/
memcpy.S 173 #define rest R8 /* length - prolog bytes */ define
335 rest = sub(len, star3); /* whats left after the loop */ define
338 if(p0) rest = add(rest, #16);
343 p0 = cmp.gt(rest, #16);
348 rest = add(rest, #-8); define
371 rest = kernel; define
381 p3 = cmp.eq(kernel, rest);
415 rest = add(kernel, #-1) define
    [all...]
  /external/stlport/src/
num_get_float.cpp 345 uint64 rest; /* Remaining guard bits */ local
402 rest = value;
407 rest = value & ((ULL(1)<< 63)-1);
412 rest = value & (((ULL(1) << lead0)-1)-1);
418 if (guard && ((value & 1) || rest) ) {
429 rest = value & ((1 << 10) - 1);
434 /* value&1 guard rest Action
442 if (((value&1)!=0) || (rest!=0)) {
532 uint64_t rest = vv.i64 & ((~ULL(0) / ULL(2)) >> (limits::digits - 1)); local
537 /* value&1 guard rest Actio
599 uint64_t rest; local
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
num_get_float.cpp 345 uint64 rest; /* Remaining guard bits */ local
402 rest = value;
407 rest = value & ((ULL(1)<< 63)-1);
412 rest = value & (((ULL(1) << lead0)-1)-1);
418 if (guard && ((value & 1) || rest) ) {
429 rest = value & ((1 << 10) - 1);
434 /* value&1 guard rest Action
442 if (((value&1)!=0) || (rest!=0)) {
532 uint64_t rest = vv.i64 & ((~ULL(0) / ULL(2)) >> (limits::digits - 1)); local
537 /* value&1 guard rest Actio
599 uint64_t rest; local
    [all...]
  /external/llvm/lib/Support/
regengine.inc 303 const char *rest; /* start of rest of string */
304 const char *tail; /* string unmatched by rest of RE */
354 rest = slow(m, sp, stp, ss, es);
355 assert(rest != NULL); /* it did match */
356 /* could the rest match the rest? */
357 tail = slow(m, rest, stop, es, stopst);
361 stp = rest - 1;
367 if (slow(m, sp, rest, ssub, esub) != NULL)
    [all...]
  /bionic/libc/upstream-netbsd/lib/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...]
  /ndk/sources/host-tools/ndk-stack/regex/
engine.c 298 char *rest; /* start of rest of string */ local
299 char *tail; /* string unmatched by rest of RE */
349 rest = slow(m, sp, stp, ss, es);
350 assert(rest != NULL); /* it did match */
351 /* could the rest match the rest? */
352 tail = slow(m, rest, stop, es, stopst);
356 stp = rest - 1;
362 if (slow(m, sp, rest, ssub, esub) != NULL)
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
BodyDescriptor.java 156 String rest; local
159 rest = null;
162 rest = headerValue.substring(main.length() + 1);
166 if (rest != null) {
167 char[] chars = rest.toCharArray();
  /prebuilts/misc/common/swig/include/2.0.11/guile/
guile_scm_run.swg 477 SWIG_Guile_GetArgs (SCM *dest, SCM rest,
484 if (!SCM_CONSP(rest))
486 *dest++ = SCM_CAR(rest);
487 rest = SCM_CDR(rest);
490 for (i = 0; i<optargs && SCM_CONSP(rest); i++) {
491 *dest++ = SCM_CAR(rest);
492 rest = SCM_CDR(rest);
497 if (!SCM_NULLP(rest))
    [all...]
list-vector.i 84 SCM rest;
86 for (i = 0, rest = $input;
88 i++, rest = SCM_CDR(rest)) {
89 SCM swig_scm_value = SCM_CAR(rest);
336 SCM rest;
339 for (i = 0, rest = $input;
341 i++, rest = SCM_CDR(rest)) {
342 SCM swig_scm_value = SCM_CAR(rest);
    [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/tools/grit/grit/gather/
chrome_scaled_image.py 52 rest = []
61 rest.append(chunk)
62 return ''.join(first + special_chunks + rest)
  /external/fonttools/Lib/fontTools/ttLib/tables/
S_I_N_G_.py 30 dummy, rest = sstruct.unpack2(SINGFormat, data, self)
33 assert len(rest) == self.nameLength
34 self.baseGlyphName = tostr(rest)

Completed in 1479 milliseconds

1 23 4 5 6 7 8 91011>>