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

1 2 3 4 56 7 8 91011>>

  /external/clang/test/PCH/
objc_property.h 12 @end
  /external/elfutils/libdw/
dwarf_frame_info.c 36 dwarf_frame_info (Dwarf_Frame *fs, Dwarf_Addr *start, Dwarf_Addr *end,
45 if (end != NULL)
46 *end = fs->end;
  /external/grpc-grpc/src/objective-c/RxLibrary/
GRXForwardingWriter.h 36 @end
  /external/libcups/cups/
testgetdests.c 33 struct timeval start, end; /* Start and stop time */ local
41 gettimeofday(&end, NULL);
42 secs = end.tv_sec - start.tv_sec + 0.000001 * (end.tv_usec - start.tv_usec);
  /external/webrtc/talk/app/webrtc/objc/
RTCAVFoundationVideoSource+Internal.h 36 @end
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
ARDMessageResponse+Internal.h 17 @end
  /cts/tests/tests/os/src/android/os/cts/
SystemClockTest.java 28 long end = SystemClock.currentThreadTimeMillis(); local
29 assertFalse(end - 100 >= start);
37 long end = SystemClock.elapsedRealtime(); local
38 assertTrue(end - 100 >= start);
55 long end = SystemClock.currentThreadTimeMillis(); local
56 assertFalse(end - 100 >= start);
60 end = SystemClock.elapsedRealtime();
61 assertTrue(end - 100 >= start);
65 end = SystemClock.uptimeMillis();
66 assertTrue(end - 100 >= start)
74 long end = SystemClock.uptimeMillis(); local
    [all...]
  /external/clang/test/SemaObjCXX/Inputs/
nullability-consistency-6.h 11 @end
15 @end
17 #pragma clang assume_nonnull end
  /external/skia/tools/lua/
chars-vs-glyphs.lua 5 end
9 end
27 end
28 end
29 end
34 end
  /external/skqp/tools/lua/
chars-vs-glyphs.lua 5 end
9 end
27 end
28 end
29 end
34 end
  /external/v8/src/parsing/
preparser-logger.h 15 void LogFunction(int end, int num_parameters, int num_inner_functions) {
16 end_ = end;
21 int end() const { return end_; } function in class:v8::internal::final
  /external/icu/icu4c/source/samples/break/
ubreak.c 23 void printTextRange(UChar* str, int32_t start, int32_t end)
28 savedEndChar = str[end];
29 str[end] = 0;
32 printf("string[%2d..%2d] \"%s\"\n", start, end-1, charBuf);
33 str[end] = savedEndChar;
40 int32_t end; local
42 for (end = ubrk_next(boundary); end != UBRK_DONE; start = end, end
52 int32_t end = ubrk_last(boundary); local
61 int32_t end; local
70 int32_t end = ubrk_last(boundary); local
79 int32_t end = ubrk_following(boundary, pos); local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/nine/
nine_helpers.c 53 nine_range_pool_get(struct nine_range_pool *pool, int16_t bgn, int16_t end)
61 r->end = end;
70 while (r->next && r->end >= r->next->bgn) {
72 r->end = (r->end >= r->next->end) ? r->end : r->next->end;
79 nine_ranges_insert(struct nine_range **head, int16_t bgn, int16_t end,
    [all...]
  /external/clang/test/Analysis/Inputs/
system-header-simulator-for-objc-dealloc.h 9 @end
17 @end
22 @end
27 @end
35 @end
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
BuilderTryBlock.java 46 // The end location is exclusive, it should point to the codeAddress of the instruction immediately after the last
48 @Nonnull public final Label end; field in class:BuilderTryBlock
50 public BuilderTryBlock(@Nonnull Label start, @Nonnull Label end, @Nullable String exceptionType,
53 this.end = end;
57 public BuilderTryBlock(@Nonnull Label start, @Nonnull Label end, @Nullable TypeReference exceptionType,
60 this.end = end;
64 public BuilderTryBlock(@Nonnull Label start, @Nonnull Label end, @Nonnull Label handler) {
66 this.end = end
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AArch64/
label-arithmetic-diags-elf.s 15 end:
16 add w0, w1, #(end - start)
18 // CHECK-NEXT: add w0, w1, #(end - start)
21 cmp w0, #(end - start)
23 // CHECK-NEXT: cmp w0, #(end - start)
27 add w0, w1, #(end - negative)
29 // CHECK-NEXT: add w0, w1, #(end - negative)
32 cmp w0, #(end - negative)
34 // CHECK-NEXT: cmp w0, #(end - negative)
37 add w0, w1, #(end - external
    [all...]
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.classref/
p1-cxx11.cpp 47 template<typename T> T end(T);
52 if (it1->end < it1->end) {
56 template<typename T> T *end(T*);
62 if (it1->end < it1->end) {
66 if (x->end < 7) { // expected-error{{no member named 'end' in 'PR11856::X'}}
  /external/iw/
roc.c 20 char *end; local
26 freq = strtol(argv[0], &end, 0);
27 if (!end || *end)
30 time = strtol(argv[1], &end, 0);
31 if (!end || *end)
  /external/selinux/libselinux/src/
selinux_check_securetty_context.c 12 char *start, *end = NULL; local
34 end = start;
35 while (*end && !isspace(*end))
36 end++;
37 if (*end)
38 *end++ = 0;
  /external/flatbuffers/samples/lua/MyGame/Sample/
Monster.lua 14 end
20 end
23 end
31 end
32 end
37 end
39 end
44 end
46 end
51 end
    [all...]
  /external/grpc-grpc/src/core/lib/slice/
slice_string_helpers.cc 35 /** Finds the initial (\a begin) and final (\a end) offsets of the next
36 * substring from \a str + \a read_offset until the next \a sep or the end of \a
39 * Returns 1 and updates \a begin and \a end. Returns 0 otherwise. */
42 size_t* end) {
54 *end = read_offset + i;
62 size_t* begin, size_t* end) {
63 while (*begin < *end && str_buffer[*begin] == ' ') {
66 while (*begin < *end && str_buffer[*end - 1] == ' ') {
67 (*end)--
74 size_t begin, end; local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
StringCharacterIterator.java 39 private int end; field in class:StringCharacterIterator
40 // invariant: begin <= pos <= end
72 * @param end Index of the character following the last character
77 public StringCharacterIterator(String text, int begin, int end, int pos) {
83 if (begin < 0 || begin > end || end > text.length()) {
87 if (pos < begin || pos > end) {
92 this.end = end;
112 this.end = text.length()
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
pkg_icu.cpp 81 char *end; local
93 end=strchr(line, '#');
94 if(end!=NULL) {
95 *end=0;
98 end=strchr(line, 0);
99 while(line<end && (*(end-1)=='\r' || *(end-1)=='\n')) {
100 *--end=0;
114 // find whitespace after the item or the end of the lin
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
StringCharacterIterator.java 37 private int end; field in class:StringCharacterIterator
38 // invariant: begin <= pos <= end
70 * @param end Index of the character following the last character
75 public StringCharacterIterator(String text, int begin, int end, int pos) {
81 if (begin < 0 || begin > end || end > text.length()) {
85 if (pos < begin || pos > end) {
90 this.end = end;
110 this.end = text.length()
    [all...]
  /external/protobuf/objectivec/
GPBDictionary_PackagePrivate.h 47 @end
67 //%EXTRA_DICTIONARY_PRIVATE_INTERFACES_##HELPER()@end
90 @end
96 @end
102 @end
108 @end
114 @end
120 @end
126 @end
135 @end
    [all...]

Completed in 2953 milliseconds

1 2 3 4 56 7 8 91011>>