Searched refs:end (Results 26 - 50 of 11073) sorted by relevance

1234567891011>>

/external/python/cpython2/Lib/json/
H A Ddecoder.py34 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 DStringToInt.h8 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 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() 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 Dbuiltins-arm64.c5 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 Dgoto.cpp4 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 Dgoto2.cpp16 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 Ddecoder.py69 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 Dcategory_left_sub.h3 @end
8 @end
11 @end
H A Dcategory_right.h6 @end
10 @end
13 @end
H A DMethodPoolB.h13 @end
H A Dcategory_bottom.h5 @end
11 @end
/external/clang/test/CXX/stmt.stmt/stmt.dcl/
H A Dp3.cpp13 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 Dstring_to_uint.c43 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 Dheader2.h5 @end
/external/clang/test/PCH/Inputs/
H A Dchain-selectors2.h7 @end
17 @end
/external/clang/test/PCH/
H A Dobjc_stmts.h4 @end
7 @end
11 @end
22 @end
/external/clang/test/SemaObjCXX/Inputs/
H A Darc-system-header.h2 @end
14 @end
/external/compiler-rt/test/profile/Linux/
H A Dinstrprof-basic.c13 int end(int i) { function
22 end(1);
/external/compiler-rt/test/profile/
H A Dinstrprof-basic.c27 int end(int i) { function
36 end(1);
/external/mesa3d/src/util/
H A Dstrtod.h41 _mesa_strtod(const char *s, char **end);
44 _mesa_strtof(const char *s, char **end);
/external/webrtc/webrtc/examples/objc/AppRTCDemo/
H A DARDAppEngineClient.h14 @end
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_range.h43 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 DRange.java6 * 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 DGC.h6 @end
/external/clang/test/Index/Inputs/
H A Dcomplete-pch.h4 @end
9 @end

Completed in 551 milliseconds

1234567891011>>