Home
last modified time | relevance | path

Searched refs:expand (Results 1 – 25 of 49) sorted by relevance

12

/frameworks/base/graphics/java/android/graphics/drawable/
DRippleAnimationSession.java114 ValueAnimator expand = ValueAnimator.ofFloat(.5f, 1f); in exitSoftware() local
115 expand.setDuration(EXIT_ANIM_DURATION); in exitSoftware()
116 expand.setStartDelay(computeDelay()); in exitSoftware()
117 expand.addUpdateListener(updatedAnimation -> { in exitSoftware()
119 mProperties.getShader().setProgress((Float) expand.getAnimatedValue()); in exitSoftware()
121 expand.addListener(new AnimatorListener(this) { in exitSoftware()
128 if (mCurrentAnimation == expand) mCurrentAnimation = null; in exitSoftware()
131 expand.setInterpolator(LINEAR_INTERPOLATOR); in exitSoftware()
132 expand.start(); in exitSoftware()
133 mCurrentAnimation = expand; in exitSoftware()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/domain/interactor/
DSwipeToDismissInteractorTest.kt54 shadeRepository.setCurrentFling(FlingInfo(expand = false)) in <lambda>()
60 { fling: FlingInfo? -> fling?.expand }, in <lambda>()
73 shadeRepository.setCurrentFling(FlingInfo(expand = false)) in <lambda>()
88 shadeRepository.setCurrentFling(FlingInfo(expand = false)) in <lambda>()
101 FlingInfo(expand = true) // Not a dismiss fling (expand = true). in <lambda>()
DFromLockscreenTransitionInteractorTest.kt130 FlingInfo(expand = false) // Is a dismiss fling upward (expand = false). in testTransitionsToGone_whenDismissFlingWhileDismissable_flagEnabled()
151 FlingInfo(expand = true) // Not a dismiss fling (expand = true). in testDoesNotTransitionToGone_whenDismissFlingWhileDismissable_flagDisabled()
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/animation/
DExpandedAnimationControllerTest.java106 expand(); in testExpansionAndCollapse()
120 expand(); in testOnChildAdded()
133 expand(); in testOnChildRemoved()
154 private void expand() throws InterruptedException { in expand() method in ExpandedAnimationControllerTest
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
DLockscreenFragment.java155 public final ExpandableIndicator expand; field in LockscreenFragment.Holder
161 expand = (ExpandableIndicator) itemView.findViewById(R.id.expand); in Holder()
283 holder.expand.setVisibility(View.VISIBLE); in onBindViewHolder()
284 holder.expand.setExpanded(expando); in onBindViewHolder()
285 holder.expand.setOnClickListener( in onBindViewHolder()
288 holder.expand.setVisibility(View.GONE); in onBindViewHolder()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/ambient/touch/scrim/
DBouncerlessScrimControllerTest.java62 scrimController.expand(new ShadeExpansionChangeEvent(.5f, true, false)); in testWakeupOnSwipeOpen()
75 scrimController.expand(expansionEvent); in testExpansionPropagation()
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
DShadeLogger.kt269 fun logLastFlingWasExpanding(expand: Boolean) { in logLastFlingWasExpanding()
273 { bool1 = expand }, in logLastFlingWasExpanding()
306 expand: Boolean, in logEndMotionEvent()
314 bool2 = expand in logEndMotionEvent()
DNotificationPanelViewController.java2099 expand(true /* animate */); in expandToQs()
2114 expand(true /* animate */); in expandToNotifications()
2127 void flingToHeight(float vel, boolean expand, float target, in flingToHeight() argument
2129 mQsController.setLastShadeFlingWasExpanding(expand); in flingToHeight()
2130 mHeadsUpTouchHelper.notifyFling(!expand); in flingToHeight()
2131 mKeyguardStateController.notifyPanelFlingStart(!expand /* flingingToDismiss */); in flingToHeight()
2132 setClosingWithAlphaFadeout(!expand && !isKeyguardShowing() && getFadeoutAlpha() == 1.0f); in flingToHeight()
2134 mShadeRepository.setCurrentFling(new FlingInfo(expand, vel)); in flingToHeight()
2143 expand in flingToHeight()
2147 final boolean shouldSpringBack = addOverscroll || (mOverExpansion != 0.0f && expand); in flingToHeight()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/ambient/touch/scrim/
DScrimController.java36 default void expand(ShadeExpansionChangeEvent event) { in expand() method
DBouncerScrimController.java41 public void expand(ShadeExpansionChangeEvent event) { in expand() method in BouncerScrimController
DBouncerlessScrimController.java82 public void expand(ShadeExpansionChangeEvent event) { in expand() method in BouncerlessScrimController
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/data/repository/
DFlingInfo.kt26 val expand: Boolean, constant in com.android.systemui.shade.data.repository.FlingInfo
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
DEvents.java396 final Boolean expand = (Boolean) list[0]; in logEvent() local
397 sLegacyLogger.visibility(MetricsEvent.VOLUME_DIALOG_DETAILS, expand); in logEvent()
398 sUiEventLogger.log(expand ? VolumeDialogEvent.VOLUME_DIALOG_EXPAND_DETAILS in logEvent()
400 sb.append(expand); in logEvent()
/frameworks/base/packages/CredentialManager/src/com/android/credentialmanager/common/material/
DModalBottomSheet.kt57 import androidx.compose.ui.semantics.expand
175 internal suspend fun expand() = animateTo(Expanded) in expand() method
385 expand { in ModalBottomSheetLayout()
387 scope.launch { sheetState.expand() } in ModalBottomSheetLayout()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/ambient/touch/
DBouncerSwipeTouchHandlerTest.java327 verify(mScrimController, never()).expand(any()); in testSwipeDown_doesNotSetExpansion()
354 verify(mScrimController, never()).expand(any()); in testSwipeDown_whenBouncerInitiallyHidden_doesNotSetExpansion_directionFiltering()
399 verify(mScrimController, never()).expand(any()); in testSwipeUp_keyguardNotSecure_doesNotExpand()
430 verify(mScrimController, never()).expand(any()); in testSwipeDown_keyguardNotSecure_doesNotExpand()
450 verify(mScrimController).expand(any()); in verifyScroll()
458 verify(mScrimController).expand(event); in verifyScroll()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/domain/interactor/
DSwipeToDismissInteractor.kt60 !flingInfo.expand && in <lambda>()
/frameworks/compile/libbcc/tests/libbcc/
Dgetelementptr.ll26 ; CHECK: define void @root.expand(%RsExpandKernelDriverInfoPfx* %p, i32 %x1, i32 %x2, i32 %outstep)
44 ; CHECK: define void @foo.expand(%RsExpandKernelDriverInfoPfx* %p, i32 %x1, i32 %x2, i32 %arg_outst…
/frameworks/opt/calendar/src/com/android/calendarcommon2/
DRecurrenceProcessor.java130 long[] dates = expand(dtstart, recur, in getLastOccurence()
634 public long[] expand(Time dtstart, in expand() method in RecurrenceProcessor
661 expand(dtstart, rrule, rangeStartDateValue, in expand()
676 expand(dtstart, exrule, rangeStartDateValue, in expand()
731 public void expand(Time dtstart, in expand() method in RecurrenceProcessor
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
DDozeLogger.kt97 expand: Boolean, in logFling()
102 bool1 = expand in logFling()
DDozeLog.java156 public void traceFling(boolean expand, boolean aboveThreshold, in traceFling() argument
158 mLogger.logFling(expand, aboveThreshold, screenOnFromTouch); in traceFling()
/frameworks/native/libs/bufferstreams/rust/
Dcbindgen.toml145 [parse.expand]
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DNumPadButton.java87 if (mAnimator != null) mAnimator.expand(); in onTouchEvent()
/frameworks/base/libs/WindowManager/Shell/aconfig/
Dmultitasking.aconfig45 description: "Enables new animations for expand and collapse for bubbles"
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/
DShadeControllerImplTest.kt136 verify(npvc, never()).expand(ArgumentMatchers.anyBoolean()) in testDisableNotificationShade()
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
DRecurrenceProcessorTest.java108 long[] out = rp.expand(dtstart, recur, rangeStart.toMillis(), rangeEnd.toMillis()); in verifyRecurrence()
2474 long [] dates = rp.expand(dtstart, recur, rangeStartMillis, rangeEndMillis); in performanceTextExpand()

12