Searched refs:START (Results 1 - 25 of 33) sorted by relevance

12

/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DEase.java24 private static final float START = 0.0f; field in class:Ease
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...]
/frameworks/av/media/libmedia/
H A DIAudioRecord.cpp33 START, enumerator in enum:android::__anon474
51 status_t status = remote()->transact(START, data, &reply);
93 case START: {
H A DIAudioTrack.cpp33 START, enumerator in enum:android::__anon475
68 status_t status = remote()->transact(START, data, &reply);
180 case START: {
H A DIMediaRecorder.cpp39 START, enumerator in enum:android::__anon483
244 remote()->transact(START, data, &reply);
323 case START: {
324 ALOGV("START");
H A DIMediaPlayer.cpp38 START, enumerator in enum:android::__anon480
138 remote()->transact(START, data, &reply);
377 case START: {
/frameworks/base/drm/java/android/drm/
H A DDrmStore.java126 public static final int START = 0x00; field in class:DrmStore.Playback
144 case START:
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DPhoneSystemBar.java36 setGravity(Gravity.START | Gravity.TOP | Gravity.RIGHT);
/frameworks/ex/common/java/com/android/common/speech/
H A DLoggingEvents.java112 public static final int START = 14; field in class:LoggingEvents.VoiceIme
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A DVCardParserTests.java38 START, enum constant in enum:VCardParserTests.Order
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/text/
H A DSpannableStringInternal.java105 int ostart = data[i * COLUMNS + START];
108 data[i * COLUMNS + START] = start;
130 mSpanData[mSpanCount * COLUMNS + START] = start;
146 int ostart = data[i * COLUMNS + START];
170 return data[i * COLUMNS + START];
219 int spanStart = data[i * COLUMNS + START];
295 int st = data[i * COLUMNS + START];
368 private static final int START = 0; field in class:SpannableStringInternal
H A DDynamicLayout.java317 mInts.adjustValuesBelow(startline, START, after - before);
334 ints[START] = reflowed.getLineStart(i) |
579 return mInts.getValue(line, START) & START_MASK;
707 private static final int START = 0; field in class:DynamicLayout
708 private static final int DIR = START;
709 private static final int TAB = START;
H A DStaticLayout.java684 lines[off + START] = start;
689 lines[off + mColumns + START] = end;
750 if (where == TextUtils.TruncateAt.START) {
886 return mLines[mColumns * line + START] & START_MASK;
952 private static final int START = 0; field in class:StaticLayout
953 private static final int DIR = START;
954 private static final int TAB = START;
H A DSelection.java458 private static final class START implements NoCopySpan { } class in class:Selection
465 public static final Object SELECTION_START = new START();
/frameworks/base/core/java/android/view/
H A DGravity.java84 /** Raw bit controlling whether the layout direction is relative or not (START/END instead of
115 public static final int START = RELATIVE_LAYOUT_DIRECTION | LEFT; field in class:Gravity
123 public static final int RELATIVE_HORIZONTAL_GRAVITY_MASK = START | END;
407 * if horizontal direction is LTR, then START will set LEFT and END will set RIGHT.
408 * if horizontal direction is RTL, then START will set RIGHT and END will set LEFT.
418 // If layout is script specific and gravity is horizontal relative (START or END)
420 if ((result & Gravity.START) == Gravity.START) {
421 // Remove the START bit
422 result &= ~START;
[all...]
/frameworks/base/core/java/android/net/
H A DDhcpStateMachine.java76 START, enum constant in enum:DhcpStateMachine.DhcpAction
205 if (runDhcp(DhcpAction.START)) {
233 if (runDhcp(DhcpAction.START)) {
338 if (dhcpAction == DhcpAction.START) {
/frameworks/av/include/drm/
H A Ddrm_framework_common.h134 static const int START = 0x00; member in class:android::Playback
/frameworks/base/tests/BiDiTests/src/com/android/bidi/
H A DBiDiTestGridLayoutCodeLtr.java66 Spec col2 = spec(1, START);
H A DBiDiTestGridLayoutCodeRtl.java66 Spec col2 = spec(1, START);
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_imdct_synth.cpp119 #define START 1 macro
254 case START:
/frameworks/base/core/java/com/google/android/mms/pdu/
H A DPduHeaders.java78 public static final int START = 0xAF; field in class:PduHeaders
708 case START:
/frameworks/base/core/java/android/widget/
H A DLinearLayout.java121 @ViewDebug.FlagToString(mask = Gravity.START,
122 equals = Gravity.START, name = "START"),
140 private int mGravity = Gravity.START | Gravity.TOP;
1689 gravity |= Gravity.START;
1794 @ViewDebug.IntToString(from = Gravity.START, to = "START"),
H A DGridLayout.java591 return START;
1039 (horizontal ? START : BASELINE);
1799 * <li>{@link #columnSpec}<code>.alignment</code> = {@link #START} </li>
2174 calculation is always 0 for START and END alignments but we don't make use of this.
2479 * {@link #TOP}, {@link #LEFT}, {@link #BOTTOM}, {@link #RIGHT}, {@link #START},
2590 public static final Alignment START = LEADING; field in class:GridLayout
2616 public static final Alignment LEFT = createSwitchingAlignment(START, END);
2622 public static final Alignment RIGHT = createSwitchingAlignment(END, START);
H A DFrameLayout.java138 * Describes how the foreground is positioned. Defaults to START and TOP.
150 foregroundGravity |= Gravity.START;
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java571 return START;
978 (horizontal ? START : BASELINE);
1734 * <li>{@link #columnSpec}<code>.alignment</code> = {@link #START} </li>
2107 calculation is always 0 for START and END alignments but we don't make use of this.
2411 * {@link #TOP}, {@link #LEFT}, {@link #BOTTOM}, {@link #RIGHT}, {@link #START},
2521 public static final Alignment START = LEADING; field in class:GridLayout
2547 public static final Alignment LEFT = createSwitchingAlignment(START, END);
2553 public static final Alignment RIGHT = createSwitchingAlignment(END, START);
/frameworks/av/media/libstagefright/
H A DAwesomePlayer.cpp880 Playback::START, position / 1000);
1359 Playback::START, mSeekTimeUs / 1000);
1575 Playback::START, videoTimeUs / 1000);

Completed in 678 milliseconds

12