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

1234567891011>>

/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/minikin/include/minikin/
H A DFontCollection.h37 int start; member in struct:android::FontCollection::Run
61 size_t start; member in struct:android::FontCollection::Range
/frameworks/rs/tests/latency/
H A Dlatency.cpp75 struct timeval start, stop; local
77 gettimeofday(&start, NULL);
87 long long elapsed = (stop.tv_sec * 1000000) - (start.tv_sec * 1000000) + (stop.tv_usec - start.tv_usec);
91 gettimeofday(&start, NULL);
102 elapsed = (stop.tv_sec * 1000000) - (start.tv_sec * 1000000) + (stop.tv_usec - start.tv_usec);
/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/libmediaplayerservice/nuplayer/
H A DStreamingSource.cpp52 void NuPlayer::StreamingSource::start() { function in class:android::NuPlayer::StreamingSource
64 mStreamListener->start();
/frameworks/av/media/libstagefright/
H A DMediaMuxer.cpp89 ALOGE("addTrack() must be called after constructor and before start().");
107 ALOGE("setOrientationHint() must be called before start().");
123 ALOGE("setLocation() must be called before start().");
135 status_t MediaMuxer::start() { function in class:android::MediaMuxer
140 return mWriter->start(mFileMeta.get());
142 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.c41 * [in] start start indicates whether the encoding begins with
81 OMX_U8 start,
106 for (i = start; i < 64;)
76 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.c43 * [in] start start indicates whether the encoding begins with
90 OMX_U8 start,
113 for (i = start, run=0; i < 64; i++)
85 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/rtsp/
H A DVideoSource.h48 virtual status_t start(MetaData *params) { function in class:android::VideoSource
/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);
/frameworks/base/core/java/android/animation/
H A DStateListAnimator.java149 start(match);
153 private void start(Tuple match) { method in class:StateListAnimator
156 mRunningAnimator.start();
/frameworks/base/core/java/android/os/
H A DSystemService.java60 /** Request that the init daemon start a named service. */
61 public static void start(String name) { method in class:SystemService
62 SystemProperties.set("ctl.start", name);
/frameworks/base/core/java/android/print/
H A DPageRange.java23 * Represents a range of pages. The start and end page indices of
39 * @param start The start page index (zero based and inclusive).
42 * @throws IllegalArgumentException If start is less than zero or end
43 * is less than zero or start greater than end.
45 public PageRange(int start, int end) { argument
46 if (start < 0) {
47 throw new IllegalArgumentException("start cannot be less than zero.");
52 if (start > end) {
53 throw new IllegalArgumentException("start mus
[all...]
/frameworks/base/core/java/android/speech/tts/
H A DAudioPlaybackHandler.java37 public void start() { method in class:AudioPlaybackHandler
38 mHandlerThread.start();
/frameworks/base/core/java/android/text/
H A DAndroidCharacter.java57 * starting at <code>start</code>. East Asian Width is calculated based on
65 * @param start first character in array to measure
69 public native static void getEastAsianWidths(char[] src, int start, argument
78 * @param start first character in array to mirror
82 public native static boolean mirror(char[] text, int start, int count); argument
H A DEditable.java30 * Editable with a copy of the slice <code>start&hellip;end</code> from
48 public Editable replace(int st, int en, CharSequence source, int start, int end); argument
57 * Convenience for replace(where, where, text, start, end)
60 public Editable insert(int where, CharSequence text, int start, int end); argument
81 * Convenience for replace(length(), length(), text, start, end)
84 public Editable append(CharSequence text, int start, int end); argument
H A DGraphicsOperations.java33 void drawText(Canvas c, int start, int end, argument
40 void drawTextRun(Canvas c, int start, int end, int contextStart, int contextEnd, argument
46 float measureText(int start, int end, Paint p); argument
51 public int getTextWidths(int start, int end, float[] widths, Paint p); argument
57 float getTextRunAdvances(int start, int end, int contextStart, int contextEnd, argument
H A DLoginFilter.java43 * with the new text from the range <code>start &hellip; end</code>
50 public CharSequence filter(CharSequence source, int start, int end, argument
65 for (int i = start; i < end; i++) {
75 modification = new SpannableStringBuilder(source, start, end);
76 modoff = i - start;
101 * Called when we start processing filter.
/frameworks/base/core/java/android/text/method/
H A DDigitsKeyListener.java138 public CharSequence filter(CharSequence source, int start, int end, argument
140 CharSequence out = super.filter(source, start, end, dest, dstart, dend);
148 start = 0;
188 for (int i = end - 1; i >= start; i--) {
193 if (i != start || dstart != 0) {
209 if (end == start + 1) {
214 stripped = new SpannableStringBuilder(source, start, end);
217 stripped.delete(i - start, i + 1 - start);
H A DNumberKeyListener.java47 public CharSequence filter(CharSequence source, int start, int end, argument
53 for (i = start; i < end; i++) {
64 if (end - start == 1) {
70 new SpannableStringBuilder(source, start, end);
71 i -= start;
72 end -= start;
74 int len = end - start;
H A DWordIterator.java58 public void setCharSequence(CharSequence charSequence, int start, int end) { argument
59 mOffsetShift = Math.max(0, start - WINDOW_WIDTH);

Completed in 561 milliseconds

1234567891011>>