Searched refs:done (Results 1 - 25 of 64) sorted by relevance

123

/frameworks/base/core/java/android/speech/tts/
H A DSynthesisCallback.java23 * {@link #done}.
28 * to {@link #done}, it might be discarded.
77 public int done(); method in interface:SynthesisCallback
H A DPlaybackSynthesisCallback.java202 public int done() { method in class:PlaybackSynthesisCallback
203 if (DBG) Log.d(TAG, "done()");
208 Log.w(TAG, "Duplicate call to done()");
221 item.done();
H A DSynthesisPlaybackQueueItem.java103 // OR (c) done() is called in which case it will return null.
154 void done() { method in class:SynthesisPlaybackQueueItem
167 // calling done() don't block the synthesis thread forever. Ideally
208 // been called and done() has not been called.
222 // This is the normal playback loop exit case, when done() was
/frameworks/native/opengl/tests/gl_perfapp/jni/
H A Dgl_code.cpp31 bool done; variable
46 ALOGI("done\n");
51 done = true;
70 if (!done) {
72 done = false;
94 if (! done) {
/frameworks/base/core/jni/
H A Dandroid_graphics_PixelFormat.cpp55 goto done;
60 goto done;
65 goto done;
74 done:
H A Dandroid_backup_BackupDataInput.cpp53 bool done; local
58 err = reader->ReadNextHeader(&done, &type);
59 if (done) {
87 // done
H A Dandroid_server_Watchdog.cpp47 // footer and done
71 goto done;
96 done:
H A Dandroid_ddm_DdmHandleNativeHeap.cpp102 goto done;
122 done:
/frameworks/base/cmds/backup/
H A Dbackup.cpp67 bool done; local
70 while (reader.ReadNextHeader(&done, &type) == 0) {
71 if (done) {
/frameworks/base/cmds/rawbu/
H A Dbackup.cpp313 goto done;
321 goto done;
325 goto done;
337 goto done;
343 goto done;
351 goto done;
358 goto done;
363 done:
389 if (!write_int32(fh, FILE_VERSION)) goto done;
390 if (!write_int32(fh, opt_backupAll)) goto done;
[all...]
/frameworks/base/tools/aapt/
H A DFileFinder.cpp85 bool done = false; local
88 for (size_t i = 0; i < extensions.size() && !done; ++i) {
93 done = true;
/frameworks/base/tools/layoutlib/bridge/src/android/animation/
H A DAnimationThread.java107 mListener.done(result);
143 mListener.done(result);
164 mListener.done(Status.SUCCESS.createResult());
169 mListener.done(Status.ERROR_UNKNOWN.createResult("Error playing animation", throwable));
/frameworks/base/graphics/java/android/graphics/drawable/
H A DTransitionDrawable.java167 boolean done = true;
172 done = false;
180 done = normalized >= 1.0f;
191 if (done) {
192 // the setAlpha() calls below trigger invalidation and redraw. If we're done, just draw
220 if (!done) {
/frameworks/base/core/tests/coretests/src/android/os/
H A DFileObserverTest.java101 boolean done = false;
102 while (!done) {
105 done = true;
/frameworks/base/libs/androidfw/
H A DBackupData.cpp228 BackupDataReader::ReadNextHeader(bool* done, int* type) argument
230 *done = m_done;
239 *done = m_done = true;
246 *done = m_done = (amt == 0);
247 if (*done) {
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DMountServiceTests.java65 boolean done = false; field in class:MountServiceTests.ObbObserver
73 done = true;
79 assertTrue("Expected ObbObserver to have received a state change.", done);
84 assertTrue("Expected ObbObserver to have received a state change.", done);
91 done = false;
95 return done;
/frameworks/native/libs/ui/
H A DPixelFormat.cpp105 goto done;
109 done:
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorSRC.cpp203 uint32_t done = 0; local
268 memcpy((uint8_t*)pBuffer->raw + done, end - mLeftover, todo);
269 done += todo;
280 pBuffer->frameCount = done / (mChannelCnt * 2);
281 ALOGV("getNextBuffer done %d", pBuffer->frameCount);
/frameworks/av/media/libstagefright/include/
H A DID3.h51 bool done() const;
/frameworks/support/v4/java/android/support/v4/content/
H A DAsyncTaskLoader.java45 private CountDownLatch done = new CountDownLatch(1); field in class:AsyncTaskLoader.LoadTask
63 done.countDown();
73 done.countDown();
257 task.done.await();
/frameworks/compile/libbcc/runtime/make/
H A Doptions.mk22 # FIXME: Make this more portable. When that is done, it should probably be the
/frameworks/base/include/androidfw/
H A DBackupHelpers.h110 status_t ReadNextHeader(bool* done, int* type);
/frameworks/av/media/libstagefright/
H A DFragmentedMP4Extractor.cpp333 bool done = false; local
335 while (!done && offset < kMaxScanOffset) {
417 done = true;
/frameworks/av/media/libstagefright/id3/
H A Dtestid3.cpp82 while (!it.done()) {
/frameworks/base/cmds/bmgr/src/com/android/commands/bmgr/
H A DBmgr.java279 boolean done; field in class:Bmgr.RestoreObserver
285 done = true;
301 done = true;
307 // The restoreFinished() callback will throw the 'done' flag; we
310 while (!this.done) {
346 System.out.println("done");
420 // once the restore has finished, close down the session and we're done

Completed in 432 milliseconds

123