Home
last modified time | relevance | path

Searched refs:end (Results 1 – 25 of 8342) sorted by relevance

12345678910>>...334

/external/libcxx/test/std/re/re.traits/
Disctype.pass.cpp25 assert( t.isctype('_', t.lookup_classname(s.begin(), s.end()))); in main()
26 assert( t.isctype('a', t.lookup_classname(s.begin(), s.end()))); in main()
27 assert( t.isctype('Z', t.lookup_classname(s.begin(), s.end()))); in main()
28 assert( t.isctype('5', t.lookup_classname(s.begin(), s.end()))); in main()
29 assert(!t.isctype(' ', t.lookup_classname(s.begin(), s.end()))); in main()
30 assert(!t.isctype('-', t.lookup_classname(s.begin(), s.end()))); in main()
31 assert(!t.isctype('@', t.lookup_classname(s.begin(), s.end()))); in main()
34 assert(!t.isctype('_', t.lookup_classname(s.begin(), s.end()))); in main()
35 assert( t.isctype('a', t.lookup_classname(s.begin(), s.end()))); in main()
36 assert( t.isctype('Z', t.lookup_classname(s.begin(), s.end()))); in main()
[all …]
/external/lzma/CPP/Common/
DStringToInt.cpp12 uintType ConvertStringTo ## uintType(const charType *s, const charType **end) throw() { \
13 if (end) *end = s; \
17 if (c < '0' || c > '9') { if (end) *end = s; return res; } \
29 Int32 ConvertStringToInt32(const wchar_t *s, const wchar_t **end) throw() in CONVERT_STRING_TO_UINT_FUNC()
31 if (end) in CONVERT_STRING_TO_UINT_FUNC()
32 *end = s; in CONVERT_STRING_TO_UINT_FUNC()
47 if (end) in CONVERT_STRING_TO_UINT_FUNC()
48 *end = end2; in CONVERT_STRING_TO_UINT_FUNC()
54 UInt32 ConvertOctStringToUInt32(const char *s, const char **end) throw() in ConvertOctStringToUInt32() argument
56 if (end) in ConvertOctStringToUInt32()
[all …]
/external/curl/lib/
Dx509asn1.c108 const char * beg, const char * end) in Curl_getASN1Element() argument
119 if(beg >= end || !*beg) in Curl_getASN1Element()
133 if(beg >= end) in Curl_getASN1Element()
144 while(beg < end && *beg) { in Curl_getASN1Element()
145 beg = Curl_getASN1Element(&lelem, beg, end); in Curl_getASN1Element()
149 if(beg >= end) in Curl_getASN1Element()
151 elem->end = beg; in Curl_getASN1Element()
154 else if(beg + b > end) in Curl_getASN1Element()
165 if((unsigned long) (end - beg) < len) in Curl_getASN1Element()
168 elem->end = beg + len; in Curl_getASN1Element()
[all …]
Dstrtoofft.c57 char *end; in curlx_strtoll() local
65 end = (char *)nptr; in curlx_strtoll()
66 while(ISSPACE(end[0])) { in curlx_strtoll()
67 end++; in curlx_strtoll()
71 if(end[0] == '-') { in curlx_strtoll()
73 end++; in curlx_strtoll()
75 else if(end[0] == '+') { in curlx_strtoll()
76 end++; in curlx_strtoll()
78 else if(end[0] == '\0') { in curlx_strtoll()
81 *endptr = end; in curlx_strtoll()
[all …]
/external/harfbuzz_ng/src/
Dhb-shape.cc49 parse_space (const char **pp, const char *end) in parse_space() argument
51 while (*pp < end && ISSPACE (**pp)) in parse_space()
57 parse_char (const char **pp, const char *end, char c) in parse_char() argument
59 parse_space (pp, end); in parse_char()
61 if (*pp == end || **pp != c) in parse_char()
69 parse_uint (const char **pp, const char *end, unsigned int *pv) in parse_uint() argument
72 unsigned int len = MIN (ARRAY_LENGTH (buf) - 1, (unsigned int) (end - *pp)); in parse_uint()
93 parse_bool (const char **pp, const char *end, unsigned int *pv) in parse_bool() argument
95 parse_space (pp, end); in parse_bool()
98 while (*pp < end && ISALPHA(**pp)) in parse_bool()
[all …]
/external/dexmaker/src/dx/java/com/android/dx/util/
DByteArrayAnnotatedOutput.java159 int end = writeAt + 1; in writeByte() local
162 ensureCapacity(end); in writeByte()
163 } else if (end > data.length) { in writeByte()
169 cursor = end; in writeByte()
175 int end = writeAt + 2; in writeShort() local
178 ensureCapacity(end); in writeShort()
179 } else if (end > data.length) { in writeShort()
186 cursor = end; in writeShort()
192 int end = writeAt + 4; in writeInt() local
195 ensureCapacity(end); in writeInt()
[all …]
/external/chromium-trace/catapult/tracing/test_data/
Dv8.log205 timer-event-end,"V8.GCCompactor",3220
431 timer-event-end,"V8.GCCompactor",5967
555 timer-event-end,"V8.GCCompactor",8337
781 timer-event-end,"V8.GCCompactor",10894
1154 timer-event-end,"V8.ParseLazy",323361
1161 timer-event-end,"V8.CompileFullCode",324247
1163 timer-event-end,"V8.CompileLazy",324288
1166 timer-event-end,"V8.ParseLazy",324488
1171 timer-event-end,"V8.CompileFullCode",324692
1173 timer-event-end,"V8.CompileLazy",324718
[all …]
/external/clang/test/Parser/
Dmissing-end-4.m4 @end
6 @interface Y1 // expected-error {{missing '@end'}}
7 @end
8 @end // expected-error {{'@end' must appear in an Objective-C context}}
11 @end
13 @protocol Y2 // expected-error {{missing '@end'}}
14 @end
15 @end // expected-error {{'@end' must appear in an Objective-C context}}
18 @interface X7 // expected-error {{missing '@end'}}
19 @end
[all …]
/external/clang/test/SemaCXX/
Dgoto.cpp4 double *end; variable
8 int end = 0; in f() local
11 goto end; in f()
14 end = 1; in f()
18 end: in f()
23 float* end; variable
27 int end = 0; in f() local
30 goto end; in f()
33 end = 1; in f()
37 end: in f()
[all …]
/external/expat/lib/
Dxmltok_impl.c14 if (end - ptr < n) \
33 #define CHECK_NAME_CASE(n, enc, ptr, end, nextTokPtr) \ argument
35 if (end - ptr < n) \
44 #define CHECK_NAME_CASES(enc, ptr, end, nextTokPtr) \ argument
57 CHECK_NAME_CASE(2, enc, ptr, end, nextTokPtr) \
58 CHECK_NAME_CASE(3, enc, ptr, end, nextTokPtr) \
59 CHECK_NAME_CASE(4, enc, ptr, end, nextTokPtr)
61 #define CHECK_NMSTRT_CASE(n, enc, ptr, end, nextTokPtr) \ argument
63 if (end - ptr < n) \
72 #define CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr) \ argument
[all …]
/external/clang/test/SemaObjC/
Dcategory-1.m3 @interface MyClass1 @end
9 @end
12 @end
15 @end
17 @interface MyClass1 (Category4) @end // expected-note {{previous definition is here}}
18 @interface MyClass1 (Category5) @end
19 @interface MyClass1 (Category6) @end
20 @interface MyClass1 (Category7) @end // expected-note {{previous definition is here}}
21 @interface MyClass1 (Category8) @end // expected-note {{previous definition is here}}
24 @interface MyClass1 (Category4) @end // expected-warning {{duplicate definition of category 'Catego…
[all …]
Dsuper-class-protocol-conformance.m4 @interface NSObject @end
8 @end
11 @end
14 @end
17 @end
20 @end
22 @implementation SubClass1 @end // Test1 - No Warning
25 @end
28 @end
31 @end
[all …]
Dproperty-category-4.m7 @end
12 @end
17 @end
24 @end
28 @end
32 @end
35 @end
40 @end
43 @end
46 @end
[all …]
Ddefault-synthesize.m3 @interface NSString @end
5 @interface NSObject @end
10 @end
16 @end
22 @end
38 @end
44 @end
61 @end
67 @end
88 @end
[all …]
Dproperty-12.m5 @end
9 @end
13 @end
17 @end
21 @end
25 @end
29 @end
33 @interface I0 <P0> @end
36 @end
38 @interface I1 <P1> @end
[all …]
/external/llvm/test/CodeGen/AArch64/
Daarch64-deferred-spilling.ll4 ; Check that we do not end up with useless spill code.
52 br i1 %cmp, label %if.end.thread, label %if.end
54 if.end.thread: ; preds = %entry
77 if.end: ; preds = %entry
117 i32 14, label %if.end.sw.bb.65_crit_edge
118 i32 25, label %if.end.sw.bb.123_crit_edge
121 if.end.sw.bb.123_crit_edge: ; preds = %if.end
125 if.end.sw.bb.65_crit_edge: ; preds = %if.end
130 sw.bb: ; preds = %if.end
138 br i1 %cmp28.400, label %sw.bb.if.then.29_crit_edge, label %if.end.33.lr.ph
[all …]
/external/clang/test/ARCMT/
Dobjcmt-protocol-conformance.m.result6 @interface NSObject @end
10 @end
13 @end
17 @end
19 @protocol P1 @end
20 @protocol P2 @end
27 @end
31 @end
36 @end
40 @end
[all …]
Dobjcmt-protocol-conformance.m6 @interface NSObject @end
10 @end
13 @end
17 @end
19 @protocol P1 @end
20 @protocol P2 @end
27 @end
31 @end
36 @end
40 @end
[all …]
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/data/tree_construction/
Dtests16.dat4 Line: 1 Col: 23 Unexpected end of file. Expected end tag (script).
15 Line: 1 Col: 24 Unexpected end of file. Expected end tag (script).
27 Line: 1 Col: 24 Unexpected end of file. Expected end tag (script).
39 Line: 1 Col: 25 Unexpected end of file. Expected end tag (script).
51 Line: 1 Col: 26 Unexpected end of file. Expected end tag (script).
63 Line: 1 Col: 27 Unexpected end of file. Expected end tag (script).
75 Line: 1 Col: 28 Unexpected end of file. Expected end tag (script).
87 Line: 1 Col: 29 Unexpected end of file. Expected end tag (script).
99 Line: 1 Col: 30 Unexpected end of file. Expected end tag (script).
111 Line: 1 Col: 31 Unexpected end of file. Expected end tag (script).
[all …]
/external/boringssl/src/crypto/bn/
Dsqrt.c78 goto end; in BN_mod_sqrt()
98 goto end; in BN_mod_sqrt()
117 goto end; in BN_mod_sqrt()
124 goto end; in BN_mod_sqrt()
129 goto end; in BN_mod_sqrt()
148 goto end; in BN_mod_sqrt()
153 goto end; in BN_mod_sqrt()
189 goto end; in BN_mod_sqrt()
194 goto end; in BN_mod_sqrt()
198 goto end; in BN_mod_sqrt()
[all …]
/external/icu/icu4c/source/common/
Duchriter.cpp82 && end == realThat.end; in operator ==()
87 return ustr_hashUCharsN(text, textLength) ^ pos ^ begin ^ end; in hashCode()
98 if(pos < end) { in first()
108 if(pos < end) { in firstPostInc()
117 pos = end; in last()
129 } else if(position > end) { in setIndex()
130 pos = end; in setIndex()
134 if(pos < end) { in setIndex()
143 if (pos >= begin && pos < end) { in current()
152 if (pos + 1 < end) { in next()
[all …]
/external/deqp/data/gles2/shaders/
Dkeywords.test22 end
39 end
56 end
73 end
90 end
107 end
124 end
141 end
158 end
175 end
[all …]
/external/libchrome/crypto/
Drsa_private_key.cc85 output->assign(content.begin(), content.end()); in Export()
110 output->assign(content.begin(), content.end()); in ExportPublicKeyInfo()
126 output->assign(content.begin(), content.end()); in ExportPublicKey()
139 uint8_t* end = src + input.size(); in Import() local
140 if (!ReadSequence(&src, end) || in Import()
141 !ReadVersion(&src, end) || in Import()
142 !ReadAlgorithmIdentifier(&src, end) || in Import()
143 !ReadTypeHeaderAndLength(&src, end, kOctetStringTag, NULL) || in Import()
144 !ReadSequence(&src, end) || in Import()
145 !ReadVersion(&src, end) || in Import()
[all …]
/external/clang/test/ASTMerge/Inputs/
Dinterface2.m5 @end
11 @end
18 @end
23 @end
29 @end
34 @end
40 @end
46 @end
52 @end
58 @end
[all …]
/external/e2fsprogs/e2fsck/
Dregion.c24 region_addr_t end; member
62 region_addr_t end; in region_allocate() local
64 end = start+n; in region_allocate()
65 if ((start < region->min) || (end > region->max)) in region_allocate()
78 if (((start >= r->start) && (start < r->end)) || in region_allocate()
79 ((end > r->start) && (end <= r->end)) || in region_allocate()
80 ((start <= r->start) && (end >= r->end))) in region_allocate()
82 if (end == r->start) { in region_allocate()
86 if (start == r->end) { in region_allocate()
88 if (end > next->start) in region_allocate()
[all …]

12345678910>>...334