HomeSort by relevance Sort by last modified time
    Searched refs:end (Results 126 - 150 of 22107) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/glsl/
strtod.h 35 glsl_strtod(const char *s, char **end);
  /external/chromium_org/third_party/ocmock/OCMock/
NSMethodSignature+OCMAdditions.h 12 @end
18 @end
  /external/clang/test/ARCMT/
GC.h 6 @end
  /external/clang/test/Index/Inputs/
complete-pch.h 4 @end
9 @end
  /external/clang/test/Index/
complete-protocols.m 1 /* Note: the RUN lines are near the end of the file, since line/column
5 @end
15 @end
complete-properties.m 1 /* Note: the RUN lines are near the end of the file, since line/column
12 @end
17 @end
22 @end
26 @end
34 @end
39 @end
46 @end
50 @end
55 @end
    [all...]
  /external/clang/test/Modules/Inputs/
category_other.h 5 @end
category_right_sub.h 3 @end
9 @end
14 @end
17 @end
  /external/clang/test/PCH/Inputs/
chain-remap-types2.h 5 @end
  /external/clang/test/PCH/
method_pool.h 18 @end
22 @end
30 @end
36 @end
objc_methods.h 6 @end
14 @end
27 @end
30 @end
41 @end
  /external/harfbuzz_ng/src/
hb-shape.cc 38 parse_space (const char **pp, const char *end)
40 while (*pp < end && ISSPACE (**pp))
46 parse_char (const char **pp, const char *end, char c)
48 parse_space (pp, end);
50 if (*pp == end || **pp != c)
58 parse_uint (const char **pp, const char *end, unsigned int *pv)
61 unsigned int len = MIN (ARRAY_LENGTH (buf) - 1, (unsigned int) (end - *pp));
82 parse_bool (const char **pp, const char *end, unsigned int *pv)
84 parse_space (pp, end);
87 while (*pp < end && ISALPHA(**pp)
    [all...]
  /external/lldb/test/lang/c/recurse/
main.c 21 char *end = NULL; local
22 depth = strtoul (argv[1], &end, 0);
23 if (end == NULL || *end != '\0')
  /external/lldb/test/lang/objc/foundation/
my-base.h 8 @end
  /external/mesa3d/src/glsl/
strtod.h 35 glsl_strtod(const char *s, char **end);
  /frameworks/av/media/libeffects/loudness/dsp/core/
basic-inl.h 32 int end = end_index; local
33 while (end > start + 1) {
34 int i = (end + start) / 2;
36 end = i;
  /frameworks/base/sax/java/android/sax/
EndTextElementListener.java 20 * Listens for the end of text elements.
25 * Invoked at the end of a text element with the body of the element.
29 void end(String body); method in interface:EndTextElementListener
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlToken.java 36 final int end; field in class:HtmlToken
39 static HtmlToken instance(int start, int end, HtmlTokenType type) {
40 return new HtmlToken(start, end, type);
44 int n = end - start;
49 private HtmlToken(int start, int end, HtmlTokenType type) {
51 this.end = end;
  /bootable/recovery/edify/
yydefs.h 22 int start, end; member in struct:__anon1102
29 (Current).end = YYRHSLOC(Rhs, N).end; \
32 (Current).end = YYRHSLOC(Rhs, 0).end; \
  /external/chromium_org/third_party/lcov/example/
example.c 26 static int end = 9; variable
38 end = atoi(argv[2]);
44 total1 = iterate_get_sum (start, end);
45 total2 = gauss_get_sum (start, end);
56 printf ("Success, sum[%d..%d] = %d\n", start, end, total1);
  /external/elfutils/0.153/libdw/
dwarf_frame_info.c 57 dwarf_frame_info (fs, start, end, signalp)
60 Dwarf_Addr *end;
69 if (end != NULL)
70 *end = fs->end;
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
Block.java 24 private Label end; field in class:Block
35 public void end() { method in class:Block
36 if (end != null) {
37 throw new IllegalStateException("end of label already set");
39 end = e.mark();
47 return end;
  /external/oprofile/libregex/
demangle_java_symbol.cpp 40 string::const_iterator & begin, string::const_iterator end);
42 string::const_iterator & begin, string::const_iterator end);
46 string::const_iterator & begin, string::const_iterator end)
50 if (begin == end)
72 string::const_iterator & begin, string::const_iterator end)
74 if (base_type(result, begin, end))
77 if (object_type(result, begin, end))
80 if (array_type(result, begin, end))
88 string::const_iterator & begin, string::const_iterator end)
90 if (begin == end || *begin != '['
    [all...]
  /external/lzma/CPP/Common/
StringToInt.cpp 7 UInt64 ConvertStringToUInt64(const char *s, const char **end)
15 if (end != NULL)
16 *end = s;
25 UInt64 ConvertOctStringToUInt64(const char *s, const char **end)
33 if (end != NULL)
34 *end = s;
43 UInt64 ConvertHexStringToUInt64(const char *s, const char **end)
55 if (end != NULL)
56 *end = s;
66 UInt64 ConvertStringToUInt64(const wchar_t *s, const wchar_t **end)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/csp/
CSPSourceList.cpp 19 static bool isSourceListNone(const UChar* begin, const UChar* end)
21 skipWhile<UChar, isASCIISpace>(begin, end);
24 skipWhile<UChar, isSourceCharacter>(position, end);
28 skipWhile<UChar, isASCIISpace>(position, end);
29 if (position != end)
93 void CSPSourceList::parse(const UChar* begin, const UChar* end)
96 if (isSourceListNone(begin, end))
100 while (position < end) {
101 skipWhile<UChar, isASCIISpace>(position, end);
102 if (position == end)
    [all...]

Completed in 2244 milliseconds

1 2 3 4 56 7 8 91011>>