Home
last modified time | relevance | path

Searched refs:RESULT_CONTINUE (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/core/java/com/android/server/am/
DLaunchParamsController.java32 import static com.android.server.am.LaunchParamsController.LaunchParamsModifier.RESULT_CONTINUE;
98 case RESULT_CONTINUE: in calculate()
226 @IntDef({RESULT_SKIP, RESULT_DONE, RESULT_CONTINUE})
236 int RESULT_CONTINUE = 2; field
DTaskLaunchParamsModifier.java97 return RESULT_CONTINUE; in onCalculate()
124 return RESULT_CONTINUE; in onCalculate()
/frameworks/base/services/tests/servicestests/src/com/android/server/am/
DTaskLaunchParamsModifierTests.java36 import static com.android.server.am.LaunchParamsController.LaunchParamsModifier.RESULT_CONTINUE;
107 assertEquals(RESULT_CONTINUE, mPositioner.onCalculate(mTask, null /*layout*/, in testLaunchNoWindowLayout()
119 assertEquals(RESULT_CONTINUE, mPositioner.onCalculate(mTask, in testlaunchEmptyWindowLayout()
152 assertEquals(RESULT_CONTINUE, mPositioner.onCalculate(mTask, in testGravity()
199 assertEquals(RESULT_CONTINUE, in testConflict()
DLaunchParamsControllerTests.java44 import static com.android.server.am.LaunchParamsController.LaunchParamsModifier.RESULT_CONTINUE;
151 final InstrumentedPositioner positioner2 = new InstrumentedPositioner(RESULT_CONTINUE, in testPassThrough()
176 new InstrumentedPositioner(RESULT_CONTINUE, params2); in testSkip()