/external/python/cpython2/Lib/json/ |
H A D | decoder.py | 34 def errmsg(msg, doc, pos, end=None): 37 if end is None: 42 endlineno, endcolno = linecol(doc, end) 44 return fmt.format(msg, lineno, colno, endlineno, endcolno, pos, end) 46 #return fmt % (msg, lineno, colno, endlineno, endcolno, pos, end) 73 def py_scanstring(s, end, encoding=None, strict=True, 82 after the end quote.""" 87 begin = end - 1 89 chunk = _m(s, end) 93 end [all...] |
/external/lzma/CPP/Common/ |
H A D | StringToInt.h | 8 UInt32 ConvertStringToUInt32(const char *s, const char **end) throw();
9 UInt64 ConvertStringToUInt64(const char *s, const char **end) throw();
10 UInt32 ConvertStringToUInt32(const wchar_t *s, const wchar_t **end) throw();
11 UInt64 ConvertStringToUInt64(const wchar_t *s, const wchar_t **end) throw();
13 Int32 ConvertStringToInt32(const wchar_t *s, const wchar_t **end) throw();
15 UInt32 ConvertOctStringToUInt32(const char *s, const char **end) throw();
16 UInt64 ConvertOctStringToUInt64(const char *s, const char **end) throw();
18 UInt32 ConvertHexStringToUInt32(const char *s, const char **end) throw();
19 UInt64 ConvertHexStringToUInt64(const char *s, const char **end) throw();
|
H A D | StringToInt.cpp | 12 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()
argument 31 if (end)
32 *end = s;
47 if (end)
48 *end 54 ConvertOctStringToUInt32(const char *s, const char **end) argument 75 ConvertOctStringToUInt64(const char *s, const char **end) argument 96 ConvertHexStringToUInt32(const char *s, const char **end) argument 121 ConvertHexStringToUInt64(const char *s, const char **end) argument [all...] |
/external/clang/test/Sema/ |
H A D | builtins-arm64.c | 5 void __clear_cache(void *start, void *end); 8 void test_clear_cache_chars(char *start, char *end) { argument 9 __clear_cache(start, end); 12 void test_clear_cache_voids(void *start, void *end) { argument 13 __clear_cache(start, end);
|
/external/clang/test/SemaCXX/ |
H A D | goto.cpp | 4 double *end; variable 8 int end = 0; local 11 goto end; 14 end = 1; 18 end: 23 float* end; member in namespace:N 27 int end = 0; local 30 goto end; 33 end = 1; 37 end 46 h(int end) argument 52 h2(int end) argument 54 __label__ end; local [all...] |
H A D | goto2.cpp | 16 const char *end = text; local 24 count = subfun(end); 25 goto end; 33 int e = subfun(end); 35 end:
|
/external/python/cpython3/Lib/json/ |
H A D | decoder.py | 69 def py_scanstring(s, end, strict=True, 78 after the end quote.""" 81 begin = end - 1 83 chunk = _m(s, end) 86 end = chunk.end() 91 # Terminator is the end of string, a literal control character, 99 raise JSONDecodeError(msg, s, end) 104 esc = s[end] 113 raise JSONDecodeError(msg, s, end) [all...] |
/external/clang/test/Modules/Inputs/ |
H A D | category_left_sub.h | 3 @end 8 @end 11 @end
|
H A D | category_right.h | 6 @end 10 @end 13 @end
|
H A D | MethodPoolB.h | 13 @end
|
H A D | category_bottom.h | 5 @end 11 @end
|
/external/clang/test/CXX/stmt.stmt/stmt.dcl/ |
H A D | p3.cpp | 13 goto end; 19 end: 34 goto end; // expected-error{{cannot jump from this goto statement to its label}} 36 end: 45 goto end; 55 end:
|
/external/strace/ |
H A D | string_to_uint.c | 43 char *end; local 50 val = strtoll(str, &end, 10); 52 if (str == end || val < 0 || (unsigned long long) val > max_val 56 if (*end && (!accepted_ending || !strchr(accepted_ending, *end))) 60 *endptr = end;
|
/external/clang/test/ARCMT/whitelisted/ |
H A D | header2.h | 5 @end
|
/external/clang/test/PCH/Inputs/ |
H A D | chain-selectors2.h | 7 @end 17 @end
|
/external/clang/test/PCH/ |
H A D | objc_stmts.h | 4 @end 7 @end 11 @end 22 @end
|
/external/clang/test/SemaObjCXX/Inputs/ |
H A D | arc-system-header.h | 2 @end 14 @end
|
/external/compiler-rt/test/profile/Linux/ |
H A D | instrprof-basic.c | 13 int end(int i) { function 22 end(1);
|
/external/compiler-rt/test/profile/ |
H A D | instrprof-basic.c | 27 int end(int i) { function 36 end(1);
|
/external/mesa3d/src/util/ |
H A D | strtod.h | 41 _mesa_strtod(const char *s, char **end); 44 _mesa_strtof(const char *s, char **end);
|
/external/webrtc/webrtc/examples/objc/AppRTCDemo/ |
H A D | ARDAppEngineClient.h | 14 @end
|
/external/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_range.h | 43 unsigned end; /* exclusive */ member in struct:util_range 54 range->end = 0; 59 util_range_add(struct util_range *range, unsigned start, unsigned end) argument 61 if (start < range->start || end > range->end) { 64 range->end = MAX2(end, range->end); 70 util_ranges_intersect(struct util_range *range, unsigned start, unsigned end) argument 72 return MAX2(start, range->start) < MIN2(end, rang [all...] |
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ |
H A D | Range.java | 6 * A range of characters in a source file, from "begin" to "end", including the characters at "begin" and "end". 12 public final Position end; field in class:Range 14 public Range(Position begin, Position end) { argument 18 if (end == null) { 19 throw new IllegalArgumentException("end can't be null"); 22 this.end = end; 25 public static Range range(Position begin, Position end) { argument 26 return new Range(begin, end); 53 withEnd(Position end) argument [all...] |
/external/clang/test/ARCMT/ |
H A D | GC.h | 6 @end
|
/external/clang/test/Index/Inputs/ |
H A D | complete-pch.h | 4 @end 9 @end
|