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

/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DTestShellCallback.java20 public void finished(); method in interface:TestShellCallback
H A DTestShellActivity.java79 finished();
107 finished();
205 finished();
221 builder.setMessage("All tests finished. Exit?")
267 finished();
302 finished();
309 public boolean finished() { method in class:TestShellActivity
317 mCallback.finished();
492 // Calling finished() will check if we've met all the conditions for completing
494 if (finished()) {
[all...]
/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 DTestRecorder.java71 "finished INTEGER," +
103 public void finished(String className) { method in class:TestRecorder
105 map.put("finished", System.currentTimeMillis());
176 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/base/cmds/pm/src/com/android/commands/pm/
H A DPm.java625 boolean finished; field in class:Pm.PackageInstallObserver
630 finished = true;
761 while (!obs.finished) {
782 boolean finished; field in class:Pm.PackageDeleteObserver
787 finished = true;
822 while (!obs.finished) {
837 boolean finished; field in class:Pm.ClearDataObserver
843 finished = true;
866 while (!obs.finished) {
/frameworks/base/core/java/android/widget/
H A DScroller.java100 * Returns whether the scroller has finished scrolling.
102 * @return True if the scroller has finished scrolling, false otherwise.
109 * Force the finished field to a particular value.
111 * @param finished The new finished value.
113 public final void forceFinished(boolean finished) { argument
114 mFinished = finished;
193 * the animation is not yet finished. loc will be altered to provide the
H A DOverScroller.java85 * Returns whether the scroller has finished scrolling.
87 * @return True if the scroller has finished scrolling, false otherwise.
94 * Force the finished field to a particular value. Contrary to
95 * {@link #abortAnimation()}, forcing the animation to finished
99 * @param finished The new finished value.
101 public final void forceFinished(boolean finished) { argument
102 mScrollerX.mFinished = mScrollerY.mFinished = finished;
239 * animation is not yet finished.
/frameworks/base/core/jni/
H A Dandroid_view_InputQueue.cpp64 status_t finished(JNIEnv* env, jlong finishedToken, bool ignoreSpuriousFinish);
96 // This is used as part of the finished token as a way to determine whether the finished
97 // token is still valid before sending a finished signal back to the publisher.
100 // True if a message has been received from the publisher but not yet finished.
210 LOGI("Sending finished signal for input channel '%s' since it is being unregistered "
234 status_t NativeInputQueue::finished(JNIEnv* env, jlong finishedToken, bool ignoreSpuriousFinish) { function in class:android::NativeInputQueue
262 "finished messageSeqNum=%d, current messageSeqNum=%d, messageInProgress=%d",
273 LOGW("Failed to send finished signal on channel '%s'. status=%d",
396 q->finished(en
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java74 boolean finished = data.readInt() != 0;
77 schedulePauseActivity(b, finished, userLeaving, configChanges);
428 public final void schedulePauseActivity(IBinder token, boolean finished, argument
433 data.writeInt(finished ? 1 : 0);
H A DIApplicationThread.java46 void schedulePauseActivity(IBinder token, boolean finished, boolean userLeaving, argument
61 void scheduleDestroyActivity(IBinder token, boolean finished, argument
H A DActivityThread.java377 public final void schedulePauseActivity(IBinder token, boolean finished, argument
380 finished ? H.PAUSE_ACTIVITY_FINISHING : H.PAUSE_ACTIVITY,
1067 " finished=" +
2095 + " finished=" + r.activity.mFinished);
2143 + ", finished: " + a.mFinished);
2281 private final void handlePauseActivity(IBinder token, boolean finished, argument
2291 Bundle state = performPauseActivity(token, finished, true);
2308 final Bundle performPauseActivity(IBinder token, boolean finished, argument
2311 return r != null ? performPauseActivity(r, finished, saveState) : null;
2314 final Bundle performPauseActivity(ActivityClientRecord r, boolean finished, argument
[all...]

Completed in 388 milliseconds