Home
last modified time | relevance | path

Searched refs:transitionType (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/core/java/android/animation/
DLayoutTransition.java348 public void enableTransitionType(int transitionType) { in enableTransitionType() argument
349 switch (transitionType) { in enableTransitionType()
375 public void disableTransitionType(int transitionType) { in disableTransitionType() argument
376 switch (transitionType) { in disableTransitionType()
403 public boolean isTransitionTypeEnabled(int transitionType) { in isTransitionTypeEnabled() argument
404 switch (transitionType) { in isTransitionTypeEnabled()
430 public void setStartDelay(int transitionType, long delay) { in setStartDelay() argument
431 switch (transitionType) { in setStartDelay()
461 public long getStartDelay(int transitionType) { in getStartDelay() argument
462 switch (transitionType) { in getStartDelay()
[all …]
/frameworks/base/libs/WindowManager/Jetpack/tests/unittest/src/androidx/window/extensions/embedding/
DTransactionManagerTest.java141 int transitionType = transactionRecord.getTransactionTransitionType(); in testApply() local
145 verify(mOrganizer).applyTransaction(wct, transitionType, in testApply()
151 transitionType = transactionRecord.getTransactionTransitionType(); in testApply()
155 verify(mOrganizer).applyTransaction(wct, transitionType, in testApply()
162 transitionType = transactionRecord.getTransactionTransitionType(); in testApply()
166 verify(mOrganizer).onTransactionHandled(token, wct, transitionType, in testApply()
173 transitionType = transactionRecord.getTransactionTransitionType(); in testApply()
177 verify(mOrganizer).onTransactionHandled(token, wct, transitionType, in testApply()
/frameworks/base/core/java/android/window/
DITaskFragmentOrganizerController.aidl61 int transitionType, boolean shouldApplyIndependently); in onTransactionHandled() argument
66 void applyTransaction(in WindowContainerTransaction wct, int transitionType, in applyTransaction() argument
DTaskFragmentOrganizer.java188 @WindowManager.TransitionType int transitionType, boolean shouldApplyIndependently) { in onTransactionHandled() argument
191 getController().onTransactionHandled(transactionToken, wct, transitionType, in onTransactionHandled()
225 @WindowManager.TransitionType int transitionType, boolean shouldApplyIndependently) { in applyTransaction() argument
231 getController().applyTransaction(wct, transitionType, shouldApplyIndependently); in applyTransaction()
/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/
DNavigationBarView.java189 View view, int transitionType) { in startTransition() argument
192 } else if (view.getId() == R.id.home && transitionType == LayoutTransition.APPEARING) { in startTransition()
194 mStartDelay = transition.getStartDelay(transitionType); in startTransition()
195 mDuration = transition.getDuration(transitionType); in startTransition()
196 mInterpolator = transition.getInterpolator(transitionType); in startTransition()
202 View view, int transitionType) { in endTransition() argument
205 } else if (view.getId() == R.id.home && transitionType == LayoutTransition.APPEARING) { in endTransition()
/frameworks/base/services/core/java/com/android/server/wm/
DActivityMetricsLogger.java323 final int transitionType; in create() local
325 transitionType = !newActivityCreated && r.attachedToProcess() in create()
331 transitionType = TYPE_TRANSITION_COLD_LAUNCH; in create()
333 return new TransitionInfo(r, launchingState, options, transitionType, processRunning, in create()
339 ActivityOptions options, int transitionType, boolean processRunning, in TransitionInfo() argument
343 mTransitionType = transitionType; in TransitionInfo()
1704 convertTransitionTypeToLaunchObserverTemperature(int transitionType) { in convertTransitionTypeToLaunchObserverTemperature() argument
1705 switch (transitionType) { in convertTransitionTypeToLaunchObserverTemperature()
DAsyncRotationController.java108 final int transitionType = in AsyncRotationController() local
110 if (transitionType == WindowManager.TRANSIT_CHANGE) { in AsyncRotationController()
DTaskFragmentOrganizerController.java502 @WindowManager.TransitionType int transitionType, boolean shouldApplyIndependently) { in onTransactionHandled() argument
506 applyTransaction(wct, transitionType, shouldApplyIndependently); in onTransactionHandled()
522 @WindowManager.TransitionType int transitionType, boolean shouldApplyIndependently) { in applyTransaction() argument
528 mWindowOrganizerController.applyTaskFragmentTransactionLocked(wct, transitionType, in applyTransaction()
/frameworks/base/core/java/android/view/
DViewGroup.java7210 View view, int transitionType) {
7213 if (transitionType == LayoutTransition.DISAPPEARING) {
7220 View view, int transitionType) {
7225 if (transitionType == LayoutTransition.DISAPPEARING && mTransitioningViews != null) {