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/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.h122 } finished; member in union:android::InputMessage::Body
157 * Try again after the consumer has sent a finished signal indicating that it has
249 /* Receives the finished signal from the consumer in reply to the original dispatch signal.
306 /* Sends a finished signal to the publisher to inform it that the message
307 * with the specified sequence number has finished being process and whether
416 // 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.java750 boolean finished; field in class:Pm.LocalPackageInstallObserver
758 finished = true;
962 while (!obs.finished) {
1351 boolean finished; field in class:Pm.ClearDataObserver
1357 finished = true;
1389 while (!obs.finished) {
1583 boolean finished; field in class:Pm.ClearCacheObserver
1589 finished = true;
1633 while (!obs.finished) {
/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
205 * Returns whether the scroller has finished scrolling.
207 * @return True if the scroller has finished scrolling, false otherwise.
214 * Force the finished field to a particular value.
216 * @param finished The new finished value.
218 public final void forceFinished(boolean finished) { argument
219 mFinished = finished;
298 * the animation is not yet finished.
H A DOverScroller.java140 * Returns whether the scroller has finished scrolling.
142 * @return True if the scroller has finished scrolling, false otherwise.
149 * Force the finished field to a particular value. Contrary to
150 * {@link #abortAnimation()}, forcing the animation to finished
154 * @param finished The new finished value.
156 public final void forceFinished(boolean finished) { argument
157 mScrollerX.mFinished = mScrollerY.mFinished = finished;
297 * animation is not yet finished.
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java79 boolean finished = data.readInt() != 0;
83 schedulePauseActivity(b, finished, userLeaving, configChanges, dontReport);
695 public final void schedulePauseActivity(IBinder token, boolean finished, argument
700 data.writeInt(finished ? 1 : 0);
H A DIApplicationThread.java52 void schedulePauseActivity(IBinder token, boolean finished, boolean userLeaving, argument
71 void scheduleDestroyActivity(IBinder token, boolean finished, argument
H A DActivityThread.java580 public final void schedulePauseActivity(IBinder token, boolean finished, argument
583 finished ? H.PAUSE_ACTIVITY_FINISHING : H.PAUSE_ACTIVITY,
1566 " finished=" +
2959 + " finished=" + r.activity.mFinished);
3025 + ", finished: " + a.mFinished);
3184 private void handlePauseActivity(IBinder token, boolean finished, argument
3194 performPauseActivity(token, finished, r.isPreHoneycomb());
3216 final Bundle performPauseActivity(IBinder token, boolean finished, argument
3219 return r != null ? performPauseActivity(r, finished, saveState) : null;
3222 final Bundle performPauseActivity(ActivityClientRecord r, boolean finished, argument
[all...]
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp3055 bool finished = true; local
3057 if (doRelax(pModule, pBuilder, finished)) {
3060 } while (!finished);

Completed in 211 milliseconds