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

/frameworks/av/media/libmedia/
H A DIAudioRecord.cpp33 START, enumerator in enum:android::__anon477
51 status_t status = remote()->transact(START, data, &reply);
93 case START: {
H A DIAudioTrack.cpp33 START, enumerator in enum:android::__anon478
68 status_t status = remote()->transact(START, data, &reply);
180 case START: {
H A DIMediaRecorder.cpp39 START, enumerator in enum:android::__anon487
244 remote()->transact(START, data, &reply);
323 case START: {
324 ALOGV("START");
H A DIMediaPlayer.cpp38 START, enumerator in enum:android::__anon484
139 remote()->transact(START, data, &reply);
396 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/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/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/camera2/
H A DCaptureSequencer.h113 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.java458 private static final class START implements NoCopySpan { } class in class:Selection
465 public static final Object SELECTION_START = new START();
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.java666 lines[off + START] = start;
671 lines[off + mColumns + START] = end;
732 if (where == TextUtils.TruncateAt.START) {
868 return mLines[mColumns * line + START] & START_MASK;
934 private static final int START = 0; field in class:StaticLayout
935 private static final int DIR = START;
936 private static final int TAB = START;
H A DTextUtils.java1008 START, enum constant in enum:TextUtils.TruncateAt
1108 } 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.java497 * axis (X or Y) will fit exactly. START aligns the result to the
500 START (1), enum constant in enum:Matrix.ScaleToFit
/frameworks/opt/mms/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.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);
/frameworks/opt/telephony/src/java/android/provider/
H A DTelephony.java1064 public static final String START = "start"; field in interface:Telephony.BaseMmsColumns
/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);

Completed in 1636 milliseconds