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

/packages/apps/Email/emailcommon/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/Exchange/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;
H A DSerializer.java91 public void done() throws IOException { method in class:Serializer
/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/photoeditor/actions/
H A DEffectAction.java96 // Wait till last output callback is done before finishing.
97 if ((lastFilterChangedCallback == null) || lastFilterChangedCallback.done) {
156 private boolean done; field in class:EffectAction.FilterChangedCallback
161 done = true;
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DFilterUtils.java229 boolean[] done = new boolean[1];
230 return removeOneClusterFromPath(base, done);
233 private static String removeOneClusterFromPath(String base, boolean[] done) { argument
234 if (done[0]) return base;
238 done[0] = true;
252 sb.append(removeOneClusterFromPath(sets[j], done));
264 boolean[] done = new boolean[1];
265 return removeOneFilterFromPath(base, done);
268 private static String removeOneFilterFromPath(String base, boolean[] done) { argument
269 if (done[
[all...]
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DSuggestions.java164 public void done() { method in class:Suggestions
225 * the done status changes.
/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/Calendar/src/com/android/calendar/event/
H A DEditEventView.java802 public EditEventView(Activity activity, View view, EditDoneRunnable done) { argument
806 mDone = done;
1252 * Configures the Calendars spinner. This is only done for new events, because only new
/packages/apps/Exchange/src/com/android/exchange/
H A DExchangeService.java941 // The provider can't be reached; nothing to be done
1328 // Tell the service we're done
1691 // We're done if there's an active network
1967 // in the adapters themselves, i.e. they return cleanly via done(). When the Email
2489 static public void done(AbstractSyncService svc) { method in class:ExchangeService

Completed in 2346 milliseconds