Searched refs:scrollView (Results 1 – 5 of 5) sorted by relevance
/external/setupdesign/main/src/com/google/android/setupdesign/template/ |
D | ScrollViewScrollHandlingDelegate.java | 38 @Nullable private final BottomScrollView scrollView; field in ScrollViewScrollHandlingDelegate 41 @NonNull RequireScrollMixin requireScrollMixin, @Nullable ScrollView scrollView) { in ScrollViewScrollHandlingDelegate() argument 43 if (scrollView instanceof BottomScrollView) { in ScrollViewScrollHandlingDelegate() 44 this.scrollView = (BottomScrollView) scrollView; in ScrollViewScrollHandlingDelegate() 46 Log.w(TAG, "Cannot set non-BottomScrollView. Found=" + scrollView); in ScrollViewScrollHandlingDelegate() 47 this.scrollView = null; in ScrollViewScrollHandlingDelegate() 63 if (scrollView != null) { in startListening() 64 scrollView.setBottomScrollListener(this); in startListening() 72 if (scrollView != null) { in pageScrollDown() 73 scrollView.pageScroll(ScrollView.FOCUS_DOWN); in pageScrollDown()
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowScrollViewTest.java | 15 ScrollView scrollView = new ScrollView(ApplicationProvider.getApplicationContext()); in shouldSmoothScrollTo() local 16 scrollView.smoothScrollTo(7, 6); in shouldSmoothScrollTo() 18 assertEquals(7, scrollView.getScrollX()); in shouldSmoothScrollTo() 19 assertEquals(6, scrollView.getScrollY()); in shouldSmoothScrollTo() 24 ScrollView scrollView = new ScrollView(ApplicationProvider.getApplicationContext()); in shouldSmoothScrollBy() local 25 scrollView.smoothScrollTo(7, 6); in shouldSmoothScrollBy() 26 scrollView.smoothScrollBy(10, 20); in shouldSmoothScrollBy() 28 assertEquals(17, scrollView.getScrollX()); in shouldSmoothScrollBy() 29 assertEquals(26, scrollView.getScrollY()); in shouldSmoothScrollBy()
|
/external/setupdesign/main/src/com/google/android/setupdesign/ |
D | GlifLayout.java | 124 final ScrollView scrollView = getScrollView(); in init() local 125 if (scrollView != null) { in init() 127 new ScrollViewScrollHandlingDelegate(requireScrollMixin, scrollView)); in init()
|
D | SetupWizardLayout.java | 92 final ScrollView scrollView = getScrollView(); in init() local 93 if (scrollView != null) { in init() 95 new ScrollViewScrollHandlingDelegate(requireScrollMixin, scrollView)); in init()
|
/external/clang/test/SemaObjC/ |
D | ivar-access-tests.m | 118 static void _CasperDiffScrollViewInstallMixerView(CasperDiffScrollView *scrollView) { 119 if (scrollView->someField != ((void *)0)) {
|