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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebKit/mac/Plugins/
WebPluginPrivate.h 31 @end
  /packages/apps/Gallery3D/src/com/cooliris/media/
IndexRange.java 23 end = endRange;
28 end = 0;
31 public void set(int begin, int end) {
33 this.end = end;
37 return begin == end;
41 return end - begin;
45 public int end; field in class:IndexRange
  /external/webkit/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/chromium/third_party/icu/source/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/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...]
  /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;
  /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;})
  /external/kernel-headers/original/linux/
circ_buf.h 18 /* Return count up to the end of the buffer. Carefully avoid
22 ({int end = (size) - (tail); \
23 int n = ((head) + end) & ((size)-1); \
24 n < end ? n : end;})
26 /* Return space available up to the end of the buffer. */
28 ({int end = (size) - 1 - (head); \
29 int n = (end + (tail)) & ((size)-1); \
30 n <= end ? n : end+1;}
    [all...]
  /external/webkit/WebCore/platform/mac/
WebCoreView.h 28 @end
  /external/webkit/WebKit/mac/Carbon/
CarbonWindowContentView.m 35 @end
  /external/webkit/WebKit/mac/WebView/
WebFormDelegatePrivate.h 33 @end
  /external/webkit/WebKitTools/DumpRenderTree/mac/
ObjCPluginFunction.m 37 @end
PlainTextController.h 28 @end
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/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;})
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/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;})
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/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;})
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/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;})
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/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;})
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/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;})
  /external/qemu/android/utils/
timezone.h 29 extern char* bufprint_zoneinfo_timezone( char* buffer, char* end );

Completed in 531 milliseconds

1 2 3 4 5 6 7 8 91011>>