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

1 2 3 4 5 67 8 91011>>

  /packages/apps/Launcher3/src/com/android/launcher3/util/
FloatRange.java 23 public float start, end; field in class:FloatRange
32 start = s;
37 return value >= start && value <= end;
  /packages/apps/TV/src/com/android/tv/
Starter.java 30 static void start(Context context) { method in interface:Starter
34 starter.start();
37 Log.w("Start", "It is not a context of TvApplication");
41 void start(); method in interface:Starter
  /toolchain/binutils/binutils-2.27/binutils/testsuite/binutils-all/
exclude-1.s 2 .type start,"function"
3 .global start
4 start: label
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/
divide.s 0 start:
5 a=(.-start)/4-1 # comment
6 b=(.-start)/4
1 start: label
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-aarch64/
ifunc-8a.s 2 .type start,"function"
3 .global start
4 start: label
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
empty.s 4 .type start,"function"
5 .global start
6 start: label
empty2.s 6 .type start,"function"
7 .global start
8 start: label
exclude3.s 2 .type start,"function"
3 .global start
4 start: label
pr19617.s 7 .type start,"function"
8 .global start
9 start: label
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-i386/
pr19636-4.s 2 .type start,"function"
3 .global start
4 start: label
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-ifunc/
ifunc-8a-i386.s 2 .type start,"function"
3 .global start
4 start: label
ifunc-8a-x86-64.s 2 .type start,"function"
3 .global start
4 start: label
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-sh/sh64/
shcmp-1.s 3 .global start
4 start: label
12 .long start
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-x86-64/
pr19636-3.s 2 .type start,"function"
3 .global start
4 start: label
  /external/guava/guava-tests/test/com/google/common/collect/
ComparisonChainTest.java 42 assertEquals(0, ComparisonChain.start().result());
46 assertEquals(0, ComparisonChain.start()
52 assertEquals(0, ComparisonChain.start()
58 assertEquals(0, ComparisonChain.start()
69 assertTrue(ComparisonChain.start()
76 assertTrue(ComparisonChain.start()
83 assertTrue(ComparisonChain.start()
91 assertTrue(ComparisonChain.start().compareFalseFirst(true, true).result() == 0);
92 assertTrue(ComparisonChain.start().compareFalseFirst(true, false).result() > 0);
93 assertTrue(ComparisonChain.start().compareFalseFirst(false, true).result() < 0)
    [all...]
  /external/e2fsprogs/e2fsck/
region.c 24 region_addr_t start; member in struct:region_el
60 int region_allocate(region_t region, region_addr_t start, int n)
65 end = start+n;
66 if ((start < region->min) || (end > region->max))
79 if (((start >= r->start) && (start < r->end)) ||
80 ((end > r->start) && (end <= r->end)) ||
81 ((start <= r->start) && (end >= r->end))
176 region_addr_t start, end; local
    [all...]
  /external/annotation-tools/asmx/src/org/objectweb/asm/tree/
TryCatchBlockNode.java 45 public Label start; field in class:TryCatchBlockNode
66 * @param start beginning of the exception handler's scope (inclusive).
74 final Label start,
79 this.start = start;
91 mv.visitTryCatchBlock(start, end, handler, type);
  /external/icu/icu4c/source/samples/break/
ubreak.c 23 void printTextRange(UChar* str, int32_t start, int32_t end)
30 u_austrncpy(charBuf, str+start, sizeof(charBuf)-1);
32 printf("string[%2d..%2d] \"%s\"\n", start, end-1, charBuf);
41 int32_t start = ubrk_first(boundary); local
42 for (end = ubrk_next(boundary); end != UBRK_DONE; start = end, end =
44 printTextRange(str, start, end );
51 int32_t start; local
53 for (start = ubrk_previous(boundary); start != UBRK_DONE; end = start,
62 int32_t start = ubrk_first(boundary); local
69 int32_t start; local
78 int32_t start; local
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/data/
SessionInfo.java 23 private final long start; field in class:SessionInfo
32 * @param start
38 public SessionInfo(final String id, final long start, final long dump) {
43 this.start = start;
59 return start;
  /frameworks/base/core/java/android/view/
AccessibilityIterators.java 56 protected int[] getRange(int start, int end) {
57 if (start < 0 || end < 0 || start == end) {
60 mSegment[0] = start;
102 int start = offset; local
103 if (start < 0) {
104 start = 0;
106 while (!mImpl.isBoundary(start)) {
107 start = mImpl.following(start);
138 final int start = mImpl.preceding(end); local
187 int start = offset; local
223 final int start = mImpl.preceding(end); local
268 int start = offset; local
305 int start = end - 1; local
    [all...]
  /frameworks/minikin/libs/minikin/
Measurement.cpp 30 size_t start, size_t count, size_t offset) {
32 size_t lastCluster = start;
34 for (size_t i = start; i < offset; i++) {
42 if (offset < start + count && advances[offset - layoutStart] == 0.0f) {
47 for (nextCluster = offset + 1; nextCluster < start + count; nextCluster++) {
54 if (GraphemeBreak::isGraphemeBreak(advances + (start - layoutStart), buf, start, count,
69 float getRunAdvance(const float* advances, const uint16_t* buf, size_t start, size_t count,
71 return getRunAdvance(advances, buf, start, start, count, offset)
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/m68hc11/
branchs12.d 8 0+00 <start> bgt 0x0+48 <L1>
10 0+02 <start\+0x2> bge 0x0+48 <L1>
12 0+04 <start\+0x4> ble 0x0+48 <L1>
14 0+06 <start\+0x6> blt 0x0+48 <L1>
16 0+08 <start\+0x8> bhi 0x0+48 <L1>
18 0+0a <start\+0xa> bcc 0x0+48 <L1>
20 0+0c <start\+0xc> bcc 0x0+48 <L1>
22 0+0e <start\+0xe> beq 0x0+48 <L1>
24 0+10 <start\+0x10> bls 0x0+48 <L1>
26 0+12 <start\+0x12> bcs 0x0+48 <L1
    [all...]
  /device/google/contexthub/firmware/lib/libc/
crt.c 24 callVect *start = (callVect *)from_addr; local
27 const int32_t count = step > 0 ? end - start : start - end;
30 if (&start[step * count] != end)
33 for (; start != end; start += step) {
34 callVect vec = *start;
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
BufFileInput.cpp 38 start( 0 ),
53 int c = buf[start];
57 start++; start %= size;
68 buf[start] = EOF;
85 buf[ (start+len) % size ] = c;
94 if( s[i] != buf[ (start+i) % size ] ) return 0;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
BufFileInput.cpp 38 start( 0 ),
53 int c = buf[start];
57 start++; start %= size;
68 buf[start] = EOF;
85 buf[ (start+len) % size ] = c;
94 if( s[i] != buf[ (start+i) % size ] ) return 0;

Completed in 454 milliseconds

1 2 3 4 5 67 8 91011>>