HomeSort by relevance Sort by last modified time
    Searched refs:rest (Results 1 - 25 of 988) 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...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
macro-pld.s 1 .macro foo arg, rest:vararg
2 \rest
  /external/libchrome/base/third_party/nspr/
prtime.cc 475 const char *rest = string; local
482 while (*rest)
490 switch (*rest)
494 (rest[1] == 'p' || rest[1] == 'P') &&
495 (rest[2] == 'r' || rest[2] == 'R'))
498 (rest[1] == 's' || rest[1] == 'S') &&
499 (rest[2] == 't' || rest[2] == 'T')
    [all...]
  /external/icu/icu4c/as_is/os400/
cxxfilt.cpp 9 char *rest; local
10 struct Name *name = Demangle(str, rest); // "f__1XFi"
13 if(*rest) printf("\trest: '%s'\n", rest);
  /external/libbrillo/brillo/dbus/
dbus_param_writer.h 30 const RestOfParams&... rest) {
35 Append(writer, rest...);
49 const RestOfParams&... rest) {
53 AppendDBusOutParams(writer, rest...);
63 const RestOfParams&... rest) {
68 AppendDBusOutParams(writer, rest...);
  /external/autotest/client/site_tests/platform_OpenSSLActual/
platform_OpenSSLActual.py 13 def curl(self, rest):
15 out = utils.system_output('%s %s' % (base, rest))
  /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...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/libshaderc_util/src/
message.cc 58 string_piece rest(*message);
59 size_t colon_after_source = rest.find_first_of(':');
62 string_piece source = rest.substr(0, colon_after_source);
63 rest = rest.substr(colon_after_source + 1);
64 size_t colon_after_line = rest.find_first_of(':');
65 if (source.size() == 1 && ::isalpha(source.front()) && rest.size() > 0 &&
66 rest.front() == '\\') {
70 rest = rest.substr(colon_after_line + 1)
90 const string_piece rest = message.substr(space_loc + 1); local
195 string_piece rest; local
    [all...]
  /external/iproute2/ip/
routel 18 while read network rest
19 do set xx $rest
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
update.py 44 def process(self, lineno, rest):
47 self.filename, lineno, rest),
52 self.filename, lineno, rest),
54 if self.lines[i] == rest:
56 self.filename, lineno, rest),
63 self.lines[i] = rest
  /external/python/cpython2/Demo/scripts/
update.py 44 def process(self, lineno, rest):
47 self.filename, lineno, rest),
52 self.filename, lineno, rest),
54 if self.lines[i] == rest:
56 self.filename, lineno, rest),
63 self.lines[i] = rest
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer_mac.cc 98 const char *rest = trim; local
100 rest = ExtractTokenUpToDelimiter(rest, " (in ", &symbol_name);
101 if (rest[0] == '\0') {
111 rest = ExtractTokenUpToDelimiter(rest, ") ", out_module);
113 if (rest[0] == '(') {
115 rest++;
116 rest = ExtractTokenUpToDelimiter(rest, ":", out_file)
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue8428.go 16 char rest[];
22 char rest[0];
39 // The trailing rest field is not available in cgo.
41 // rest: [0]C.char{},
47 rest: [0]C.char{},
  /prebuilts/go/linux-x86/misc/cgo/test/
issue8428.go 16 char rest[];
22 char rest[0];
39 // The trailing rest field is not available in cgo.
41 // rest: [0]C.char{},
47 rest: [0]C.char{},
  /build/kati/
rule.cc 85 StringPiece rest = line.substr(index); local
86 size_t term_index = rest.find_first_of("=;");
88 if ((term_index != string::npos && rest[term_index] == '=') ||
91 term_index = rest.size();
103 rest = line.substr(index);
107 ParseAssignStatement(rest, term_index,
124 CHECK(rest[term_index] == ';');
127 NewLiteral(Intern(TrimLeftSpace(rest.substr(term_index + 1))).str()));
128 rest = rest.substr(0, term_index)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
StringExtras.cpp 64 StringRef rest = *this; local
66 // rest.data() is used to distinguish cases like "a," that splits into
69 rest.data() != NULL && (MaxSplit < 0 || splits < MaxSplit);
71 std::pair<llvm::StringRef, llvm::StringRef> p = rest.split(Separators);
75 rest = p.second;
78 if (rest.data() != NULL && (rest.size() != 0 || KeepEmpty))
79 A.push_back(rest);
  /frameworks/base/core/java/com/android/internal/util/
LineBreakBufferedWriter.java 149 int rest = bufferSize - bufferIndex; local
150 appendToBuffer(buf, off, rest);
153 off += rest;
154 len -= rest;
203 int rest = bufferSize - bufferIndex; local
204 appendToBuffer(s, off, rest);
207 off += rest;
208 len -= rest;
275 int rest = bufferIndex - i; local
276 if (rest > 0)
    [all...]
  /art/tools/
generate-operator-out.py 139 rest = m.group(2).strip()
140 m_literal = re.compile(r'= (0x[0-9a-f]+|-?[0-9]+|\'.\')').search(rest)
142 rest = rest[(len(m_literal.group(0))):]
146 if rest.startswith('= k'):
150 if rest.startswith(','):
151 rest = rest[1:]
152 rest = rest.strip(
    [all...]
  /frameworks/support/tv-provider/src/android/support/media/tv/
CollectionUtils.java 36 public static <T> T[] concatAll(T[] first, T[]... rest) {
38 for (T[] array : rest) {
43 for (T[] array : rest) {
  /system/core/healthd/
AnimationParser.cpp 40 bool remove_prefix(const std::string& line, const char* prefix, const char** rest) {
50 *rest = &str[start];
93 const char* rest; local
97 } else if (remove_prefix(line, animation_prefix, &rest)) {
99 if (sscanf(rest, "%d %d %n%*s%n", &anim->num_cycles, &anim->first_frame_repeats,
105 anim->animation_file.assign(&rest[start], end - start);
107 } else if (remove_prefix(line, fail_prefix, &rest)) {
108 anim->fail_file.assign(rest);
109 } else if (remove_prefix(line, clock_prefix, &rest)) {
110 if (!parse_text_field(rest, &anim->text_clock))
    [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...]
  /art/test/ti-agent/
common_load.cc 101 char* rest = options; local
103 while (*rest != '\0' && *rest != ',') {
104 rest++;
106 if (*rest == ',') {
107 *rest = '\0';
108 rest++;
110 *other_options = rest;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
fixps.py 22 rest = f.read()
29 f.write(rest)
  /external/ltp/pan/cgi/
results.cgi 67 @rest = <DF>;
70 foreach (@rest) { s/\*/{/; }
71 foreach (@rest) { s/(\s)-(\s)/\1}\2/; }
72 @rest = sort @rest;
73 foreach (@rest) { s/{/*/; }
74 foreach (@rest) { s/}/-/; }
77 foreach (@rest) {
  /external/nist-sip/java/gov/nist/javax/sip/parser/
CallIDParser.java 74 String rest = lexer.getRest(); local
75 callID.setCallId(rest.trim());

Completed in 1717 milliseconds

1 2 3 4 5 6 7 8 91011>>