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
/frameworks/base/opengl/tests/gl_perfapp/jni/
H A Dgl_code.cpp31 bool done; variable
46 LOGI("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_database_SQLiteDatabase.cpp85 // register the logging func on sqlite. needs to be done BEFORE any sqlite3 func is called.
110 // register the logging func on sqlite. needs to be done BEFORE any sqlite3 func is called.
126 goto done;
139 goto done;
148 goto done;
156 goto done;
162 goto done;
170 goto done;
177 done:
282 goto done;
[all...]
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.cpp308 goto done;
316 goto done;
320 goto done;
327 goto done;
333 goto done;
341 goto done;
348 goto done;
353 done:
376 if (!write_int32(fh, FILE_VERSION)) goto done;
377 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.java101 mListener.done(result);
137 mListener.done(result);
158 mListener.done(Status.SUCCESS.createResult());
163 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/core/tests/coretests/src/com/android/server/
H A DMountServiceTests.java63 boolean done = false; field in class:MountServiceTests.ObbObserver
71 done = true;
77 assertTrue("Expected ObbObserver to have received a state change.", done);
82 assertTrue("Expected ObbObserver to have received a state change.", done);
89 done = false;
93 return done;
/frameworks/base/libs/utils/
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/libs/ui/
H A DPixelFormat.cpp64 goto done;
68 done:
/frameworks/base/core/java/android/content/
H A DAsyncTaskLoader.java60 private CountDownLatch done = new CountDownLatch(1); field in class:AsyncTaskLoader.LoadTask
78 done.countDown();
88 done.countDown();
272 task.done.await();
/frameworks/base/media/libstagefright/include/
H A DID3.h51 bool done() const;
/frameworks/media/libvideoeditor/lvpp/
H A DVideoEditorSRC.cpp190 uint32_t done = 0; local
255 memcpy((uint8_t*)pBuffer->raw + done, end - mLeftover, todo);
256 done += todo;
267 pBuffer->frameCount = done / (mChannelCnt * 2);
268 LOGV("getNextBuffer done %d", pBuffer->frameCount);
/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/utils/
H A DBackupHelpers.h110 status_t ReadNextHeader(bool* done, int* type);
/frameworks/base/cmds/installd/
H A Dinstalld.c217 goto done;
231 goto done;
236 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
/frameworks/base/media/libstagefright/id3/
H A Dtestid3.cpp82 while (!it.done()) {

Completed in 734 milliseconds

123