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

12

/packages/apps/Mms/src/com/android/mms/util/
H A DItemLoadedFuture.java34 void setIsDone(boolean done); argument
H A DNullItemLoadedFuture.java38 public void setIsDone(boolean done) { argument
H A DPduLoaderManager.java121 public void setIsDone(boolean done) {
122 mIsDone = done;
/packages/apps/Email/src/org/apache/james/mime4j/decoder/
H A DBase64InputStream.java41 private boolean done = false; field in class:Base64InputStream
80 // "done" is needed for the two successive '=' at the end
81 while (!done) {
84 // No more input - just return, let outputBuffer drain out, and be done
88 done = true;
/packages/apps/Email/tests/src/com/android/email/
H A DUtilityLargeTest.java55 final AtomicBoolean done = new AtomicBoolean(false);
72 done.set(true);
78 // Wait until it's done...
82 return done.get();
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
H A DBase64InputStream.java49 private boolean done = false; field in class:Base64InputStream
91 // "done" is needed for the two successive '=' at the end
92 while (!done) {
98 done = true;
102 // No more input - just return, let outputBuffer drain out, and be done
106 // Allow for a second '=' before we're really done (we should get a zero next)
114 //done = true;
/packages/apps/Browser/src/com/android/browser/
H A DGoogleAccountLogin.java93 done();
134 done();
140 done();
147 done();
162 // thread that calls done() but I am paranoid.
208 done();
265 private synchronized void done() { method in class:GoogleAccountLogin
291 done();
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DFilterUtils.java225 boolean[] done = new boolean[1];
226 return removeOneClusterFromPath(base, done);
229 private static String removeOneClusterFromPath(String base, boolean[] done) { argument
230 if (done[0]) return base;
234 done[0] = true;
248 sb.append(removeOneClusterFromPath(sets[j], done));
/packages/apps/Settings/src/com/android/settings/accounts/
H A DAddAccountSettings.java81 boolean done = true;
87 done = false;
110 if (done) {
/packages/apps/Music/src/com/android/music/
H A DCreatePlaylist.java154 boolean done = false;
155 while (!done) {
156 done = true;
162 done = false;
/packages/apps/Camera/jni/feature_stab/db_vlvm/
H A Ddb_image_homography.cpp180 int nr_sols,i,best_sol,done; local
190 done=0;
216 if(!done || cost<best_cost)
218 done=1;
/packages/apps/Exchange/exchange2/tests/src/com/android/exchange/adapter/
H A DSerializerTests.java36 // Basic test for use of start, end, tag, data, opaque, and done
54 s.done(); // DOCUMENT
/packages/apps/Exchange/tests/src/com/android/exchange/adapter/
H A DSerializerTests.java36 // Basic test for use of start, end, tag, data, opaque, and done
54 s.done(); // DOCUMENT
/packages/apps/Gallery2/jni_mosaic/feature_stab/db_vlvm/
H A Ddb_image_homography.cpp180 int nr_sols,i,best_sol,done; local
190 done=0;
216 if(!done || cost<best_cost)
218 done=1;
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
H A Ddb_image_homography.cpp180 int nr_sols,i,best_sol,done; local
190 done=0;
216 if(!done || cost<best_cost)
218 done=1;
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppObexClientSession.java114 int done = 0;
115 while (done < size) {
116 int got = is.read(buffer, done, size - done);
118 done += got;
120 return done;
/packages/apps/DeskClock/src/com/android/deskclock/timer/
H A DTimerListItem.java90 public void done() { method in class:TimerListItem
/packages/apps/Gallery2/tests/src/com/android/photos/data/
H A DMediaCacheTest.java188 ReadyCollector done = new ReadyCollector();
189 mMediaCache.retrieveThumbnail(uri, done, mReady);
195 assertTrue(done.waitForNotification());
196 assertNotNull(done.mInputStream);
197 done.mInputStream.close();
/packages/apps/VideoEditor/src/com/android/videoeditor/
H A DKenBurnsActivity.java286 mDoneButton = findViewById(R.id.done);
306 case R.id.done: {
382 case R.id.done: {
/packages/apps/Mms/src/com/android/mms/ui/
H A DEditSlideDurationActivity.java88 mDone = (Button) findViewById(R.id.done);
/packages/apps/Email/src/com/android/email/activity/setup/
H A DAccountServerBaseFragment.java153 mProceedButton = (Button) UiUtilities.getView(view, R.id.done);
206 case R.id.done:
/packages/apps/Exchange/exchange2/src/com/android/exchange/
H A DEasSyncService.java248 // If there's no POST, we're done
479 .end().end().done();
938 s.end().end().end().done();
1067 s.end().end().done();
1131 s.end().end().done();
1470 s.end().end().end().done(); // PROVISION_POLICY, PROVISION_POLICIES, PROVISION_PROVISION
1546 s.end().done(); // PROVISION_PROVISION
1577 s.end().end().end().done(); // SETTINGS_SET, SETTINGS_DEVICE_INFORMATION, SETTINGS_SETTINGS
1687 s.end().end().end().done();
1858 // If we've been stopped, we're done
[all...]
H A DEasOutboxService.java188 // And we're done
189 s.end().end().done();
525 ExchangeService.done(this);
/packages/apps/Phone/src/com/android/phone/
H A DCallFeaturesSetting.java434 * Id of error msg to display to user once we are done reverting the VM provider to the previous
471 * default provider and should therefore save them out when done.
995 boolean done = true;
998 done = false;
1002 if (done) {
1013 if (DBG) Log.d(LOG_TAG, "Not done receiving fwd info");
1048 // Called after we are done saving the previous forwarding settings if
1098 boolean done = false;
1103 if (DBG) log("VM change complete msg, VM change done = " +
1105 done
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
H A DCropActivity.java190 done();
229 done();
314 done();
349 done();
610 private void done() { method in class:CropActivity

Completed in 1697 milliseconds

12