Searched defs:finished (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DScheduler.java43 boolean finished() { method in class:Scheduler
/frameworks/base/services/java/com/android/server/am/
H A DPendingThumbnailsRecord.java31 boolean finished; // Is pendingRecords empty? field in class:PendingThumbnailsRecord
37 finished = false;
/frameworks/base/test-runner/src/android/test/
H A DTestPrinter.java54 public void finished(String className) { method in class:TestPrinter
56 Log.i(mTag, "finished: " + className);
102 finished(test.toString());
H A DTestRunner.java111 finished(test.toString());
153 void finished(String className); method in interface:TestRunner.Listener
188 private void finished(String className) { method in class:TestRunner
191 mListeners.get(i).finished(className);
272 finished(className);
322 finished(className);
359 finished(test.toString());
512 finished(test.toString());
/frameworks/native/include/input/
H A DInputTransport.h114 } finished; member in union:android::InputMessage::Body
149 * Try again after the consumer has sent a finished signal indicating that it has
241 /* Receives the finished signal from the consumer in reply to the original dispatch signal.
298 /* Sends a finished signal to the publisher to inform it that the message
299 * with the specified sequence number has finished being process and whether
408 // batch with the previous one. When the finished signal is sent, we traverse the
/frameworks/base/cmds/pm/src/com/android/commands/pm/
H A DPm.java702 boolean finished; field in class:Pm.PackageInstallObserver
707 finished = true;
961 while (!obs.finished) {
1081 boolean finished; field in class:Pm.PackageDeleteObserver
1086 finished = true;
1126 while (!obs.finished) {
1141 boolean finished; field in class:Pm.ClearDataObserver
1147 finished = true;
1180 while (!obs.finished) {
1357 boolean finished; field in class:Pm.ClearCacheObserver
[all...]
/frameworks/base/core/java/android/widget/
H A DScroller.java52 * whether the scroller is finished. If it isn't, it means that a fling or
210 * Returns whether the scroller has finished scrolling.
212 * @return True if the scroller has finished scrolling, false otherwise.
219 * Force the finished field to a particular value.
221 * @param finished The new finished value.
223 public final void forceFinished(boolean finished) { argument
224 mFinished = finished;
303 * the animation is not yet finished.
H A DOverScroller.java132 * Returns whether the scroller has finished scrolling.
134 * @return True if the scroller has finished scrolling, false otherwise.
141 * Force the finished field to a particular value. Contrary to
142 * {@link #abortAnimation()}, forcing the animation to finished
146 * @param finished The new finished value.
148 public final void forceFinished(boolean finished) { argument
149 mScrollerX.mFinished = mScrollerY.mFinished = finished;
289 * animation is not yet finished.
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java75 boolean finished = data.readInt() != 0;
78 schedulePauseActivity(b, finished, userLeaving, configChanges);
652 public final void schedulePauseActivity(IBinder token, boolean finished, argument
657 data.writeInt(finished ? 1 : 0);
H A DIApplicationThread.java47 void schedulePauseActivity(IBinder token, boolean finished, boolean userLeaving, argument
66 void scheduleDestroyActivity(IBinder token, boolean finished, argument
H A DActivityThread.java552 public final void schedulePauseActivity(IBinder token, boolean finished, argument
555 finished ? H.PAUSE_ACTIVITY_FINISHING : H.PAUSE_ACTIVITY,
1450 " finished=" +
2748 + " finished=" + r.activity.mFinished);
2811 + ", finished: " + a.mFinished);
2971 private void handlePauseActivity(IBinder token, boolean finished, argument
2981 performPauseActivity(token, finished, r.isPreHoneycomb());
3000 final Bundle performPauseActivity(IBinder token, boolean finished, argument
3003 return r != null ? performPauseActivity(r, finished, saveState) : null;
3006 final Bundle performPauseActivity(ActivityClientRecord r, boolean finished, argument
[all...]

Completed in 6144 milliseconds