Searched defs:start (Results 51 - 75 of 555) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/rtsp/
H A DUDPPusher.cpp62 void UDPPusher::start() { function in class:android::UDPPusher
H A DVideoSource.h48 virtual status_t start(MetaData *params) { function in class:android::VideoSource
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DBurstCapture.cpp41 status_t BurstCapture::start(Vector<CameraMetadata> &/*metadatas*/, function in class:android::camera2::BurstCapture
95 jpeg->start(buffers, 1);
/frameworks/base/core/java/android/animation/
H A DTimeAnimator.java34 public void start() { method in class:TimeAnimator
36 super.start();
54 mStartTimeCommitted = true; // do not allow start time to be compensated for jank
/frameworks/base/core/java/android/net/
H A DUidRange.java32 public final int start; field in class:UidRange
36 if (startUid < 0) throw new IllegalArgumentException("Invalid start UID.");
39 start = startUid;
48 return start / PER_USER_RANGE;
54 result = 31 * result + start;
66 return start == other.start && stop == other.stop;
73 return start + "-" + stop;
84 dest.writeInt(start);
92 int start
[all...]
H A DRssiCurve.java39 * {@link #rssiBuckets} to a one-byte array whose element is the fixed score. {@link #start}
41 * {@link #bucketWidth} should be set such that {@code start + bucketWidth} is equal to the
58 public final int start; field in class:RssiCurve
78 * @param start the starting dBm of the curve.
82 public RssiCurve(int start, int bucketWidth, byte[] rssiBuckets) { argument
83 this(start, bucketWidth, rssiBuckets, DEFAULT_ACTIVE_NETWORK_RSSI_BOOST);
89 * @param start the starting dBm of the curve.
94 public RssiCurve(int start, int bucketWidth, byte[] rssiBuckets, int activeNetworkRssiBoost) { argument
95 this.start = start;
[all...]
/frameworks/base/core/java/android/speech/tts/
H A DSynthesisCallback.java22 * {@link #start}, then {@link #audioAvailable} until all audio has been provided, then finally
55 public int start(int sampleRateInHz, int audioFormat, int channelCount); method in interface:SynthesisCallback
80 * This method has to be called if {@link #start} and/or {@link #error} was called.
108 * Check if {@link #start} was called or not.
/frameworks/base/core/java/android/text/
H A DSpanSet.java46 public void init(Spanned spanned, int start, int limit) { argument
47 final E[] allSpans = spanned.getSpans(start, limit, classType);
86 * @param end must be strictly greater than start
88 public boolean hasSpansIntersecting(int start, int end) { argument
91 if (spanStarts[i] >= end || spanEnds[i] <= start) continue;
100 int getNextTransition(int start, int limit) { argument
104 if (spanStart > start && spanStart < limit) limit = spanStart;
105 if (spanEnd > start && spanEnd < limit) limit = spanEnd;
/frameworks/base/core/java/android/text/style/
H A DReplacementSpan.java26 int start, int end,
29 int start, int end, float x,
25 getSize(Paint paint, CharSequence text, int start, int end, Paint.FontMetricsInt fm) argument
28 draw(Canvas canvas, CharSequence text, int start, int end, float x, int top, int y, int bottom, Paint paint) argument
/frameworks/base/core/java/com/android/internal/util/
H A DCharSequences.java40 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;
61 forAsciiBytes(final byte[] bytes, final int start, final int end) argument
86 validate(int start, int end, int length) argument
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DStopWatchMap.java43 public void start() { method in class:StopWatch
46 "Calling start with StopWatch already running");
80 public void start(String stopWatchName) { method in class:StopWatchMap
87 mStopWatches.get(stopWatchName).start();
/frameworks/base/obex/javax/obex/
H A DPrivateInputStream.java145 * @param start the start of the body to array to copy
147 public synchronized void writeBytes(byte[] body, int start) { argument
149 int length = (body.length - start) + (mData.length - mIndex);
153 System.arraycopy(body, start, temp, mData.length - mIndex, body.length - start);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSystemUI.java30 public abstract void start(); method in class:SystemUI
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DSetArcTransmissionStateAction.java54 boolean start() { method in class:SetArcTransmissionStateAction
H A DSystemAudioAutoInitiationAction.java38 boolean start() { method in class:SystemAudioAutoInitiationAction
/frameworks/base/tools/aapt/
H A Dpseudolocalize.h10 virtual String16 start() { return String16(); } function in class:PseudoMethodImpl
34 String16 start();
49 String16 start() { return mImpl->start(); } function in class:Pseudolocalizer
/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DSeekBarBindingAdapter.java39 public static void setListener(SeekBar view, final OnStartTrackingTouch start, argument
41 setListener(view, start, stop, null);
45 public static void setListener(SeekBar view, final OnStartTrackingTouch start, argument
47 setListener(view, start, null, progressChanged);
57 public static void setListener(SeekBar view, final OnStartTrackingTouch start, argument
59 if (start == null && stop == null && progressChanged == null) {
72 if (start != null) {
73 start.onStartTrackingTouch(seekBar);
/frameworks/rs/tests/latency/
H A Dlatency.cpp75 struct timeval start, stop; local
77 gettimeofday(&start, nullptr);
87 long long elapsed = (stop.tv_sec * 1000000) - (start.tv_sec * 1000000) + (stop.tv_usec - start.tv_usec);
91 gettimeofday(&start, nullptr);
102 elapsed = (stop.tv_sec * 1000000) - (start.tv_sec * 1000000) + (stop.tv_usec - start.tv_usec);
/frameworks/support/v4/java/android/support/v4/widget/
H A DTextViewCompat.java38 @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end,
42 @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end,
46 int start, int top, int end, int bottom);
54 @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end,
56 textView.setCompoundDrawables(start, top, end, bottom);
61 @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end,
63 textView.setCompoundDrawablesWithIntrinsicBounds(start, top, end, bottom);
68 int start, int top, int end, int bottom) {
69 textView.setCompoundDrawablesWithIntrinsicBounds(start, top, end, bottom);
78 @Nullable Drawable start,
37 setCompoundDrawablesRelative(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
41 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
45 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, int start, int top, int end, int bottom) argument
53 setCompoundDrawablesRelative(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
60 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
67 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, int start, int top, int end, int bottom) argument
77 setCompoundDrawablesRelative(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
84 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
92 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, int start, int top, int end, int bottom) argument
103 setCompoundDrawablesRelative(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
110 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
119 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, int start, int top, int end, int bottom) argument
154 setCompoundDrawablesRelative(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
174 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
198 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, int start, int top, int end, int bottom) argument
[all...]
/frameworks/support/v4/jellybean-mr2/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatJellybeanMr2.java39 public static void setTextSelection(Object info, int start, int end) { argument
40 ((AccessibilityNodeInfo) info).setTextSelection(start, end);
/frameworks/av/cmds/stagefright/
H A Djpeg.cpp25 static inline uint8_t from565to8(uint16_t p, int start, int bits) { argument
26 uint8_t c = (p >> start) & ((1 << bits) - 1);
/frameworks/av/media/libstagefright/
H A DMediaMuxer.cpp74 ALOGE("addTrack() must be called after constructor and before start().");
92 ALOGE("setOrientationHint() must be called before start().");
108 ALOGE("setLocation() must be called before start().");
120 status_t MediaMuxer::start() { function in class:android::MediaMuxer
125 return mWriter->start(mFileMeta.get());
127 ALOGE("start() is called in invalid state %d", mState);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DarmVCM4P2_GetVLCBits.c56 * [in] start start indicates whether the encoding begins with
96 OMX_U8 start,
121 for (i = start; i < 64;)
91 armVCM4P2_GetVLCBits( const OMX_U8 **ppBitStream, OMX_INT * pBitOffset, OMX_S16 * pDst, OMX_INT shortVideoHeader, OMX_U8 start, OMX_U8 * pLast, OMX_U8 runBeginSingleLevelEntriesL0, OMX_U8 maxIndexForMultipleEntriesL0, OMX_U8 maxRunForMultipleEntriesL1, OMX_U8 maxIndexForMultipleEntriesL1, const OMX_U8 * pRunIndexTableL0, const ARM_VLC32 *pVlcTableL0, const OMX_U8 * pRunIndexTableL1, const ARM_VLC32 *pVlcTableL1, const OMX_U8 * pLMAXTableL0, const OMX_U8 * pLMAXTableL1, const OMX_U8 * pRMAXTableL0, const OMX_U8 * pRMAXTableL1, const OMX_U8 * pZigzagTable ) argument
H A DarmVCM4P2_PutVLCBits.c58 * [in] start start indicates whether the encoding begins with
105 OMX_U8 start,
128 for (i = start, run=0; i < 64; i++)
100 armVCM4P2_PutVLCBits( OMX_U8 **ppBitStream, OMX_INT * pBitOffset, const OMX_S16 *pQDctBlkCoef, OMX_INT shortVideoHeader, OMX_U8 start, OMX_U8 maxStoreRunL0, OMX_U8 maxStoreRunL1, OMX_U8 maxRunForMultipleEntriesL0, OMX_U8 maxRunForMultipleEntriesL1, const OMX_U8 * pRunIndexTableL0, const ARM_VLC32 *pVlcTableL0, const OMX_U8 * pRunIndexTableL1, const ARM_VLC32 *pVlcTableL1, const OMX_U8 * pLMAXTableL0, const OMX_U8 * pLMAXTableL1, const OMX_U8 * pRMAXTableL0, const OMX_U8 * pRMAXTableL1, const OMX_U8 * pZigzagTable ) argument
/frameworks/av/media/libstagefright/wifi-display/source/
H A DMediaPuller.cpp65 status_t MediaPuller::start() { function in class:android::MediaPuller
93 err = mSource->start(params.get());
95 err = mSource->start();
97 ALOGE("source failed to start w/ err %d", err);

Completed in 601 milliseconds

1234567891011>>