Searched defs:rest (Results 1 - 25 of 74) sorted by relevance

123

/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_symbolizer_test.cc22 const char *rest; local
24 rest = ExtractToken("a;b;c", ";", &token);
26 EXPECT_STREQ("b;c", rest);
29 rest = ExtractToken("aaa-bbb.ccc", ";.-*", &token);
31 EXPECT_STREQ("bbb.ccc", rest);
37 const char *rest = ExtractInt("123,456;789", ";,", &token); local
39 EXPECT_STREQ("456;789", rest);
44 const char *rest = ExtractUptr("123,456;789", ";,", &token); local
46 EXPECT_STREQ("456;789", rest);
51 const char *rest local
[all...]
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/vinn/
H A Dpath_utils.js104 var rest = a.substring(relTo.length + 1); variable
105 if (rest.length === 0)
107 return this.normPath(rest);
/external/guava/guava-testlib/src/com/google/common/testing/
H A DEquivalenceTester.java83 public EquivalenceTester<T> addEquivalenceGroup(T first, T... rest) { argument
84 addEquivalenceGroup(Lists.asList(first, rest));
/external/libmtp/examples/
H A Dnewplaylist.c44 char *rest; local
59 ids[(idcount-1)] = strtoul(optarg, &rest, 0);
H A Dthumb.c52 char *rest; local
63 id = strtoul(optarg, &rest, 0);
H A Dalbumart.c54 char *rest; local
70 ids[(idcount-1)] = strtoul(optarg, &rest, 0);
H A Dpathutils.c65 char *rest; local
70 item_id = strtoul(path, &rest, 0);
71 // really should check contents of "rest" here...
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp23.cpp7 void print(T first, Ts... rest) { argument
9 print(rest...);
/external/clang/test/SemaCXX/
H A Ddiscrim-union.cpp27 either_impl<Ts...> rest; member in union:detail::either_impl
34 constexpr either_impl(select<N>, U &&u) : rest(select<N-1>(), move(u)) {}
39 return decltype(rest)::index(t) + 1;
44 rest.destroy(elem - 1);
50 template<unsigned N> constexpr const decltype(static_cast<const rest_t&>(rest).get(select<N-1>{})) get(select<N>) {
51 return rest.get(select<N-1>{});
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_mac.cc109 const char *rest = trim; local
111 rest = ExtractTokenUpToDelimiter(rest, " (in ", &function_name);
116 rest = ExtractTokenUpToDelimiter(rest, ") ", &res->info.module);
118 if (rest[0] == '(') {
119 rest++;
120 rest = ExtractTokenUpToDelimiter(rest, ":", &res->info.file);
122 rest
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DReverseNaturalOrdering.java52 @Override public <E extends Comparable> E min(E a, E b, E c, E... rest) { argument
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) { argument
69 return NaturalOrdering.INSTANCE.min(a, b, c, rest);
H A DReverseOrdering.java52 @Override public <E extends T> E min(E a, E b, E c, E... rest) { argument
53 return forwardOrder.max(a, b, c, rest);
68 @Override public <E extends T> E max(E a, E b, E c, E... rest) { argument
69 return forwardOrder.min(a, b, c, rest);
H A DOrdering.java180 * @param remainingValuesInOrder the rest of the values that the returned
504 * @param a value to compare, returned if less than or equal to the rest.
507 * @param rest values to compare
512 @Nullable E a, @Nullable E b, @Nullable E c, E... rest) {
515 for (E r : rest) {
580 * @param a value to compare, returned if greater than or equal to the rest.
583 * @param rest values to compare
588 @Nullable E a, @Nullable E b, @Nullable E c, E... rest) {
591 for (E r : rest) {
511 min( @ullable E a, @Nullable E b, @Nullable E c, E... rest) argument
587 max( @ullable E a, @Nullable E b, @Nullable E c, E... rest) argument
H A DLists.java263 * rest} array will be reflected in the returned list. Unlike {@link
273 * @param rest an array of additional elements, possibly empty
276 public static <E> List<E> asList(@Nullable E first, E[] rest) { argument
277 return new OnePlusArrayList<E>(first, rest);
284 final E[] rest; field in class:Lists.OnePlusArrayList
286 OnePlusArrayList(@Nullable E first, E[] rest) { argument
288 this.rest = checkNotNull(rest);
291 return rest.length + 1;
296 return (index == 0) ? first : rest[inde
318 asList( @ullable E first, @Nullable E second, E[] rest) argument
328 final E[] rest; field in class:Lists.TwoPlusArrayList
330 TwoPlusArrayList(@ullable E first, @Nullable E second, E[] rest) argument
[all...]
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableSetTest.java67 String e4, String e5, String e6, String... rest) {
68 return ImmutableSet.of(e1, e2, e3, e4, e5, e6, rest);
66 of(String e1, String e2, String e3, String e4, String e5, String e6, String... rest) argument
H A DAbstractImmutableSetTest.java51 String e5, String e6, String... rest);
50 of(String e1, String e2, String e3, String e4, String e5, String e6, String... rest) argument
/external/mockito/src/org/mockito/internal/creation/jmock/
H A DClassImposterizer.java139 private Class<?>[] prepend(Class<?> first, Class<?>... rest) { argument
140 Class<?>[] all = new Class<?>[rest.length+1];
142 System.arraycopy(rest, 0, all, 1, rest.length);
/external/guava/guava/src/com/google/common/base/
H A DJoiner.java129 A appendable, @Nullable Object first, @Nullable Object second, Object... rest)
131 return appendTo(appendable, iterable(first, second, rest));
174 StringBuilder builder, @Nullable Object first, @Nullable Object second, Object... rest) {
175 return appendTo(builder, iterable(first, second, rest));
208 public final String join(@Nullable Object first, @Nullable Object second, Object... rest) { argument
209 return join(iterable(first, second, rest));
438 final Object first, final Object second, final Object[] rest) {
439 checkNotNull(rest);
442 return rest.length + 2;
452 return rest[inde
128 appendTo( A appendable, @Nullable Object first, @Nullable Object second, Object... rest) argument
173 appendTo( StringBuilder builder, @Nullable Object first, @Nullable Object second, Object... rest) argument
437 iterable( final Object first, final Object second, final Object[] rest) argument
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableSetTest.java117 String e4, String e5, String e6, String... rest) {
118 return ImmutableSet.of(e1, e2, e3, e4, e5, e6, rest);
116 of(String e1, String e2, String e3, String e4, String e5, String e6, String... rest) argument
H A DAbstractImmutableSetTest.java55 String e5, String e6, String... rest);
54 of(String e1, String e2, String e3, String e4, String e5, String e6, String... rest) argument
/external/linux-tools-perf/src/tools/perf/util/
H A Dparse-options.c209 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/ltrace/sysdeps/linux-gnu/arm/
H A Dfetch.c239 const size_t rest = (words - i) * 4; local
240 if (rest > 0) {
241 umovebytes(proc, ctx->nsaa, data, rest);
242 ctx->nsaa += rest;
/external/v8/src/
H A Dfast-dtoa.cc37 // * rest = (too_high - buffer * 10^kappa).f() * unit
47 uint64_t rest,
69 // . . . . rest
120 // Conceptually rest ~= too_high - buffer
123 DCHECK(rest <= unsafe_interval);
124 while (rest < small_distance && // Negated condition 1
125 unsafe_interval - rest >= ten_kappa && // Negated condition 2
126 (rest + ten_kappa < small_distance || // buffer{-1} > w_high
127 small_distance - rest >= rest
43 RoundWeed(Vector<char> buffer, int length, uint64_t distance_too_high_w, uint64_t unsafe_interval, uint64_t rest, uint64_t ten_kappa, uint64_t unit) argument
163 RoundWeedCounted(Vector<char> buffer, int length, uint64_t rest, uint64_t ten_kappa, uint64_t unit, int* kappa) argument
418 uint64_t rest = local
533 uint64_t rest = local
[all...]
/external/boringssl/src/crypto/bio/
H A Dpair.c367 size_t rest; local
404 rest = bio_zero_copy_get_write_buf(b, &dummy_write_buf, &dummy_write_offset);
406 if (bytes_written > rest) {
421 size_t rest; local
465 rest = size;
467 assert(rest > 0);
472 assert(rest <= peer_b->len);
473 if (peer_b->offset + rest <= peer_b->size) {
474 chunk = rest;
496 assert(chunk == rest);
507 size_t rest; local
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DLists.java229 * rest} array will be reflected in the returned list. Unlike {@link
239 * @param rest an array of additional elements, possibly empty
242 public static <E> List<E> asList(@Nullable E first, E[] rest) { argument
243 return new OnePlusArrayList<E>(first, rest);
250 final E[] rest; field in class:Lists.OnePlusArrayList
252 OnePlusArrayList(@Nullable E first, E[] rest) { argument
254 this.rest = checkNotNull(rest);
257 return rest.length + 1;
262 return (index == 0) ? first : rest[inde
284 asList( @ullable E first, @Nullable E second, E[] rest) argument
294 final E[] rest; field in class:Lists.TwoPlusArrayList
296 TwoPlusArrayList(@ullable E first, @Nullable E second, E[] rest) argument
[all...]

Completed in 762 milliseconds

123