HomeSort by relevance Sort by last modified time
    Searched defs:rest (Results 1 - 25 of 323) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_symbolizer_test.cc 22 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/icu/icu4c/as_is/os400/
cxxfilt.cpp 7 char *rest; local
8 struct Name *name = Demangle(str, rest); // "f__1XFi"
11 if(*rest) printf("\trest: '%s'\n", rest);
  /external/jcommander/src/test/java/com/beust/jcommander/args/
ArgsArityInteger.java 35 @Parameter(description = "Rest")
36 public List<String> rest; field in class:ArgsArityInteger
ArgsArityString.java 35 @Parameter(description = "Rest")
36 public List<String> rest; field in class:ArgsArityString
  /external/nist-sip/java/gov/nist/javax/sip/parser/
CallIDParser.java 74 String rest = lexer.getRest(); local
75 callID.setCallId(rest.trim());
  /external/chromium-trace/catapult/third_party/vinn/vinn/
path_utils.js 104 var rest = a.substring(relTo.length + 1); variable
105 if (rest.length === 0)
107 return this.normPath(rest);
  /external/libmtp/examples/
newplaylist.c 44 char *rest; local
59 ids[(idcount-1)] = strtoul(optarg, &rest, 0);
thumb.c 52 char *rest; local
63 id = strtoul(optarg, &rest, 0);
albumart.c 54 char *rest; local
70 ids[(idcount-1)] = strtoul(optarg, &rest, 0);
pathutils.c 65 char *rest; local
70 item_id = strtoul(path, &rest, 0);
71 // really should check contents of "rest" here...
  /external/webp/src/dsp/
argb_mips_dsp_r2.c 21 const int rest = len & 1; local
22 const uint32_t* const loop_end = out + len - rest;
40 "beq %[rest], $zero, 1f \n\t"
53 [loop_end]"r"(loop_end), [rest]"r"(rest)
61 const int rest = len & 1; local
63 const uint32_t* const loop_end = out + len - rest;
79 "beq %[rest], $zero, 1f \n\t"
91 [loop_end]"r"(loop_end), [rest]"r"(rest)
    [all...]
  /build/kati/
rule.cc 85 StringPiece rest = line.substr(index); local
86 size_t term_index = rest.find_first_of("=;");
87 if ((term_index != string::npos && rest[term_index] == '=') ||
90 term_index = rest.size();
92 ParseAssignStatement(rest, term_index,
108 CHECK(rest[term_index] == ';');
111 NewLiteral(Intern(TrimLeftSpace(rest.substr(term_index + 1))).str()));
112 rest = rest.substr(0, term_index);
115 index = rest.find(':')
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer_mac.cc 121 const char *rest = trim; local
123 rest = ExtractTokenUpToDelimiter(rest, " (in ", &symbol_name);
124 if (rest[0] == '\0') {
134 rest = ExtractTokenUpToDelimiter(rest, ") ", out_module);
136 if (rest[0] == '(') {
138 rest++;
139 rest = ExtractTokenUpToDelimiter(rest, ":", out_file)
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
filters_neon.c 65 int rest = (n - i) % 8; local
67 x_end0 = x_start + n - i - rest;
85 if (rest >= 4) {
  /external/clang/test/SemaCXX/
discrim-union.cpp 27 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/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/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/gxvalid/
gxvmort.c 184 FT_UInt rest; local
199 rest = length - ( 2 + 2 + 4 );
201 GXV_LIMIT_CHECK( rest );
211 func( p, p + rest, gxvalid );
213 p += rest;
gxvmorx.c 75 FT_ULong rest; local
91 rest = length - ( 4 + 4 + 4 );
92 GXV_LIMIT_CHECK( rest );
104 func( p, p + rest, gxvalid );
107 p += rest;
  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_C40Encoder.cpp 95 int32_t rest = buffer.GetLength() % 3; local
102 if (rest == 2) {
110 } else if (available == 1 && rest == 1) {
118 } else if (rest == 0) {
  /external/webrtc/webrtc/base/
stringencode_unittest.cc 320 std::string rest; local
322 ASSERT_TRUE(tokenize_first("A &*${}", ' ', &token, &rest));
324 ASSERT_STREQ("&*${}", rest.c_str());
326 ASSERT_TRUE(tokenize_first("A B& *${}", ' ', &token, &rest));
328 ASSERT_STREQ("B& *${}", rest.c_str());
330 ASSERT_TRUE(tokenize_first("A B& *${} ", ' ', &token, &rest));
332 ASSERT_STREQ("B& *${} ", rest.c_str());
337 std::string rest; local
339 ASSERT_TRUE(tokenize_first(" A B C", ' ', &token, &rest));
341 ASSERT_STREQ("A B C", rest.c_str())
350 std::string rest; local
    [all...]
  /external/jcommander/src/test/java/com/beust/jcommander/
MethodSetterTest.java 25 @Parameter(description = "Rest")
26 public void setRest(List<String> rest) {
27 this.rest = rest;
30 // return this.rest;
32 public List<String> rest; field in class:MethodSetterTest.ArgsArityStringSetter
35 String[] argv = { "-pairs", "pair0", "pair1", "rest" };
41 Assert.assertEquals(args.rest.size(), 1);
42 Assert.assertEquals(args.rest.get(0), "rest");
    [all...]
  /cts/tests/tests/text/src/android/text/style/cts/
LeadingMarginSpan_StandardTest.java 46 int rest = 5; local
48 Standard standard = new LeadingMarginSpan.Standard(first, rest);
50 assertEquals(rest, standard.getLeadingMargin(false));
  /external/guava/guava/src/com/google/common/collect/
Lists.java 298 * rest} array will be reflected in the returned list. Unlike {@link
308 * @param rest an array of additional elements, possibly empty
311 public static <E> List<E> asList(@Nullable E first, E[] rest) {
312 return new OnePlusArrayList<E>(first, rest);
319 final E[] rest; field in class:Lists.OnePlusArrayList
321 OnePlusArrayList(@Nullable E first, E[] rest) {
323 this.rest = checkNotNull(rest);
326 return rest.length + 1;
331 return (index == 0) ? first : rest[index - 1]
363 final E[] rest; field in class:Lists.TwoPlusArrayList
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Lists.java 264 * rest} array will be reflected in the returned list. Unlike {@link
274 * @param rest an array of additional elements, possibly empty
277 public static <E> List<E> asList(@Nullable E first, E[] rest) {
278 return new OnePlusArrayList<E>(first, rest);
285 final E[] rest; field in class:Lists.OnePlusArrayList
287 OnePlusArrayList(@Nullable E first, E[] rest) {
289 this.rest = checkNotNull(rest);
292 return rest.length + 1;
297 return (index == 0) ? first : rest[index - 1]
329 final E[] rest; field in class:Lists.TwoPlusArrayList
    [all...]
  /external/ltrace/sysdeps/linux-gnu/arm/
fetch.c 239 const size_t rest = (words - i) * 4; local
240 if (rest > 0) {
241 umovebytes(proc, ctx->nsaa, data, rest);
242 ctx->nsaa += rest;

Completed in 412 milliseconds

1 2 3 4 5 6 7 8 91011>>