HomeSort by relevance Sort by last modified time
    Searched refs:end (Results 151 - 175 of 28003) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/base/core/java/android/text/
GetChars.java 29 * through <code>end - 1</code> from this CharSequence into <code>dest</code>
32 public void getChars(int start, int end, char[] dest, int destoff);
  /system/core/base/include/android-base/
parsedouble.h 35 char* end; local
36 double result = strtod(s, &end);
37 if (errno != 0 || s == end || *end != '\0') {
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
mips4100.s 9 .end stuff
mips4650.s 9 .end stuff
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-i386/
vxworks2.s 5 .end _start
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mips-elf/
pie.s 6 .end __start
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-powerpc/
vxworks2.s 5 .end _start
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-sh/
vxworks2.s 6 .end __start
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-sparc/
vxworks2.s 6 .end _start
  /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
  /packages/apps/Launcher3/src/com/android/launcher3/util/
FloatRange.java 23 public float start, end; field in class:FloatRange
33 end = e;
37 return value >= start && value <= end;
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-arm/
unwind-mix2.s 8 .global end
9 .type end, %function
10 end:
  /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...]
  /frameworks/base/core/java/android/view/
AccessibilityIterators.java 56 protected int[] getRange(int start, int end) {
57 if (start < 0 || end < 0 || start == end) {
61 mSegment[1] = end;
112 final int end = mImpl.following(start); local
113 if (end == BreakIterator.DONE) {
116 return getRange(start, end);
128 int end = offset; local
129 if (end > textLegth) {
130 end = textLegth
197 final int end = mImpl.following(start); local
213 int end = offset; local
279 int end = start + 1; local
295 int end = offset; local
    [all...]
  /external/annotation-tools/asmx/src/org/objectweb/asm/tree/
TryCatchBlockNode.java 48 * End of the exception handler's scope (exclusive).
50 public Label end; field in class:TryCatchBlockNode
67 * @param end end of the exception handler's scope (exclusive).
75 final Label end,
80 this.end = end;
91 mv.visitTryCatchBlock(start, end, handler, type);
  /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/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/ltp/testcases/kernel/syscalls/futex/
futex_wait_bitset.h 24 struct timespec start, to, end; local
37 clock_gettime(clk_id, &end);
57 if (tst_timespec_lt(end, to)) {
60 tst_timespec_diff_us(end, start), wait_us);
64 if (tst_timespec_diff_us(end, to) > TRESHOLD_US) {
67 tst_timespec_diff_us(end, start), wait_us);
72 tst_timespec_diff_us(end, start), wait_us);
  /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;

Completed in 2437 milliseconds

1 2 3 4 5 67 8 91011>>