Home
last modified time | relevance | path

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

12345678910>>...463

/external/python/cpython2/Lib/json/
Ddecoder.py34 def errmsg(msg, doc, pos, end=None): argument
37 if end is None:
42 endlineno, endcolno = linecol(doc, end)
44 return fmt.format(msg, lineno, colno, endlineno, endcolno, pos, end)
73 def py_scanstring(s, end, encoding=None, strict=True, argument
87 begin = end - 1
89 chunk = _m(s, end)
93 end = chunk.end()
108 raise ValueError(errmsg(msg, s, end))
113 esc = s[end]
[all …]
/external/python/cpython3/Lib/json/
Ddecoder.py69 def py_scanstring(s, end, strict=True, argument
81 begin = end - 1
83 chunk = _m(s, end)
86 end = chunk.end()
99 raise JSONDecodeError(msg, s, end)
104 esc = s[end]
114 raise JSONDecodeError(msg, s, end)
115 end += 1
117 uni = _decode_uXXXX(s, end)
118 end += 5
[all …]
/external/python/cpython2/PC/VS7.1/
DUninstal.wse23 end
25 Text=Note from Tim: This is a verbatim copy of Wise's Uninstal.wse, altered at the end to write
26 end
29 end
31 end
34 end
36 end
41 end
45 end
49 end
[all …]
Dpython20.wse76 end
80 end
82 end
85 end
88 end
91 end
94 end
97 end
100 end
103 end
[all …]
/external/libcxx/test/std/re/re.traits/
Disctype.pass.cpp30 assert( t.isctype('_', t.lookup_classname(s.begin(), s.end()))); in main()
31 assert( t.isctype('a', t.lookup_classname(s.begin(), s.end()))); in main()
32 assert( t.isctype('Z', t.lookup_classname(s.begin(), s.end()))); in main()
33 assert( t.isctype('5', 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('-', t.lookup_classname(s.begin(), s.end()))); in main()
36 assert(!t.isctype('@', t.lookup_classname(s.begin(), s.end()))); in main()
39 assert(!t.isctype('_', t.lookup_classname(s.begin(), s.end()))); in main()
40 assert( t.isctype('a', t.lookup_classname(s.begin(), s.end()))); in main()
41 assert( t.isctype('Z', t.lookup_classname(s.begin(), s.end()))); in main()
[all …]
/external/u-boot/arch/nds32/lib/
Dcache.c44 unsigned long end, line_size; in invalidate_icache_all() local
46 end = line_size * CACHE_WAY(ICACHE) * CACHE_SET(ICACHE); in invalidate_icache_all()
48 end -= line_size; in invalidate_icache_all()
49 __asm__ volatile ("\n\tcctl %0, L1I_IX_INVAL" : : "r" (end)); in invalidate_icache_all()
51 end -= line_size; in invalidate_icache_all()
52 __asm__ volatile ("\n\tcctl %0, L1I_IX_INVAL" : : "r" (end)); in invalidate_icache_all()
54 end -= line_size; in invalidate_icache_all()
55 __asm__ volatile ("\n\tcctl %0, L1I_IX_INVAL" : : "r" (end)); in invalidate_icache_all()
56 end -= line_size; in invalidate_icache_all()
57 __asm__ volatile ("\n\tcctl %0, L1I_IX_INVAL" : : "r" (end)); in invalidate_icache_all()
[all …]
/external/curl/lib/
Dx509asn1.c107 const char *beg, const char *end)
111 const char *beg, const char *end) in getASN1Element() argument
121 if(!beg || !end || beg >= end || !*beg || in getASN1Element()
122 (size_t)(end - beg) > CURL_ASN1_MAX) in getASN1Element()
136 if(beg >= end) in getASN1Element()
147 while(beg < end && *beg) { in getASN1Element()
148 beg = getASN1Element(&lelem, beg, end); in getASN1Element()
152 if(beg >= end) in getASN1Element()
154 elem->end = beg; in getASN1Element()
157 else if((unsigned)b > (size_t)(end - beg)) in getASN1Element()
[all …]
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/
Dhpack_parser.cc65 const uint8_t* end);
67 const uint8_t* end, grpc_error* error);
69 const uint8_t* cur, const uint8_t* end);
71 const uint8_t* cur, const uint8_t* end);
74 const uint8_t* cur, const uint8_t* end);
76 const uint8_t* cur, const uint8_t* end);
78 grpc_chttp2_hpack_parser* p, const uint8_t* cur, const uint8_t* end);
80 grpc_chttp2_hpack_parser* p, const uint8_t* cur, const uint8_t* end);
83 const uint8_t* end);
85 const uint8_t* end);
[all …]
/external/protobuf/objectivec/
DGPBDictionary_PackagePrivate.h47 @end
90 @end
96 @end
102 @end
108 @end
114 @end
120 @end
126 @end
135 @end
144 @end
[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/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/expat/lib/
Dxmltok_impl.c41 if (end - ptr < n) \
60 #define CHECK_NAME_CASE(n, enc, ptr, end, nextTokPtr) \ argument
62 if (end - ptr < n) \
71 #define CHECK_NAME_CASES(enc, ptr, end, nextTokPtr) \ argument
85 CHECK_NAME_CASE(2, enc, ptr, end, nextTokPtr) \
86 CHECK_NAME_CASE(3, enc, ptr, end, nextTokPtr) \
87 CHECK_NAME_CASE(4, enc, ptr, end, nextTokPtr)
89 #define CHECK_NMSTRT_CASE(n, enc, ptr, end, nextTokPtr) \ argument
91 if (end - ptr < n) \
100 #define CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr) \ argument
[all …]
/external/python/cpython2/Modules/expat/
Dxmltok_impl.c41 if (end - ptr < n) \
60 #define CHECK_NAME_CASE(n, enc, ptr, end, nextTokPtr) \ argument
62 if (end - ptr < n) \
71 #define CHECK_NAME_CASES(enc, ptr, end, nextTokPtr) \ argument
85 CHECK_NAME_CASE(2, enc, ptr, end, nextTokPtr) \
86 CHECK_NAME_CASE(3, enc, ptr, end, nextTokPtr) \
87 CHECK_NAME_CASE(4, enc, ptr, end, nextTokPtr)
89 #define CHECK_NMSTRT_CASE(n, enc, ptr, end, nextTokPtr) \ argument
91 if (end - ptr < n) \
100 #define CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr) \ argument
[all …]
/external/python/cpython3/Modules/expat/
Dxmltok_impl.c41 if (end - ptr < n) \
60 #define CHECK_NAME_CASE(n, enc, ptr, end, nextTokPtr) \ argument
62 if (end - ptr < n) \
71 #define CHECK_NAME_CASES(enc, ptr, end, nextTokPtr) \ argument
85 CHECK_NAME_CASE(2, enc, ptr, end, nextTokPtr) \
86 CHECK_NAME_CASE(3, enc, ptr, end, nextTokPtr) \
87 CHECK_NAME_CASE(4, enc, ptr, end, nextTokPtr)
89 #define CHECK_NMSTRT_CASE(n, enc, ptr, end, nextTokPtr) \ argument
91 if (end - ptr < n) \
100 #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 …]
/external/u-boot/arch/nios2/lib/
Dcache.c13 static void __flush_dcache(unsigned long start, unsigned long end) in __flush_dcache() argument
18 end += (gd->arch.dcache_line_size - 1); in __flush_dcache()
19 end &= ~(gd->arch.dcache_line_size - 1); in __flush_dcache()
21 for (addr = start; addr < end; addr += gd->arch.dcache_line_size) { in __flush_dcache()
29 static void __flush_dcache_all(unsigned long start, unsigned long end) in __flush_dcache_all() argument
34 end += (gd->arch.dcache_line_size - 1); in __flush_dcache_all()
35 end &= ~(gd->arch.dcache_line_size - 1); in __flush_dcache_all()
37 if (end > start + gd->arch.dcache_size) in __flush_dcache_all()
38 end = start + gd->arch.dcache_size; in __flush_dcache_all()
40 for (addr = start; addr < end; addr += gd->arch.dcache_line_size) { in __flush_dcache_all()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Analysis/ScalarEvolution/
Dcache_loop_exit_limit.ll29 while.body4: ; preds = %while.body4.preheader, %while.end.22
30 %0 = phi i32 [ %mul.22, %while.end.22 ], [ %arrayidx2.promoted50, %while.body4.preheader ]
38 br i1 %cmp, label %while.cond17, label %while.end
40 while.end: ; preds = %while.cond17
44 while.cond17.1: ; preds = %while.cond17.1, %while.end
45 %add22.sink.1 = phi i32 [ %add22.1, %while.cond17.1 ], [ %mul.1, %while.end ]
48 br i1 %cmp.1, label %while.cond17.1, label %while.end.1
50 while.end.1: ; preds = %while.cond17.1
54 while.cond17.2: ; preds = %while.cond17.2, %while.end.1
55 %add22.sink.2 = phi i32 [ %add22.2, %while.cond17.2 ], [ %mul.2, %while.end.1 ]
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/
DRange.java31 public final Position end; field in Range
33 public Range(Position begin, Position end) { in Range() argument
37 if (end == null) { in Range()
41 this.end = end; in Range()
44 public static Range range(Position begin, Position end) { in range() argument
45 return new Range(begin, end); in range()
53 return range(begin.withColumn(column), end); in withBeginColumn()
57 return range(begin.withLine(line), end); in withBeginLine()
61 return range(begin, end.withColumn(column)); in withEndColumn()
65 return range(begin, end.withLine(line)); in withEndLine()
[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/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/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/boringssl/src/crypto/fipsmodule/bn/
Dsqrt.c79 goto end; in BN_mod_sqrt()
99 goto end; in BN_mod_sqrt()
118 goto end; in BN_mod_sqrt()
125 goto end; in BN_mod_sqrt()
130 goto end; in BN_mod_sqrt()
148 goto end; in BN_mod_sqrt()
153 goto end; in BN_mod_sqrt()
188 goto end; in BN_mod_sqrt()
193 goto end; in BN_mod_sqrt()
197 goto end; in BN_mod_sqrt()
[all …]
/external/python/cpython2/Lib/test/
Dtest_print.py22 lambda args, sep, end, file: print(*args),
24 lambda args, sep, end, file: print(file=file, *args),
26 lambda args, sep, end, file: print(end=end, *args),
28 lambda args, sep, end, file: print(end=end, file=file, *args),
30 lambda args, sep, end, file: print(sep=sep, *args),
32 lambda args, sep, end, file: print(sep=sep, file=file, *args),
34 lambda args, sep, end, file: print(sep=sep, end=end, *args),
36 lambda args, sep, end, file: print(sep=sep, end=end, file=file, *args),
48 sep=NotDefined, end=NotDefined, file=NotDefined): argument
56 end is not NotDefined,
[all …]

12345678910>>...463