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

1 23 4 5 6 7 8 9

  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
ST.stg 83 <rest(alts):{it | el<rewriteTemplateAlt(it)>}>
88 <rest(alts):{it | el<rewriteTemplateAlt(it)>}>
AST.stg 185 <rest(alts):{a | el<rewriteAltRest(a)>}; anchor, separator="\n\n">
429 //<else><if (!rest(args))>self._adaptor.createFromType(<tokenType>, <first(args)>)
430 //<else><if (!rest(rest(args)))>self._adaptor.createFromToken(<tokenType>, <first(args)>, <first(rest(args))>)
443 <else><if (!rest(args))>self._adaptor.createFromToken(<token>, <first(args)>)
444 <else><if (!rest(rest(args)))>self._adaptor.createFromToken(<token>, <first(args)>, <first(rest(args))>)
  /external/guava/guava/src/com/google/common/collect/
Lists.java 226 * rest} array will be reflected in the returned list. Unlike {@link
236 * @param rest an array of additional elements, possibly empty
239 public static <E> List<E> asList(@Nullable E first, E[] rest) {
240 return new OnePlusArrayList<E>(first, rest);
247 final E[] rest; field in class:Lists.OnePlusArrayList
249 OnePlusArrayList(@Nullable E first, E[] rest) {
251 this.rest = checkNotNull(rest);
254 return rest.length + 1;
259 return (index == 0) ? first : rest[index - 1]
291 final E[] rest; field in class:Lists.TwoPlusArrayList
    [all...]
Ordering.java 151 * @param remainingValuesInOrder the rest of the values that the returned
621 * @param a value to compare, returned if greater than or equal to the rest.
624 * @param rest values to compare
629 @Nullable E a, @Nullable E b, @Nullable E c, E... rest) {
632 for (E r : rest) {
698 * @param a value to compare, returned if less than or equal to the rest.
701 * @param rest values to compare
706 @Nullable E a, @Nullable E b, @Nullable E c, E... rest) {
709 for (E r : rest) {
  /external/grub/stage2/
fsys_jfs.c 275 char *ptr, *rest, ch; local
332 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
333 *rest = 0;
370 *(dirname = rest) = ch;
379 *rest = ch;
fsys_xfs.c 544 char *rest, *name, ch; local
591 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
592 *rest = 0;
608 *(dirname = rest) = ch;
617 *rest = ch;
fsys_reiserfs.c 466 * we can still read the rest from the disk on demand.
997 char *rest, ch; local
    [all...]
  /external/llvm/lib/Support/
StringRef.cpp 261 StringRef rest = *this;
263 // rest.data() is used to distinguish cases like "a," that splits into
266 rest.data() != NULL && (MaxSplit < 0 || splits < MaxSplit);
268 std::pair<StringRef, StringRef> p = rest.split(Separators);
272 rest = p.second;
275 if (rest.data() != NULL && (rest.size() != 0 || KeepEmpty))
276 A.push_back(rest);
  /external/icu4c/common/
filterednormalizer2.cpp 143 UnicodeString rest(second.tempSubString(prefixLimit, INT32_MAX));
145 normalize(rest, first, USET_SPAN_NOT_CONTAINED, errorCode);
147 first.append(rest);
  /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...]
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapResponseParser.java 303 String rest = readUntilEol(); local
304 if (!TextUtils.isEmpty(rest)) {
305 // The rest is free-form text.
306 responseToDestroy.add(new ImapSimpleString(rest));
  /external/libffi/src/powerpc/
ffi.c 426 we use GPR registers, then continues at rest. */
429 valp rest; local
458 rest.ul = stack + 6 + NUM_GPR_ARG_REGISTERS64;
484 next_arg.ul = rest.ul;
495 next_arg.ul = rest.ul;
507 next_arg.ul = rest.ul;
514 next_arg.ul = rest.ul;
529 memcpy (rest.c, *p_argv.c + first, (*ptr)->size - first);
530 next_arg.c = rest.c + words * 8 - first;
544 next_arg.ul = rest.ul
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
stun.cc 168 size_t rest = buf->Length() - length_; local
169 while (buf->Length() > rest) {
183 if (buf->Length() != rest) {
185 LOG(LERROR) << "wrong message length (" << rest << " != " << buf->Length()
  /external/v8/test/mjsunit/
array-shift.js 57 // ... but keeps the rest as holes:
98 // ... but keeps the rest as holes:
  /ndk/sources/host-tools/make-3.81/glob/
glob.c 391 const char *rest;
414 rest after the closing brace. */
426 rest = next;
427 while (*rest != '}')
429 rest = next_brace_sub (rest + 1);
430 if (rest == NULL)
441 rest_len = strlen (++rest) + 1;
465 mempcpy (mempcpy (alt_start, p, next - p), rest, rest_len);
468 memcpy (&alt_start[next - p], rest, rest_len)
390 const char *rest; local
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableSetTest.java 69 String e4, String e5, String e6, String... rest) {
70 return ImmutableSet.of(e1, e2, e3, e4, e5, e6, rest);
  /external/libmtp/examples/
pathutils.c 65 char *rest; local
70 item_id = strtoul(path, &rest, 0);
71 // really should check contents of "rest" here...
  /external/v8/tools/
gen-postmortem-metadata.py 336 rest = call[idx + 1: len(call) - 1];
337 args = re.split('\s*,\s*', rest);
  /external/aac/libSBRenc/src/
fram_gen.cpp 231 INT rest);
1081 INT j, rest, segm, S, s = 0, bord; local
    [all...]
  /external/icu4c/test/perf/perldriver/
Output.pm 187 my ($t, $rest);
188 ($t, $rest) = split(/\.\w+/, $0);
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLTableElement10.js 79 rest of the document.
table33.js 78 Specifies the table's position with respect to the rest of the document.
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLTableElement10.js 79 rest of the document.
table33.js 78 Specifies the table's position with respect to the rest of the document.
  /libcore/luni/src/main/java/java/lang/
IntegralToString.java 378 int rest = ((int) ((n - midDigit) >>> 1)) * 0xCCCCCCCD; local
379 cursor = intIntoCharArray(buf, cursor, rest);

Completed in 700 milliseconds

1 23 4 5 6 7 8 9