Searched defs:done (Results 1 - 24 of 24) sorted by relevance

/frameworks/base/cmds/backup/
H A Dbackup.cpp67 bool done; local
70 while (reader.ReadNextHeader(&done, &type) == 0) {
71 if (done) {
/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 DFileSynthesisCallback.java187 public int done() { method in class:FileSynthesisCallback
188 if (DBG) Log.d(TAG, "FileSynthesisRequest.done()");
191 if (DBG) Log.d(TAG, "Duplicate call to done()");
192 // This preserves existing behaviour. Earlier, if done was called twice
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/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;
H A DXMLNode.cpp571 bool done; local
574 done = len < (ssize_t)sizeof(buf);
580 if (XML_Parse(parser, buf, len, done) == XML_STATUS_ERROR) {
586 } while (!done);
/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_backup_BackupDataInput.cpp53 bool done; local
58 err = reader->ReadNextHeader(&done, &type);
59 if (done) {
87 // done
H A Dandroid_os_Debug.cpp124 bool skip, done = false; local
143 while (!done) {
195 done = true;
/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/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/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/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/compile/libbcc/lib/Support/
H A Dsha1.c35 for the shifts being done against it. This caused the hash
429 int done; local
485 done = findfirst(argv[i], &f, FA_RDONLY |
487 while (!done)
511 done = findnext(&f);
/frameworks/av/media/libstagefright/
H A DFragmentedMP4Extractor.cpp333 bool done = false; local
335 while (!done && offset < kMaxScanOffset) {
417 done = true;
H A DMPEG4Extractor.cpp2373 bool done = false; local
2375 while (!done && offset < kMaxScanOffset) {
2444 done = true;
/frameworks/av/media/libstagefright/id3/
H A DID3.cpp365 bool ID3::Iterator::done() const { function in class:android::ID3::Iterator
759 while (!it.done()) {
/frameworks/base/core/java/android/animation/
H A DAnimatorSet.java744 animNode.done = true;
752 if (!sortedNodes.get(i).done) {
849 // nodes are 'done' by default; they become un-done when started, and done
851 node.done = false;
921 * are done and it's time to send out an end event for the entire AnimatorSet.
923 public boolean done = false; field in class:AnimatorSet.Node
/frameworks/base/core/java/android/accounts/
H A DAccountManager.java1447 protected void done() { method in class:AccountManager.AmsTask
1552 protected void done() { method in class:AccountManager.Future2Task
1698 // we are done
1745 // we are done
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dadj_thr.c637 Flag done; local
690 done = 0;
691 while (!done) {
707 done = 1;
720 done = 1;
/frameworks/av/media/libstagefright/mp4/
H A DFragmentedMP4Parser.cpp876 bool done = false; local
880 for (size_t i = 0; !done && i < mMediaData.size(); ++i) {
891 done = true;
898 done = true;
903 if (!done) {
/frameworks/base/services/input/
H A DInputDispatcher.cpp180 for (SkRegion::Iterator it(region); !it.done(); it.next()) {
316 bool done = false; local
332 done = dispatchConfigurationChangedLocked(currentTime, typedEntry);
340 done = dispatchDeviceResetLocked(currentTime, typedEntry);
362 done = dispatchKeyLocked(currentTime, typedEntry, &dropReason, nextWakeupTime);
378 done = dispatchMotionLocked(currentTime, typedEntry,
388 if (done) {

Completed in 3283 milliseconds