Searched defs:START (Results 1 - 25 of 26) sorted by relevance

12

/frameworks/av/media/libmedia/
H A DIAudioRecord.cpp33 START, enumerator in enum:android::__anon246
51 status_t status = remote()->transact(START, data, &reply);
77 case START: {
H A DIAudioTrack.cpp33 START, enumerator in enum:android::__anon247
74 status_t status = remote()->transact(START, data, &reply);
213 case START: {
H A DIMediaRecorder.cpp41 START, enumerator in enum:android::__anon262
257 remote()->transact(START, data, &reply);
336 case START: {
337 ALOGV("START");
H A DIMediaPlayer.cpp39 START, enumerator in enum:android::__anon259
146 remote()->transact(START, data, &reply);
411 case START: {
/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/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_imdct_synth.cpp119 #define START 1 macro
254 case START:
/frameworks/base/services/core/java/com/android/server/notification/
H A DRankingReconsideration.java28 private static final int START = 0; field in class:RankingReconsideration
44 mState = START;
52 if (mState == START) {
69 if (mState == START) { // can't cancel if running or done
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A DVCardParserTests.java39 START, enum constant in enum:VCardParserTests.Order
69 inspectOrder(Order.START);
98 interpreter.addExpectedOrder(Order.START)
116 interpreter.addExpectedOrder(Order.START)
150 interpreter.addExpectedOrder(Order.START)
182 interpreter.addExpectedOrder(Order.START)
223 interpreter.addExpectedOrder(Order.START)
/frameworks/support/v4/java/android/support/v4/view/
H A DGravityCompat.java97 /** Raw bit controlling whether the layout direction is relative or not (START/END instead of
103 public static final int START = RELATIVE_LAYOUT_DIRECTION | Gravity.LEFT; field in class:GravityCompat
111 public static final int RELATIVE_HORIZONTAL_GRAVITY_MASK = START | END;
192 * if horizontal direction is LTR, then START will set LEFT and END will set RIGHT.
193 * if horizontal direction is RTL, then START will set RIGHT and END will set LEFT.
/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/av/services/camera/libcameraservice/api1/client2/
H A DCaptureSequencer.h114 START, enumerator in enum:android::camera2::CaptureSequencer::CaptureState
/frameworks/base/core/java/android/net/
H A DDhcpStateMachine.java76 START, enum constant in enum:DhcpStateMachine.DhcpAction
220 if (runDhcp(DhcpAction.START)) {
248 if (runDhcp(DhcpAction.START)) {
353 if (dhcpAction == DhcpAction.START) {
/frameworks/base/core/java/android/text/
H A DSelection.java467 private static final class START implements NoCopySpan { } class in class:Selection
474 public static final Object SELECTION_START = new START();
H A DSpannableStringInternal.java107 int ostart = data[i * COLUMNS + START];
110 data[i * COLUMNS + START] = start;
132 mSpanData[mSpanCount * COLUMNS + START] = start;
148 int ostart = data[i * COLUMNS + START];
172 return data[i * COLUMNS + START];
221 int spanStart = data[i * COLUMNS + START];
297 int st = data[i * COLUMNS + START];
419 private static final int START = 0; field in class:SpannableStringInternal
H A DDynamicLayout.java318 mInts.adjustValuesBelow(startline, START, after - before);
335 ints[START] = reflowed.getLineStart(i) |
597 return mInts.getValue(line, START) & START_MASK;
727 private static final int START = 0; field in class:DynamicLayout
728 private static final int DIR = START;
729 private static final int TAB = START;
H A DStaticLayout.java597 lines[off + START] = start;
602 lines[off + mColumns + START] = end;
661 if (where == TextUtils.TruncateAt.START) {
797 return mLines[mColumns * line + START] & START_MASK;
868 private static final int START = 0; field in class:StaticLayout
869 private static final int DIR = START;
870 private static final int TAB = START;
H A DTextUtils.java1042 START, enum constant in enum:TextUtils.TruncateAt
1137 } else if (where == TruncateAt.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;
404 * if horizontal direction is LTR, then START will set LEFT and END will set RIGHT.
405 * if horizontal direction is RTL, then START will set RIGHT and END will set LEFT.
414 // If layout is script specific and gravity is horizontal relative (START or END)
416 if ((result & Gravity.START) == Gravity.START) {
417 // Remove the START bit
418 result &= ~START;
[all...]
/frameworks/ex/common/java/com/android/common/speech/
H A DLoggingEvents.java112 public static final int START = 14; field in class:LoggingEvents.VoiceIme
/frameworks/av/include/drm/
H A Ddrm_framework_common.h134 static const int START = 0x00; member in class:android::Playback
/frameworks/base/graphics/java/android/graphics/
H A DMatrix.java536 * axis (X or Y) will fit exactly. START aligns the result to the
539 START (1), enum constant in enum:Matrix.ScaleToFit
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DCameraStreamer.java748 public static final int START = 1; field in class:CameraStreamer.Event
901 case Event.START:
1179 pushEvent(Event.START, true);
1730 mCameraRunner.pushEvent(Event.START, true);
/frameworks/opt/telephony/src/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 DGridLayout.java641 return START;
1098 (horizontal ? START : BASELINE);
1987 * <li>{@link #columnSpec}<code>.alignment</code> = {@link #START} </li>
2373 calculation is always 0 for START and END alignments but we don't make use of this.
2745 * {@link #TOP}, {@link #LEFT}, {@link #BOTTOM}, {@link #RIGHT}, {@link #START},
2856 public static final Alignment START = LEADING; field in class:GridLayout
2882 public static final Alignment LEFT = createSwitchingAlignment(START, END);
2888 public static final Alignment RIGHT = createSwitchingAlignment(END, START);
/frameworks/opt/telephony/src/java/android/provider/
H A DTelephony.java1512 public static final String START = "start"; field in interface:Telephony.BaseMmsColumns

Completed in 1554 milliseconds

12