/external/libcxx/test/std/re/re.traits/ |
D | isctype.pass.cpp | 25 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/openfst/src/include/fst/ |
D | interval-set.h | 41 T end; member 43 Interval() : begin(-1), end(-1) {} in Interval() 45 Interval(T b, T e) : begin(b), end(e) {} in Interval() 48 return begin < i.begin || (begin == i.begin && end > i.end); 52 return begin == i.begin && end == i.end; 56 return begin != i.begin || end != i.end; 64 end = n; in Read() 71 n = end; in Write() 100 it != intervals->end(); ++it) in Union() 108 lower_bound(intervals_.begin(), intervals_.end(), interval); in Member() [all …]
|
/external/lldb/include/lldb/Core/ |
D | RangeMap.h | 88 SetRangeEnd (BaseType end) in SetRangeEnd() 90 if (end > base) in SetRangeEnd() 91 size = end - base; in SetRangeEnd() 208 std::stable_sort (m_entries.begin(), m_entries.end()); in Sort() 215 typename Collection::const_iterator pos, end, prev; in IsSorted() local 218 … for (pos = m_entries.begin(), end = m_entries.end(), prev = end; pos != end; prev = pos++) in IsSorted() 220 if (prev != end && *pos < *prev) in IsSorted() 237 typename Collection::iterator end; in CombineConsecutiveRanges() local 242 … for (pos = m_entries.begin(), end = m_entries.end(), prev = end; pos != end; prev = pos++) in CombineConsecutiveRanges() 244 if (prev != end && prev->Overlap(*pos)) in CombineConsecutiveRanges() [all …]
|
/external/harfbuzz_ng/src/ |
D | hb-shape.cc | 38 parse_space (const char **pp, const char *end) in parse_space() argument 40 while (*pp < end && ISSPACE (**pp)) in parse_space() 46 parse_char (const char **pp, const char *end, char c) in parse_char() argument 48 parse_space (pp, end); in parse_char() 50 if (*pp == end || **pp != c) in parse_char() 58 parse_uint (const char **pp, const char *end, unsigned int *pv) in parse_uint() argument 61 unsigned int len = MIN (ARRAY_LENGTH (buf) - 1, (unsigned int) (end - *pp)); in parse_uint() 82 parse_bool (const char **pp, const char *end, unsigned int *pv) in parse_bool() argument 84 parse_space (pp, end); in parse_bool() 87 while (*pp < end && ISALPHA(**pp)) in parse_bool() [all …]
|
/external/dexmaker/src/dx/java/com/android/dx/util/ |
D | ByteArrayAnnotatedOutput.java | 159 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/trace-viewer/tracing/test_data/ |
D | v8.log | 205 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/ |
D | missing-end-4.m | 4 @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/ |
D | goto.cpp | 4 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/clang/test/SemaObjC/ |
D | category-1.m | 3 @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 …]
|
D | super-class-protocol-conformance.m | 4 @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 …]
|
D | property-category-4.m | 7 @end 12 @end 17 @end 24 @end 28 @end 32 @end 35 @end 40 @end 43 @end 46 @end [all …]
|
D | default-synthesize.m | 3 @interface NSString @end 5 @interface NSObject @end 10 @end 16 @end 22 @end 38 @end 44 @end 61 @end 67 @end 88 @end [all …]
|
D | property-12.m | 5 @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/expat/lib/ |
D | xmltok_impl.c | 14 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/ARCMT/ |
D | objcmt-protocol-conformance.m | 6 @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 …]
|
D | objcmt-protocol-conformance.m.result | 6 @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/trace-viewer/tracing/third_party/vinn/third_party/parse5/test/data/tree_construction/ |
D | tests16.dat | 4 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/ |
D | sqrt.c | 78 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/ |
D | uchriter.cpp | 82 && 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/ |
D | keywords.test | 22 end 39 end 56 end 73 end 90 end 107 end 124 end 141 end 158 end 175 end [all …]
|
/external/clang/test/ASTMerge/Inputs/ |
D | interface2.m | 5 @end 11 @end 18 @end 23 @end 29 @end 34 @end 40 @end 46 @end 52 @end 58 @end [all …]
|
D | interface1.m | 5 @end 11 @end 18 @end 23 @end 29 @end 35 @end 41 @end 47 @end 53 @end 59 @end [all …]
|
/external/e2fsprogs/e2fsck/ |
D | region.c | 24 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 …]
|
/external/skia/experimental/PdfViewer/pdfparser/native/ |
D | SkPdfNativeTokenizer.cpp | 44 const unsigned char* skipPdfWhiteSpaces(const unsigned char* start, const unsigned char* end) { in skipPdfWhiteSpaces() argument 45 while (start < end && (isPdfWhiteSpace(*start) || *start == kComment_PdfDelimiter)) { in skipPdfWhiteSpaces() 49 while (start < end && !isPdfEOL(*start)) { in skipPdfWhiteSpaces() 60 const unsigned char* endOfPdfToken(const unsigned char* start, const unsigned char* end) { in endOfPdfToken() argument 63 if (start < end && isPdfDelimiter(*start)) { in endOfPdfToken() 69 while (start < end && !isPdfWhiteSpaceOrPdfDelimiter(*start)) { in endOfPdfToken() 77 static const unsigned char* readArray(const unsigned char* start, const unsigned char* end, in readArray() argument 85 return end; in readArray() 88 while (start < end) { in readArray() 90 start = skipPdfWhiteSpaces(start, end); in readArray() [all …]
|
/external/v8/src/ |
D | conversions-inl.h | 102 EndMark end, in SubStringEquals() argument 107 if (*current == end || **current != *substring) return false; in SubStringEquals() 119 EndMark end) { in AdvanceToNonspace() argument 120 while (*current != end) { in AdvanceToNonspace() 132 EndMark end, in InternalStringToIntDouble() argument 135 DCHECK(current != end); in InternalStringToIntDouble() 140 if (current == end) return SignedZero(negative); in InternalStringToIntDouble() 157 !AdvanceToNonspace(unicode_cache, ¤t, end)) { in InternalStringToIntDouble() 183 if (current == end || !isDigit(*current, radix)) break; in InternalStringToIntDouble() 189 AdvanceToNonspace(unicode_cache, ¤t, end)) { in InternalStringToIntDouble() [all …]
|