Searched refs:nextAction (Results 1 - 5 of 5) sorted by relevance

/frameworks/opt/car/setupwizard/library/src/com/android/car/setupwizardlib/
H A DBaseActivity.java39 * <p>Provides helper methods like {@link #nextAction} and {@link #finishAction} for properly
210 * Called when nextAction has been invoked, should be overridden on derived class when it is
211 * needed perform work when nextAction has been invoked.
219 protected void nextAction(int resultCode) { method in class:BaseActivity
220 nextAction(resultCode, null);
226 protected void nextAction(int resultCode, Intent data) { method in class:BaseActivity
228 throw new IllegalArgumentException("Cannot call nextAction with RESULT_CANCELED");
247 * method to replace nextAction(resultCode); finish();
254 * Convenience method for nextAction(resultCode, data); finish();
258 nextAction(resultCod
[all...]
/frameworks/av/media/libstagefright/bqhelper/
H A DGraphicBufferSource.cpp587 ActionItem nextAction = *(mActionQueue.begin()); local
588 if (itemTimeUs < nextAction.mActionTimeUs) {
590 (long long)itemTimeUs, (long long)nextAction.mActionTimeUs);
602 && nextAction.mAction != ActionItem::STOP) {
603 nextAction = *it;
608 CHECK(itemTimeUs >= nextAction.mActionTimeUs);
609 switch (nextAction.mAction) {
614 (long long)itemTimeUs, (long long)nextAction.mActionTimeUs);
621 (long long)itemTimeUs, (long long)nextAction.mActionTimeUs);
627 (long long)itemTimeUs, (long long)nextAction
[all...]
/frameworks/opt/car/setupwizard/library/tests/robotests/src/com/android/car/setupwizardlib/
H A DBaseActivityTest.java97 Mockito.verify(spyBaseActivity).nextAction(Activity.RESULT_OK);
113 Mockito.verify(spyBaseActivity).nextAction(Activity.RESULT_OK);
276 * {@link BaseActivity#nextAction} and {@link BaseActivity#finish}.
283 Mockito.verify(spyBaseActivity).nextAction(BaseActivity.RESULT_OK, null);
/frameworks/support/navigation/safe-args-generator/src/tests/kotlin/androidx/navigation/safe/args/generator/
H A DNavWriterTest.kt110 val nextAction = Action(id("next"), id("destA"),
121 listOf(prevAction, nextAction))
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcTracker.java4764 int nextAction = getRecoveryAction();
4770 if (mIsScreenOn || suspectedStall || RecoveryAction.isAggressiveRecovery(nextAction)) {
4814 int nextAction = getRecoveryAction();
4816 if (RecoveryAction.isAggressiveRecovery(nextAction)) {

Completed in 94 milliseconds