Searched refs:rest (Results 1 - 25 of 257) sorted by relevance

1234567891011

/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/libchrome/base/third_party/nspr/
H A Dprtime.cc475 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[
[all...]
/external/icu/icu4c/as_is/os400/
H A Dcxxfilt.cpp9 char *rest; local
10 struct Name *name = Demangle(str, rest); // "f__1XFi"
13 if(*rest) printf("\trest: '%s'\n", rest);
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph/
H A Dzipio.py66 rest = []
70 rest.append(bn)
84 rest.reverse()
85 return path, '/'.join(rest).strip('/')
97 path, rest = _locate(path)
98 if not rest:
111 data = zf.read(rest)
130 path, rest = _locate(path)
131 if not rest and not _os.path.isfile(path):
147 if rest i
[all...]
/external/libbrillo/brillo/dbus/
H A Ddbus_param_writer.h30 const RestOfParams&... rest) {
35 Append(writer, rest...);
49 const RestOfParams&... rest) {
53 AppendDBusOutParams(writer, rest...);
63 const RestOfParams&... rest) {
68 AppendDBusOutParams(writer, rest...);
28 Append(dbus::MessageWriter* writer, const ParamType& param, const RestOfParams&... rest) argument
47 AppendDBusOutParams(dbus::MessageWriter* writer, const ParamType& , const RestOfParams&... rest) argument
61 AppendDBusOutParams(dbus::MessageWriter* writer, ParamType* param, const RestOfParams&... rest) argument
/external/autotest/client/site_tests/platform_OpenSSLActual/
H A Dplatform_OpenSSLActual.py13 def curl(self, rest):
15 out = utils.system_output('%s %s' % (base, rest))
/external/webp/src/dsp/
H A Dargb_mips_dsp_r2.c21 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...]
/external/iproute2/ip/
H A Droutel18 while read network rest
19 do set xx $rest
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_mac.cc98 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, "
[all...]
/external/fonttools/Lib/fontTools/
H A DafmLib.py120 rest = line[pos:].strip()
124 self.parsechar(rest)
126 self.parsekernpair(rest)
128 self.parsecomposite(rest)
130 self.parseattr(word, rest)
132 def parsechar(self, rest):
133 m = charRE.match(rest)
135 raise error("syntax error in AFM file: " + repr(rest))
138 things.append(rest[fr:to])
144 def parsekernpair(self, rest)
[all...]
/external/fonttools/Tools/fontTools/
H A DafmLib.py120 rest = line[pos:].strip()
124 self.parsechar(rest)
126 self.parsekernpair(rest)
128 self.parsecomposite(rest)
130 self.parseattr(word, rest)
132 def parsechar(self, rest):
133 m = charRE.match(rest)
135 raise error("syntax error in AFM file: " + repr(rest))
138 things.append(rest[fr:to])
144 def parsekernpair(self, rest)
[all...]
/external/swiftshader/third_party/LLVM/lib/Support/
H A DStringExtras.cpp64 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);
/external/jcommander/src/test/java/com/beust/jcommander/
H A DMethodSetterTest.java26 public void setRest(List<String> rest) {
27 this.rest = rest;
30 // return this.rest;
32 public List<String> rest;
35 String[] argv = { "-pairs", "pair0", "pair1", "rest" };
41 Assert.assertEquals(args.rest.size(), 1);
42 Assert.assertEquals(args.rest.get(0), "rest");
/external/ltp/pan/cgi/
H A Dresults.cgi67 @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/
H A DCallIDParser.java74 String rest = lexer.getRest();
75 callID.setCallId(rest.trim());
/external/jcommander/src/test/java/com/beust/jcommander/args/
H A DArgsArityInteger.java36 public List<String> rest; field in class:ArgsArityInteger
H A DArgsArityString.java36 public List<String> rest; field in class:ArgsArityString
/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.c152 size_t rest; local
196 rest = size;
198 assert(rest > 0);
203 assert(rest <= peer_b->len);
204 if (peer_b->offset + rest <= peer_b->size) {
205 chunk = rest;
224 assert(chunk == rest);
227 rest -= chunk;
228 } while (rest);
235 size_t rest; local
[all...]
/external/curl/docs/examples/
H A Dversion-check.pl45 my ($sym, $rest)=($1, $2);
46 my @a=split(/ +/, $rest);
/external/curl/docs/libcurl/
H A Dmksymbolsmanpage.pl73 my ($symbol, $rest)=($1,$2);
75 if($rest =~ s/^([0-9.]*) *//) {
78 if($rest =~ s/^([0-9.]*) *//) {
81 if($rest =~ s/^([0-9.]*) *//) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
H A Drunrc.cmd21 parse arg name path rest
28 if rest \= '' then do
/external/mksh/src/
H A Dcheck.pl477 local($type, $perm, $rest, $c, $len, $name);
483 ($type, $perm, $rest) =
485 $c = substr($rest, 0, 1);
486 $len = index($rest, $c, 1) - 1;
487 $name = substr($rest, 1, $len);
488 $rest = substr($rest, 2 + $len);
491 return undef if !&write_file($name, $rest);
505 local($ret) = symlink($rest, $name);
998 local($type, $perm, $rest,
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DUnicodeSetStringSpan.java398 int pos = spanLimit, rest = length - spanLimit;
424 if (inc > rest) {
429 if (inc == rest) {
463 if (inc > rest || overlap < maxOverlap) {
482 rest -= maxInc;
483 if (rest == 0) {
509 if (spanLength == rest || // Reached the end of the string, or
515 rest -= spanLength;
521 spanLength = spanOne(spanSet, s, pos, rest);
523 if (spanLength == rest) {
[all...]
/external/icu/icu4c/source/common/
H A Dunisetspan.cpp649 int32_t pos=spanLength, rest=length-pos; local
673 if(inc>rest) {
678 if(inc==rest) {
712 if(inc>rest || overlap<maxOverlap) {
732 rest-=maxInc;
733 if(rest==0) {
757 spanLength=spanSet.span(s+pos, rest, USET_SPAN_CONTAINED);
758 if( spanLength==rest || // Reached the end of the string, or
764 rest-=spanLength;
770 spanLength=spanOne(spanSet, s+pos, rest);
971 int32_t pos=spanLength, rest=length-pos; local
1342 int32_t pos=0, rest=length; local
1426 int32_t pos=0, rest=length; local
[all...]

Completed in 817 milliseconds

1234567891011