Home
last modified time | relevance | path

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

12345678910>>...336

/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/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/fio/tools/
Dfiologparser.py36 if ftime == 0 or ts.last.end < ftime:
37 ftime = ts.last.end
43 end = ctx.interval
46 end = ftime if ftime < end else end
47 results = [ts.get_value(start, end) for ts in series]
48 print("%s, %s" % (end, ', '.join(["%0.3f" % i for i in results])))
50 end += ctx.interval
55 end = ctx.interval
58 end = ftime if ftime < end else end
59 results = [ts.get_value(start, end) for ts in series]
[all …]
/external/curl/lib/
Dx509asn1.c112 const char *beg, const char *end) in Curl_getASN1Element() argument
122 if(!beg || !end || beg >= end || !*beg || in Curl_getASN1Element()
123 (size_t)(end - beg) > CURL_ASN1_MAX) in Curl_getASN1Element()
137 if(beg >= end) in Curl_getASN1Element()
148 while(beg < end && *beg) { in Curl_getASN1Element()
149 beg = Curl_getASN1Element(&lelem, beg, end); in Curl_getASN1Element()
153 if(beg >= end) in Curl_getASN1Element()
155 elem->end = beg; in Curl_getASN1Element()
158 else if((unsigned)b > (size_t)(end - beg)) in Curl_getASN1Element()
169 if(len > (size_t)(end - beg)) 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/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/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/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/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 …]
/external/python/cpython2/Modules/expat/
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/ARCMT/
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 …]
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 …]
/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/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 …]
/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()
149 goto end; in BN_mod_sqrt()
154 goto end; in BN_mod_sqrt()
190 goto end; in BN_mod_sqrt()
195 goto end; in BN_mod_sqrt()
199 goto end; in BN_mod_sqrt()
[all …]
/external/icu/icu4c/source/common/
Duchriter.cpp84 && end == realThat.end; in operator ==()
89 return ustr_hashUCharsN(text, textLength) ^ pos ^ begin ^ end; in hashCode()
100 if(pos < end) { in first()
110 if(pos < end) { in firstPostInc()
119 pos = end; in last()
131 } else if(position > end) { in setIndex()
132 pos = end; in setIndex()
136 if(pos < end) { in setIndex()
145 if (pos >= begin && pos < end) { in current()
154 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/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/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 …]

12345678910>>...336