Home
last modified time | relevance | path

Searched refs:previousState (Results 1 – 13 of 13) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/captureintent/state/
DStateFatal.java38 State previousState, RefCountBase<ResourceConstructed> resourceConstructed) { in from() argument
39 return new StateFatal(previousState, resourceConstructed); in from()
42 private StateFatal(State previousState, RefCountBase<ResourceConstructed> resourceConstructed) { in StateFatal() argument
43 super(previousState); in StateFatal()
DStateIntentCompleted.java45 State previousState, in from() argument
48 previousState, resourceConstructed, Optional.<Intent>absent()); in from()
52 State previousState, in StateIntentCompleted() argument
55 super(previousState); in StateIntentCompleted()
DStateBackgroundWithSurfaceTexture.java47 State previousState, in from() argument
51 previousState, resourceConstructed, resourceSurfaceTexture); in from()
55 State previousState, in StateBackgroundWithSurfaceTexture() argument
58 super(previousState); in StateBackgroundWithSurfaceTexture()
DStateForegroundWithSurfaceTexture.java40 State previousState, in from() argument
44 previousState, in from()
50 State previousState, in StateForegroundWithSurfaceTexture() argument
53 super(previousState); in StateForegroundWithSurfaceTexture()
DStateForeground.java42 State previousState, in from() argument
44 return new StateForeground(previousState, resourceConstructed); in from()
48 State previousState, in StateForeground() argument
50 super(previousState); in StateForeground()
DStateBackground.java48 State previousState, in from() argument
50 return new StateBackground(previousState, resourceConstructed); in from()
62 private StateBackground(State previousState, in StateBackground() argument
64 super(previousState); in StateBackground()
DStateStartingPreview.java56 State previousState, in from() argument
66 previousState, in from()
78 State previousState, in StateStartingPreview() argument
87 super(previousState); in StateStartingPreview()
DStateOpeningCamera.java92 State previousState, in from() argument
98 return new StateOpeningCamera(previousState, resourceConstructed, in from()
102 private StateOpeningCamera(State previousState, in StateOpeningCamera() argument
108 super(previousState); in StateOpeningCamera()
DStateSavingPicture.java55 State previousState, in StateSavingPicture() argument
58 super(previousState); in StateSavingPicture()
DStateReadyForCapture.java107 State previousState, in StateReadyForCapture() argument
111 super(previousState); in StateReadyForCapture()
122 State previousState, in StateReadyForCapture() argument
124 super(previousState); in StateReadyForCapture()
DStateReviewingPicture.java72 State previousState, in StateReviewingPicture() argument
76 super(previousState); in StateReviewingPicture()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
DBluetoothA2dpConnector.java52 int previousState = intent.getIntExtra(
59 Log.d(TAG, "Connection states: old = " + previousState + ", new = " + state);
62 if (previousState == BluetoothA2dp.STATE_CONNECTING) {
/packages/apps/Camera2/src/com/android/camera/captureintent/stateful/
DStateImpl.java39 protected StateImpl(State previousState) { in StateImpl() argument
40 this(previousState.getStateMachine()); in StateImpl()