HomeSort by relevance Sort by last modified time
    Searched refs:end (Results 1 - 25 of 11749) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Index/
complete-at-directives.m 1 /* Run lines are at the end, since line/column matter in this test. */
3 @end
6 @end
16 // CHECK-CC2: {TypedText end}
23 // CHECK-CC3: {TypedText end}
38 // CHECK-CC5: {TypedText @end}
complete-interfaces.m 1 /* Note: the RUN lines are near the end of the file, since line/column
9 @end
14 @end
17 @end
20 @end
complete-categories.m 1 /* Note: the RUN lines are near the end of the file, since line/column
4 @interface I1 @end
5 @interface I2 @end
6 @interface I3 : I2 @end
8 @interface I1(Cat1) @end
9 @interface I1(Cat2) @end
10 @interface I1(Cat3) @end
12 @interface I2 (Cat2) @end
13 @interface I2 (Cat3) @end
14 @interface I2 (Cat2) @end
    [all...]
  /external/clang/test/Modules/Inputs/
lookup_left.h 3 @end
lookup_right.h 4 @end
  /external/webkit/Source/WebKit/mac/Plugins/
WebPluginPrivate.h 31 @end
  /external/webkit/Tools/MiniBrowser/
MBToolbarItem.h 28 @end
  /external/clang/test/SemaCXX/
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
54 __label__ end; local
    [all...]
goto2.cpp 15 const char *end = text; local
23 count = subfun(end);
24 goto end;
32 int e = subfun(end);
34 end:
  /external/clang/test/PCH/
objc_import.h 6 @end
objc_stmts.h 4 @end
7 @end
11 @end
22 @end
  /external/webkit/Source/WebKit/mac/Workers/
WebWorkersPrivate.h 37 @end
  /frameworks/base/sax/java/android/sax/
EndElementListener.java 20 * Listens for the end of elements.
25 * Invoked at the end of an element.
27 void end(); method in interface:EndElementListener
  /external/icu4c/tools/genprops/misc/
ucdstrip.c 27 /* return the first character position after the end of the data */
30 char *end; local
33 end=strchr(l, '#');
34 if(end!=NULL) {
36 while(l!=end && ((c=*(end-1))==' ' || c=='\t')) {
37 --end;
40 end=strchr(l, 0);
42 return end;
48 char *end; local
    [all...]
  /external/icu4c/tools/genprops/
ucdstrip.c 27 /* return the first character position after the end of the data */
30 char *end; local
33 end=strchr(l, '#');
34 if(end!=NULL) {
36 while(l!=end && ((c=*(end-1))==' ' || c=='\t')) {
37 --end;
40 end=strchr(l, 0);
42 return end;
48 char *end; local
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/translate/
translate_message_infobar_controller.h 10 @end
  /external/clang/test/PCH/Inputs/
typo.h 5 @end
  /bionic/libc/string/
memset.c 34 char* end = q + n; local
37 if (q >= end) break; *q++ = (char) c;
38 if (q >= end) break; *q++ = (char) c;
39 if (q >= end) break; *q++ = (char) c;
40 if (q >= end) break; *q++ = (char) c;
memchr.c 34 const unsigned char* end = p + n; local
37 if (p >= end || p[0] == c) break; p++;
38 if (p >= end || p[0] == c) break; p++;
39 if (p >= end || p[0] == c) break; p++;
40 if (p >= end || p[0] == c) break; p++;
42 if (p >= end)
  /external/bison/lib/
strnlen.c 31 const char *end = memchr (string, '\0', maxlen); local
32 return end ? (size_t) (end - string) : maxlen;
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_folder_window.h 21 @end
26 @end
30 @end
  /ndk/sources/host-tools/sed-4.2.1/lib/
strnlen.c 31 const char *end = memchr (string, '\0', maxlen); local
32 return end ? (size_t) (end - string) : maxlen;
  /external/clang/test/CXX/stmt.stmt/stmt.dcl/
p3.cpp 11 goto end;
17 end:
32 goto end; // expected-error{{goto into protected scope}}
34 end:
43 goto end; // expected-error{{goto into protected scope}}
45 end:
  /bionic/libc/kernel/common/linux/
circ_buf.h 25 #define CIRC_CNT_TO_END(head,tail,size) ({int end = (size) - (tail); int n = ((head) + end) & ((size)-1); n < end ? n : end;})
27 #define CIRC_SPACE_TO_END(head,tail,size) ({int end = (size) - 1 - (head); int n = (end + (tail)) & ((size)-1); n <= end ? n : end+1;})
  /development/ndk/platforms/android-3/include/linux/
circ_buf.h 25 #define CIRC_CNT_TO_END(head,tail,size) ({int end = (size) - (tail); int n = ((head) + end) & ((size)-1); n < end ? n : end;})
27 #define CIRC_SPACE_TO_END(head,tail,size) ({int end = (size) - 1 - (head); int n = (end + (tail)) & ((size)-1); n <= end ? n : end+1;})

Completed in 1007 milliseconds

1 2 3 4 5 6 7 8 91011>>