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

12

/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DScheduler.java43 boolean finished() { method in class:Scheduler
/frameworks/support/app-toolkit/core-testing/src/main/java/androidx/arch/core/executor/testing/
H A DInstantTaskExecutorRule.java54 protected void finished(Description description) { method in class:InstantTaskExecutorRule
55 super.finished(description);
H A DCountingTaskExecutorRule.java57 protected void finished(Description description) { method in class:CountingTaskExecutorRule
58 super.finished(description);
101 * Waits until all active tasks are finished.
/frameworks/support/work/workmanager/src/androidTest/java/androidx/work/impl/utils/taskexecutor/
H A DInstantTaskExecutorRule.java46 protected void finished(Description description) { method in class:InstantTaskExecutorRule
47 super.finished(description);
/frameworks/support/work/workmanager-firebase/src/androidTest/java/androidx/work/impl/utils/taskexecutor/
H A DInstantTaskExecutorRule.java46 protected void finished(Description description) { method in class:InstantTaskExecutorRule
47 super.finished(description);
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/doze/
H A DDozeServiceFake.java29 public boolean finished; field in class:DozeServiceFake
41 finished = true;
61 finished = false;
/frameworks/base/test-runner/src/android/test/
H A DTestPrinter.java54 private void finished(String className) { method in class:TestPrinter
56 Log.i(mTag, "finished: " + className);
87 finished(test.toString());
/frameworks/base/tests/WindowManagerStressTest/src/test/windowmanagerstresstest/
H A DMainActivity.java45 private volatile boolean finished; field in class:MainActivity
66 finished = false;
75 finished = true;
88 while (!finished) {
/frameworks/base/core/java/android/app/servertransaction/
H A DDestroyActivityItem.java55 public static DestroyActivityItem obtain(boolean finished, int configChanges) { argument
60 instance.mFinished = finished;
123 return "DestroyActivityItem{finished=" + mFinished + ",mConfigChanges="
H A DPauseActivityItem.java75 public static PauseActivityItem obtain(boolean finished, boolean userLeaving, int configChanges, argument
81 instance.mFinished = finished;
168 return "PauseActivityItem{finished=" + mFinished + ",userLeaving=" + mUserLeaving
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
H A DTileQueryHelper.java161 private void notifyTilesChanged(final boolean finished) { argument
165 mFinished = finished;
/frameworks/av/media/libaaudio/tests/
H A Dtest_various.cpp542 finished = true;
549 conditionVariable.wait(aLock, [=] { return finished; });
552 // For signalling foreground test when callback finished
555 bool finished = false; member in struct:WakeUpCallbackData
/frameworks/base/core/java/android/app/
H A DClientTransactionHandler.java86 public abstract void handlePauseActivity(IBinder token, boolean finished, boolean userLeaving, argument
H A DVoiceInteractor.java100 + " finished=" + complete + " selection=" + args.arg2
159 public void deliverConfirmationResult(IVoiceInteractorRequest request, boolean finished,
162 MSG_CONFIRMATION_RESULT, finished ? 1 : 0, request, result));
167 boolean finished, PickOptionRequest.Option[] options, Bundle result) {
169 MSG_PICK_OPTION_RESULT, finished ? 1 : 0, request, options, result));
547 * @param finished True if the voice interaction has finished making a selection, in
554 public void onPickOptionResult(boolean finished, Option[] selections, Bundle result) { argument
/frameworks/base/libs/hwui/
H A DAnimator.cpp257 bool finished = updatePlayTime(currentPlayTime); local
258 if (finished && mPlayState != PlayState::Finished) {
262 return finished;
/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
H A DStartVoiceInteractionActivity.java158 public void onCommandResult(boolean finished, Bundle result) { argument
159 Log.i(TAG, "Command result: finished=" + finished + " result=" + result);
161 if (finished) {
189 public void onPickOptionResult(boolean finished, Option[] selections, Bundle result) { argument
190 Log.i(TAG, "Pick result: finished=" + finished + " selections=" + selections
193 if (finished) {
H A DTestInteractionActivity.java211 public void onCommandResult(boolean finished, Bundle result) { argument
212 Log.i(TAG, "Command result: finished=" + finished + " result=" + result);
214 if (finished) {
242 public void onPickOptionResult(boolean finished, Option[] selections, Bundle result) { argument
243 Log.i(TAG, "Pick result: finished=" + finished + " selections=" + selections
246 if (finished) {
/frameworks/support/room/testing/src/main/java/androidx/room/testing/
H A DMigrationTestHelper.java216 protected void finished(Description description) { method in class:MigrationTestHelper
217 super.finished(description);
/frameworks/av/media/libmediaplayer2/nuplayer2/
H A DRTSPSource2.cpp327 bool *prepared, bool *underflow, bool *overflow, bool *startServer, bool *finished) {
381 *finished = (finishedCount > 0);
385 bool prepared, underflow, overflow, startServer, finished; local
386 checkBuffering(&prepared, &underflow, &overflow, &startServer, &finished);
409 if (finished && mHandler != NULL) {
326 checkBuffering( bool *prepared, bool *underflow, bool *overflow, bool *startServer, bool *finished) argument
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DRTSPSource.cpp329 bool *prepared, bool *underflow, bool *overflow, bool *startServer, bool *finished) {
383 *finished = (finishedCount > 0);
387 bool prepared, underflow, overflow, startServer, finished; local
388 checkBuffering(&prepared, &underflow, &overflow, &startServer, &finished);
411 if (finished && mHandler != NULL) {
328 checkBuffering( bool *prepared, bool *underflow, bool *overflow, bool *startServer, bool *finished) argument
/frameworks/base/core/java/android/widget/
H A DScroller.java51 * whether the scroller is finished. If it isn't, it means that a fling or
204 * Returns whether the scroller has finished scrolling.
206 * @return True if the scroller has finished scrolling, false otherwise.
213 * Force the finished field to a particular value.
215 * @param finished The new finished value.
217 public final void forceFinished(boolean finished) { argument
218 mFinished = finished;
297 * the animation is not yet finished.
H A DOverScroller.java141 * Returns whether the scroller has finished scrolling.
143 * @return True if the scroller has finished scrolling, false otherwise.
150 * Force the finished field to a particular value. Contrary to
151 * {@link #abortAnimation()}, forcing the animation to finished
155 * @param finished The new finished value.
157 public final void forceFinished(boolean finished) { argument
158 mScrollerX.mFinished = mScrollerY.mFinished = finished;
296 * animation is not yet finished.
/frameworks/native/include/input/
H A DInputTransport.h124 } finished; member in union:android::InputMessage::Body
159 * Try again after the consumer has sent a finished signal indicating that it has
253 /* Receives the finished signal from the consumer in reply to the original dispatch signal.
310 /* Sends a finished signal to the publisher to inform it that the message
311 * with the specified sequence number has finished being process and whether
454 // batch with the previous one. When the finished signal is sent, we traverse the
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerShellCommand.java1534 boolean finished; field in class:PackageManagerShellCommand.ClearDataObserver
1540 finished = true;
1563 while (!obs.finished) {
1996 while (!obs.finished) {
/frameworks/native/services/surfaceflinger/
H A DBufferLayer.cpp176 bool finished = false; local
178 if (finished || layer == static_cast<BufferLayer const*>(this)) {
179 finished = true;

Completed in 4715 milliseconds

12