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

1 2 3 4 5 6

  /external/nist-sip/java/gov/nist/javax/sip/parser/
TokenTypes.java 35 public static final int START = LexerCore.START;
40 public static final int SIP = START + 3;
41 public static final int REGISTER = START + 4;
42 public static final int INVITE = START + 5;
43 public static final int ACK = START + 6;
44 public static final int BYE = START + 7;
45 public static final int OPTIONS = START + 8;
46 public static final int CANCEL = START + 9;
47 public static final int ERROR_INFO = START + 10
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
Ease.java 24 private static final float START = 0.0f;
37 return DOMAIN*(input/=DURATION)*input*input + START;
42 return DOMAIN*((input=input/DURATION-1)*input*input + 1) + START;
48 (DOMAIN/2*input*input*input + START)
49 : (DOMAIN/2*((input-=2)*input*input + 2) + START);
57 return DOMAIN*(input/=DURATION)*input + START;
62 return -DOMAIN *(input/=DURATION)*(input-2) + START;
68 (DOMAIN/2*input*input + START)
69 : (-DOMAIN/2 * ((--input)*(input-2) - 1) + START);
77 return DOMAIN*(input/=DURATION)*input*input*input + START;
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/format/
PrefixHighligherTest.java 27 /** The HTML code used to mark the start of the highlighted part. */
28 private static final String START = "<font color =\"#1ff0000\">";
57 SpannedTestUtils.checkHtmlText(START + "te" + END + "st", mView);
60 SpannedTestUtils.checkHtmlText(START + "Te" + END + "st", mView);
63 SpannedTestUtils.checkHtmlText(START + "TE" + END + "st", mView);
66 SpannedTestUtils.checkHtmlText("a " + START + "te" + END + "st", mView);
76 SpannedTestUtils.checkHtmlText("a " +START + "te" + END + "st's tests are not tests",
88 SpannedTestUtils.checkHtmlText("atest " + START + "te" + END + "st", mView);
  /cts/tools/dasm/src/java_cup/
sym.java 31 static final int START = 12;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
TextEntryState.java 29 private static final int START = 1;
98 setState(START);
108 setState(START);
136 case START:
143 setState(START);
148 setState(START);
154 setState(START);
177 setState(START);
207 case START: return "START";
    [all...]
  /external/nist-sip/java/gov/nist/core/
LexerCore.java 40 // IMPORTANT - All keyword matches should be between START and END
41 public static final int START = 2048;
42 public static final int END = START + 2048;
106 if (value > START) {
208 if (tok > START && tok < END) {
  /external/e2fsprogs/contrib/
e2croncheck 32 START="$(date +'%Y%m%d%H%M%S')"
37 tune2fs -C 0 -T "${START}" "/dev/${VG}/${VOLUME}"
  /cts/tests/tests/graphics/src/android/graphics/cts/
Matrix_ScaleToFitTest.java 37 assertEquals( ScaleToFit.START,scaleToFits[1]);
49 assertEquals( ScaleToFit.START,ScaleToFit.valueOf("START"));
62 assertEquals(ScaleToFit.START, ScaleToFit.valueOf(ScaleToFit.class,
63 "START"));
  /external/openssl/crypto/rc2/
rc2speed.c 135 #define START 0
144 if (s == START)
159 if (s == START)
202 Time_F(START);
221 Time_F(START);
239 Time_F(START);
261 Time_F(START);
  /external/openssl/crypto/bn/
bnspeed.c 125 #define START 0
134 if (s == START)
149 if (s == START)
197 Time_F(START);
210 Time_F(START);
225 Time_F(START);
  /external/openssl/crypto/rc4/
rc4speed.c 135 #define START 0
144 if (s == START)
159 if (s == START)
202 Time_F(START);
220 Time_F(START);
238 Time_F(START);
  /frameworks/base/media/libmedia/
IAudioRecord.cpp 33 START,
45 virtual status_t start() function in class:android::BpAudioRecord
49 status_t status = remote()->transact(START, data, &reply);
53 LOGW("start() error: %s", strerror(-status));
91 case START: {
93 reply->writeInt32(start());
IAudioTrack.cpp 33 START,
49 virtual status_t start() function in class:android::BpAudioTrack
53 status_t status = remote()->transact(START, data, &reply);
57 LOGW("start() error: %s", strerror(-status));
131 case START: {
133 reply->writeInt32(start());
  /external/openssl/crypto/des/
speed.c 140 #define START 0
149 if (s == START)
164 if (s == START)
209 Time_F(START);
230 Time_F(START);
243 Time_F(START);
262 Time_F(START);
279 Time_F(START);
298 Time_F(START);
  /packages/apps/Contacts/tests/src/com/android/contacts/list/
ContactListItemViewTest.java 38 /** The HTML code used to mark the start of the highlighted part. */
39 private static final String START = "<font color =\"#99cc00\">";
89 SpannedTestUtils.checkHtmlText("John " + START + "Doe" + END,
100 SpannedTestUtils.checkHtmlText("John " + START + "Doe" + END,
108 SpannedTestUtils.checkHtmlText("This is a " + START + "test" + END,
  /external/elfutils/libelf/
abstract.h 20 START (Bits, Ehdr, Ext##Ehdr) \
46 START (32, Phdr, Ext##Phdr) \
57 START (64, Phdr, Ext##Phdr) \
71 START (32, Shdr, Ext##Shdr) \
84 START (64, Shdr, Ext##Shdr) \
100 START (32, Sym, Ext##Sym) \
111 START (64, Sym, Ext##Sym) \
125 START (32, Rel, Ext##Rel) \
130 START (64, Rel, Ext##Rel) \
136 START (32, Rela, Ext##Rela)
    [all...]
exttypes.h 40 #define START(Bits, Name, EName) typedef struct {
80 #undef START
  /frameworks/base/drm/java/android/drm/
DrmStore.java 100 public static final int START = 0x00;
118 case START:
  /external/doclava/src/com/google/doclava/
FieldInfo.java 230 final int START = 0;
236 int state = START;
241 case START:
252 state = START;
256 state = START;
260 state = START;
264 state = START;
268 state = START;
272 state = START;
276 state = START;
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
PhoneSystemBar.java 36 setGravity(Gravity.START | Gravity.TOP | Gravity.RIGHT);
  /frameworks/ex/common/java/com/android/common/speech/
LoggingEvents.java 112 public static final int START = 14;
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/
VCardParserTests.java 38 START,
68 inspectOrder(Order.START);
97 interpreter.addExpectedOrder(Order.START)
115 interpreter.addExpectedOrder(Order.START)
149 interpreter.addExpectedOrder(Order.START)
190 interpreter.addExpectedOrder(Order.START)
  /frameworks/base/core/java/android/view/
Gravity.java 84 /** Raw bit controlling whether the layout direction is relative or not (START/END instead of
114 /** Push object to x-axis position at the start of its container, not changing its size. */
115 public static final int START = RELATIVE_LAYOUT_DIRECTION | LEFT;
123 public static final int RELATIVE_HORIZONTAL_GRAVITY_MASK = START | END;
347 * if horizontal direction is LTR, then START will set LEFT and END will set RIGHT.
348 * if horizontal direction is RTL, then START will set RIGHT and END will set LEFT.
357 // If layout is script specific and gravity is horizontal relative (START or END)
359 if ((result & Gravity.START) == Gravity.START) {
360 // Remove the START bi
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
HprofData.java 36 * <li>the start time of the last sampling period
37 * <li>the history of thread start and end events
43 public static enum ThreadEventType { START, END };
59 public static ThreadEvent start(int objectId, int threadId, String threadName, method in class:HprofData.ThreadEvent
61 return new ThreadEvent(ThreadEventType.START, objectId, threadId,
74 this.type = ThreadEventType.START;
124 case START:
126 "THREAD START (obj=%d, id = %d, name=\"%s\", group=\"%s\")",
240 * Start of last sampling period.
260 * Map of thread id to a start ThreadEven
    [all...]
  /frameworks/base/core/java/android/text/
SpannableStringInternal.java 26 int start, int end) {
27 if (start == 0 && end == source.length())
30 mText = source.toString().substring(start, end);
38 Object[] spans = sp.getSpans(start, end, Object.class);
45 if (st < start)
46 st = start;
50 setSpan(spans[i], st - start, en - start, fl);
69 public final void getChars(int start, int end, char[] dest, int off) {
70 mText.getChars(start, end, dest, off)
    [all...]

Completed in 879 milliseconds

1 2 3 4 5 6