Searched defs:start (Results 151 - 175 of 488) sorted by relevance

1234567891011>>

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
H A DSparseWeakArray.java306 private static int binarySearch(long[] a, int start, int len, long key) { argument
307 int high = start + len, low = start - 1, guess;
318 if (high == start + len)
319 return ~(start + len);
/frameworks/ex/variablespeed/src/com/android/ex/variablespeed/
H A DSingleThreadedMediaPlayerProxy.java83 public synchronized void start() { method in class:SingleThreadedMediaPlayerProxy
84 mDelegate.start();
/frameworks/minikin/sample/
H A Dexample_skia.cpp88 size_t start = 0; local
99 canvas->drawPosText(glyphs + start, (i - start) << 1, pos + start, *paint);
100 start = i;
105 canvas->drawPosText(glyphs + start, (nGlyphs - start) << 1, pos + start, *paint);
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
H A DBluetoothPbapObexSession.java54 public void start(Handler handler) { method in class:BluetoothPbapObexSession
55 Log.d(TAG, "start");
61 mObexClientThread.start();
/frameworks/opt/chips/src/com/android/ex/chips/recipientchip/
H A DInvisibleRecipientChip.java95 public void draw(final Canvas canvas, final CharSequence text, final int start, final int end, argument
101 public int getSize(final Paint paint, final CharSequence text, final int start, final int end, argument
H A DReplacementDrawableSpan.java50 public void draw(Canvas canvas, CharSequence charSequence, int start, int end, float x, int top, argument
/frameworks/support/v4/ics/android/support/v4/view/
H A DViewPropertyAnimatorCompatICS.java129 public static void start(View view) { method in class:ViewPropertyAnimatorCompatICS
130 view.animate().start();
/frameworks/support/v4/java/android/support/v4/text/
H A DTextDirectionHeuristicsCompat.java124 public boolean isRtl(char[] array, int start, int count) { argument
125 return isRtl(CharBuffer.wrap(array), start, count);
129 public boolean isRtl(CharSequence cs, int start, int count) { argument
130 if (cs == null || start < 0 || count < 0 || cs.length() - count < start) {
136 return doCheck(cs, start, count);
139 private boolean doCheck(CharSequence cs, int start, int count) { argument
140 switch(mAlgorithm.checkRtl(cs, start, count)) {
173 int checkRtl(CharSequence cs, int start, int count); argument
182 public int checkRtl(CharSequence cs, int start, in argument
205 checkRtl(CharSequence cs, int start, int count) argument
[all...]
/frameworks/volley/src/com/android/volley/
H A DRequestQueue.java71 /** Number of network request dispatcher threads to start. */
90 * Creates the worker pool. Processing will not begin until {@link #start()} is called.
106 * Creates the worker pool. Processing will not begin until {@link #start()} is called.
118 * Creates the worker pool. Processing will not begin until {@link #start()} is called.
130 public void start() { method in class:RequestQueue
132 // Create the cache dispatcher and start it.
134 mCacheDispatcher.start();
141 networkDispatcher.start();
/frameworks/volley/src/com/android/volley/toolbox/
H A DBasicNetwork.java204 protected void logError(String what, String url, long start) { argument
206 VolleyLog.v("HTTP ERROR(%s) %d ms to fetch %s", what, (now - start), url);
/frameworks/av/cmds/screenrecord/
H A DOverlay.cpp58 status_t Overlay::start(const sp<IGraphicBufferProducer>& outputSurface, function in class:Overlay
60 ALOGV("Overlay::start");
82 ALOGE("Failed to start overlay thread: err=%d", mThreadResult);
87 ALOGV("Overlay::start successful");
/frameworks/av/cmds/stagefright/
H A DSimplePlayer.cpp89 status_t SimplePlayer::start() { function in class:android::SimplePlayer
289 mCodecLooper->start();
345 status_t err = state->mCodec->start();
607 state->mAudioTrack->start();
H A Drecordvideo.cpp76 virtual status_t start(MetaData *params __unused) { function in class:DummySource
305 int64_t start = systemTime(); local
306 CHECK_EQ((status_t)OK, writer->start());
320 fprintf(stderr, "encoding %d frames in %" PRId64 " us\n", nFrames, (end-start)/1000);
321 fprintf(stderr, "encoding speed is: %.2f fps\n", (nFrames * 1E9) / (end-start));
/frameworks/av/media/libmedia/
H A DCharacterEncodingDetector.cpp244 char *start = buffer; local
245 while (*start == ' ') {
246 start++;
248 mValues.setEntry(i, start);
453 int start = 0; local
455 int mid = (start+end)/2;
457 while(start <= end) {
461 start = mid + 1;
466 mid = (start + end) / 2;
H A DIAudioTrack.cpp70 virtual status_t start() function in class:android::BpAudioTrack
78 ALOGW("start() error: %s", strerror(-status));
215 reply->writeInt32(start());
H A Dmediarecorder.cpp485 status_t MediaRecorder::start() function in class:android::MediaRecorder
487 ALOGV("start");
493 ALOGE("start called in an invalid state: %d", mCurrentState);
497 status_t ret = mMediaRecorder->start();
499 ALOGE("start failed: %d", ret);
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerFactory.cpp275 int start = lenURL - len; local
276 if (start > 0) {
277 if (!strncasecmp(url + start, FILE_EXTS[i], len)) {
H A DMediaRecorderClient.cpp234 status_t MediaRecorderClient::start() function in class:android::MediaRecorderClient
236 ALOGV("start");
242 return mRecorder->start();
H A DMidiFile.cpp207 status_t MidiFile::start() function in class:android::MidiFile
209 ALOGV("MidiFile::start");
511 // start audio output if necessary
514 mAudioSink->start();
H A DStagefrightPlayer.cpp89 status_t StagefrightPlayer::start() { function in class:android::StagefrightPlayer
90 ALOGV("start");
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DHTTPLiveSource.cpp79 mLiveLooper->start();
97 void NuPlayer::HTTPLiveSource::start() { function in class:android::NuPlayer::HTTPLiveSource
/frameworks/av/media/libstagefright/
H A DAACExtractor.cpp44 virtual status_t start(MetaData *params = NULL);
255 status_t AACSource::start(MetaData * /* params */) { function in class:android::AACSource
H A DAACWriter.cpp116 status_t AACWriter::start(MetaData * /* params */) { function in class:android::AACWriter
137 status_t err = mSource->start();
249 * 1 bit of copyright start. Set to 0.
279 // 4 bits from originality to copyright start
H A DAMRExtractor.cpp42 virtual status_t start(MetaData *params = NULL);
224 status_t AMRSource::start(MetaData * /* params */) { function in class:android::AMRSource
H A DAudioSource.cpp101 status_t AudioSource::start(MetaData *params) { function in class:android::AudioSource
119 status_t err = mRecord->start();

Completed in 518 milliseconds

1234567891011>>