Home
last modified time | relevance | path

Searched refs:scroll (Results 1 – 25 of 70) sorted by relevance

123

/frameworks/base/core/java/com/android/internal/widget/remotecompose/core/operations/
DRootContentBehavior.java118 public RootContentBehavior(int scroll, int alignment, int sizing, int mode) { in RootContentBehavior() argument
119 switch (scroll) { in RootContentBehavior()
123 mScroll = scroll; in RootContentBehavior()
126 Log.e(TAG, "incorrect scroll value " + scroll); in RootContentBehavior()
217 public void apply(WireBuffer buffer, int scroll, int alignment, int sizing, int mode) { in apply() argument
219 buffer.writeInt(scroll); in apply()
227 int scroll = buffer.readInt(); in read() local
232 new RootContentBehavior(scroll, alignment, sizing, mode); in read()
/frameworks/native/services/inputflinger/reader/mapper/
DRotaryEncoderInputMapper.cpp117 float scroll = mRotaryEncoderScrollAccumulator.getRelativeVWheel(); in sync() local
119 scroll = mSlopController->consumeEvent(when, scroll); in sync()
122 bool scrolled = scroll != 0; in sync()
131 scroll = -scroll; in sync()
136 pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_SCROLL, scroll * mScalingFactor); in sync()
/frameworks/base/packages/SettingsLib/Spa/tests/src/com/android/settingslib/spa/framework/compose/
DKeyboardsTest.kt66 setLazyColumn(scroll = false) in rememberLazyListStateAndHideKeyboardWhenStartScroll_notCallHideInitially()
73 setLazyColumn(scroll = true) in rememberLazyListStateAndHideKeyboardWhenStartScroll_callHideWhenScroll()
78 private fun setLazyColumn(scroll: Boolean) { in setLazyColumn()
90 if (scroll) { in setLazyColumn()
/frameworks/base/core/java/android/view/flags/
Dscroll_feedback_flags.aconfig8 description: "Enable the scroll feedback APIs"
15 …description: "If enabled, the rotary encoder scroll haptic implementation in the View class will b…
/frameworks/base/core/tests/coretests/src/android/widget/
DMotionEventUtils.java32 public static MotionEvent createRotaryEvent(float scroll) { in createRotaryEvent() argument
34 coords.setAxisValue(AXIS_SCROLL, scroll); in createRotaryEvent()
/frameworks/base/packages/SystemUI/compose/scene/tests/src/com/android/compose/nestedscroll/
DLargeTopAppBarNestedScrollConnectionTest.kt41 private fun NestedScrollConnection.scroll( in NestedScrollConnection() method
69 scrollConnection.scroll(available = Offset(0f, 1f), consumedByScroll = Offset(0f, 1f)) in onScrollUpAfterContentScrolled_ignoreUpEvent()
85 scrollConnection.scroll(available = Offset(0f, 1f), consumedByScroll = Offset(0f, 1f)) in onScrollUpAfterContentReturnedToZero_consumeHeight()
88 scrollConnection.scroll(available = Offset(0f, -1f), consumedByScroll = Offset(0f, -1f)) in onScrollUpAfterContentReturnedToZero_consumeHeight()
/frameworks/base/core/tests/coretests/src/android/view/
DRotaryScrollHapticsTest.java216 void configureGenericMotion(boolean result, boolean scroll) { in configureGenericMotion() argument
218 mScrollOnGenericMotion = scroll; in configureGenericMotion()
230 private static MotionEvent createRotaryEvent(float scroll) { in createRotaryEvent() argument
232 coords.setAxisValue(AXIS_SCROLL, scroll); in createRotaryEvent()
/frameworks/base/core/tests/coretests/src/android/widget/scroll/arrowscroll/
DTallTextAboveButtonTest.java17 package android.widget.scroll.arrowscroll;
23 import android.widget.scroll.TallTextAboveButton;
DShortButtonsTest.java17 package android.widget.scroll.arrowscroll;
24 import android.widget.scroll.ShortButtons;
DButtonsWithTallTextViewInBetweenTest.java17 package android.widget.scroll.arrowscroll;
26 import android.widget.scroll.ButtonsWithTallTextViewInBetween;
DMultiPageTextWithPadding.java17 package android.widget.scroll.arrowscroll;
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenshot/scroll/
DScrollCaptureClientTest.java17 package com.android.systemui.screenshot.scroll;
40 import com.android.systemui.screenshot.scroll.ScrollCaptureClient.CaptureResult;
41 import com.android.systemui.screenshot.scroll.ScrollCaptureClient.Session;
DScrollViewActivity.java17 package com.android.systemui.screenshot.scroll;
/frameworks/base/packages/SystemUI/compose/scene/tests/src/com/android/compose/animation/scene/
DDraggableHandlerTest.kt217 fun NestedScrollConnection.scroll( in NestedScrollConnection() method in com.android.compose.animation.scene.DraggableHandlerTest.TestGestureScope
580 nestedScroll.scroll(available = downOffset(fractionOfScreen = 0.1f)) in <lambda>()
601 nestedScroll.scroll(available = downOffset(fractionOfScreen = 0.1f)) in <lambda>()
612 nestedScroll.scroll(available = Offset(0f, firstScroll)) in preScrollAfterSceneTransition()
668 nestedScroll.scroll(available = downOffset(fractionOfScreen = 0.1f)) in <lambda>()
684 nestedScroll.scroll(available = downOffset(fractionOfScreen = 0.1f)) in flingAfterScroll()
737 nestedScroll.scroll( in flingAfterScrollStartedInScene()
743 nestedScroll.scroll(available = downOffset(fractionOfScreen = 0.1f)) in flingAfterScrollStartedInScene()
794 nestedScroll.scroll( in <lambda>()
799 nestedScroll.scroll(available = downOffset(fractionOfScreen = 0.1f)) in <lambda>()
[all …]
/frameworks/base/core/tests/coretests/src/android/widget/scroll/
DTallTextAboveButton.java17 package android.widget.scroll;
DButtonAboveTallInternalSelectionView.java17 package android.widget.scroll;
DButtonsWithTallTextViewInBetween.java17 package android.widget.scroll;
DShortButtons.java17 package android.widget.scroll;
DButtonAboveTallInternalSelectionViewTest.java17 package android.widget.scroll;
/frameworks/native/services/vr/virtual_touchpad/aidl/android/dvr/
DIVirtualTouchpadService.aidl47 void scroll(int touchpad, float x, float y) = 4; in scroll() method
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/scroll/
DScrollCaptureExecutor.kt17 package com.android.systemui.screenshot.scroll in <lambda>()
25 import com.android.systemui.screenshot.scroll.ScrollCaptureController.LongScreenshot in <lambda>()
DScrollCaptureController.java17 package com.android.systemui.screenshot.scroll;
35 import com.android.systemui.screenshot.scroll.ScrollCaptureClient.CaptureResult;
36 import com.android.systemui.screenshot.scroll.ScrollCaptureClient.Session;
DLongScreenshotData.java17 package com.android.systemui.screenshot.scroll;
/frameworks/base/core/java/com/android/internal/widget/remotecompose/core/
DRemoteContext.java160 public void setRootContentBehavior(int scroll, int alignment, int sizing, int mode) { in setRootContentBehavior() argument
161 mDocument.setRootContentBehavior(scroll, alignment, sizing, mode); in setRootContentBehavior()
/frameworks/native/services/vr/virtual_touchpad/
DVirtualTouchpadService.h26 binder::Status scroll(int touchpad, float x, float y) override;

123