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

1 2 3 4 5 6 7 891011>>

  /external/toybox/scripts/
mktags.c 24 // by ) at start of line.
40 char *start; local
46 start = ++s;
51 printf("#define %s_%*.*s %d\n", tag, -40, (int)(s-start), start, idx);
52 printf("#define _%s_%*.*s (1%s<<%d)\n", tag, -39, (int)(s-start), start,
  /frameworks/base/core/java/android/text/
SpannableString.java 46 private SpannableString(CharSequence source, int start, int end) {
48 super(source, start, end, false /* ignoreNoCopySpan */);
59 public void setSpan(Object what, int start, int end, int flags) {
60 super.setSpan(what, start, end, flags);
67 public final CharSequence subSequence(int start, int end) {
68 return new SpannableString(this, start, end);
  /packages/apps/Dialer/java/com/android/dialer/smartdial/util/
SmartDialMatchPosition.java 23 * Stores information about a range of characters matched in a display name The integers start and
24 * end indicate that the range start to end (exclusive) correspond to some characters in the query.
32 public int start; field in class:SmartDialMatchPosition
35 public SmartDialMatchPosition(int start, int end) {
36 this.start = start;
62 LogUtil.d(TAG, "[" + m.start + "," + m.end + "]");
67 this.start += toAdvance;
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/cris/
labfloat.d 8 0+ <start>:
9 [ ]+0:[ ]+6f4e 0600 0000[ ]+move.d 6 <start\+0x6>,\$?r4
11 [ ]+6:[ ]+ef4e 0600 0000[ ]+cmp\.d 6 <start\+0x6>,\$?r4
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mmix/
loc10.d 1 #ld: -m elf64mmix --defsym __.MMIX.start..text=0x8000000000000000
4 # Setting file start through the special symbol.
10 8000000000000000 g \*ABS\* 0+ __\.MMIX\.start\.\.text
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CatchTable.java 96 /** {@code >= 0;} start address */
97 private final int start; field in class:CatchTable.Entry
99 /** {@code > start;} end address (exclusive) */
108 * @param start {@code >= 0;} start address
109 * @param end {@code > start;} end address (exclusive)
112 public Entry(int start, int end, CatchHandlerList handlers) {
113 if (start < 0) {
114 throw new IllegalArgumentException("start < 0");
117 if (end <= start) {
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
CatchTable.java 96 /** {@code >= 0;} start address */
97 private final int start; field in class:CatchTable.Entry
99 /** {@code > start;} end address (exclusive) */
108 * @param start {@code >= 0;} start address
109 * @param end {@code > start;} end address (exclusive)
112 public Entry(int start, int end, CatchHandlerList handlers) {
113 if (start < 0) {
114 throw new IllegalArgumentException("start < 0");
117 if (end <= start) {
    [all...]
  /external/guice/core/src/com/google/inject/internal/util/
Stopwatch.java 29 private long start = System.currentTimeMillis(); field in class:Stopwatch
37 return now - start;
39 start = now;
  /external/mesa3d/src/gallium/auxiliary/util/
u_index_modify.h 34 unsigned start,
42 unsigned start, unsigned count,
49 unsigned start, unsigned count,
  /external/slf4j/slf4j-ext/src/test/java/org/slf4j/profiler/
BasicProfilerDemo.java 58 profiler.start("A");
61 profiler.start("B");
64 profiler.start("OTHER");
  /external/toybox/toys/android/
start.c 0 /* start.c - Start/stop system services.
5 USE_START(NEWTOY(start, "", TOYFLAG_USR|TOYFLAG_SBIN))
8 config START
9 bool "start"
13 usage: start [SERVICE...]
32 static void start_stop(int start)
34 char *property = start ? "ctl.start" : "ctl.stop";
45 if (!start) ss = services+ARRAY_LEN(services)-2, direction = -1
    [all...]
  /frameworks/base/core/java/android/animation/
FloatArrayEvaluator.java 58 * @param startValue The start value.
71 float start = startValue[i]; local
73 array[i] = start + (fraction * (end - start));
IntArrayEvaluator.java 57 * @param startValue The start value.
69 int start = startValue[i]; local
71 array[i] = (int) (start + (fraction * (end - start)));
  /frameworks/base/core/java/com/android/internal/util/
CharSequences.java 40 public CharSequence subSequence(int start, int end) {
41 return forAsciiBytes(bytes, start, end);
55 * @param start index, inclusive
58 * @throws IndexOutOfBoundsException if start or end are negative, if end
59 * is greater than length(), or if start is greater than end
62 final int start, final int end) {
63 validate(start, end, bytes.length);
66 return (char) bytes[index + start];
70 return end - start;
74 newStart -= start;
    [all...]
  /hardware/interfaces/gnss/1.0/default/
ThreadCreationWrapper.h 33 ThreadFuncArgs(void (*start)(void*), void* arg) : fptr(start), args(arg) {}
50 * holds the pointers to the thread arguments. The arg and start parameters are
55 pthread_t createPthread(const char* name, void (*start)(void*), void* arg,
  /libcore/ojluni/src/main/java/java/text/
CharacterIteratorFieldDelegate.java 56 public void formatted(Format.Field attr, Object value, int start, int end,
58 if (start != end) {
59 if (start < size) {
64 while (start < index) {
68 int aStart = Math.max(0, start - newIndex);
71 end - start, as.length() - aStart) +
76 if (size < start) {
79 buffer.substring(size, start)));
80 size = start;
84 int aStart = Math.max(start, size)
    [all...]
  /libcore/ojluni/src/main/java/sun/util/locale/
StringTokenIterator.java 39 private int start; field in class:StringTokenIterator
63 return start;
76 start = end + 1;
77 end = nextDelimiter(start);
78 token = text.substring(start, end);
80 start = end;
95 start = offset;
96 end = nextDelimiter(start);
97 token = text.substring(start, end);
108 private int nextDelimiter(int start) {
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-aarch64/
ifunc-4.s 8 .type start,"function"
9 .global start
10 start: label
ifunc-5-local.s 7 .type start,"function"
8 .global start
9 start: label
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-ifunc/
ifunc-4-local-x86.s 7 .type start,"function"
8 .global start
9 start: label
ifunc-4-x86.s 8 .type start,"function"
9 .global start
10 start: label
ifunc-5-local-x86-64.s 7 .type start,"function"
8 .global start
9 start: label
ifunc-5-x86-64.s 8 .type start,"function"
9 .global start
10 start: label
ifunc-6-x86-64.s 9 .type start,"function"
10 .global start
11 start: label
ifunc-7-x86-64.s 9 .type start,"function"
10 .global start
11 start: label

Completed in 414 milliseconds

1 2 3 4 5 6 7 891011>>