HomeSort by relevance Sort by last modified time
    Searched full:scroll (Results 76 - 100 of 1318) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
ButtonAboveTallInternalSelectionView.java 17 package android.widget.scroll;
25 * A button above a tall internal selection view, wrapped in a scroll view.
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
ScrollAdapter.java 22 * A scroll adapter which can be queried for meta information about the scroll state
  /frameworks/native/services/vr/virtual_touchpad/
VirtualTouchpadClient.cpp 63 status_t Scroll(int touchpad, float x, float y) override {
67 return service_->scroll(touchpad, x, y).transactionError();
  /frameworks/support/samples/SupportDesignDemos/src/main/res/values/
strings.xml 92 <string name="design_appbar_toolbar_scroll_tabs_scroll">AppBar/Toolbar Scroll + Tabs Scroll</string>
93 <string name="design_appbar_toolbar_scroll_tabs_scroll_snap">AppBar/Toolbar Scroll + Tabs Scroll + Snap</string>
94 <string name="design_appbar_toolbar_scroll_tabs_pin">AppBar/Toolbar Scroll + Tabs Pin</string>
95 <string name="design_appbar_toolbar_scroll_tabs_pin_with_swiperefresh">AppBar/Toolbar Scroll + Tabs Pin + Swipe Refresh</string>
99 <string name="design_appbar_collapsing_toolbar_scroll">AppBar/Collapsing Toolbar (scroll off)</string>
100 <string name="design_appbar_collapsing_toolbar_scroll_with_swiperefresh">AppBar/Collapsing Toolbar (scroll off) + Swipe Refresh</string>
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
ScrollController.java 32 * scroll to the beginning or end, this will make sure you won't see blank space in viewport
114 * Maintains scroll information in one direction
121 * {@link #mTouchScrollMax}; focus won't moved to two sides when scroll to edge of view
129 * scroll position (see {@link ScrollAdapterView#adjustSystemScrollPos}), note it's not
145 * Maximum scroll value, initially unlimited until we will get the value when scroll to the
150 * scroll max for standard touch friendly operation, i.e. focus will not move to side when
151 * scroll to two edges.
158 /** Minimum scroll value, point to center of first child, typically half of child size */
161 * scroll min for standard touch friendly operation, i.e. focus will not move to side whe
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
SwipeableItemView.java 33 * Returns the minimum allowed displacement in the Y axis that is considered a scroll. After
34 * this displacement, all future events are considered scroll events rather than swipes.
  /developers/build/prebuilts/gradle/SkeletonWearableApp/Wearable/src/main/java/com/example/android/google/wearable/app/
MainActivity.java 105 scroll(View.FOCUS_DOWN);
111 scroll(View.FOCUS_UP);
117 scroll(View.FOCUS_UP);
120 private void scroll(final int scrollDirection) { method in class:MainActivity
121 final ScrollView scrollView = (ScrollView) findViewById(R.id.scroll);
  /developers/samples/android/wearable/wear/SkeletonWearableApp/Wearable/src/main/java/com/example/android/google/wearable/app/
MainActivity.java 105 scroll(View.FOCUS_DOWN);
111 scroll(View.FOCUS_UP);
117 scroll(View.FOCUS_UP);
120 private void scroll(final int scrollDirection) { method in class:MainActivity
121 final ScrollView scrollView = (ScrollView) findViewById(R.id.scroll);
  /development/samples/browseable/SkeletonWearableApp/src/com.example.android.google.wearable.app/
MainActivity.java 105 scroll(View.FOCUS_DOWN);
111 scroll(View.FOCUS_UP);
117 scroll(View.FOCUS_UP);
120 private void scroll(final int scrollDirection) { method in class:MainActivity
121 final ScrollView scrollView = (ScrollView) findViewById(R.id.scroll);
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
RuleListController.java 55 private final JScrollPane scroll = new JScrollPane( list, field in class:RuleListController
68 return scroll;
89 scroll.setViewportBorder(BorderFactory.createEtchedBorder());
90 scroll.setBorder(BorderFactory.createTitledBorder(
92 scroll.setOpaque(false);
  /external/autotest/client/site_tests/touch_ScrollDirection/
touch_ScrollDirection.py 18 _FILENAME_FMT_STR = 'scroll-%s'
25 @param expected: String, expected direction in which test page scroll
38 logging.info('Scroll delta was %d', delta)
44 raise error.TestFail('Page scroll was in wrong direction! '
96 # Check default scroll - Australian only for samus and link.
  /external/fio/
ghelpers.c 194 GtkWidget *scroll; local
196 scroll = gtk_scrolled_window_new(NULL, NULL);
197 gtk_container_set_border_width(GTK_CONTAINER(scroll), border_width);
198 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
200 return scroll;
  /frameworks/base/core/java/com/android/internal/widget/
LinearSmoothScroller.java 78 // Trigger a scroll to a further distance than TARGET_SEEK_SCROLL_DISTANCE_PX so that if target
80 // scrolling slows down and reschedule another interim target scroll
91 // Temporary variables to keep track of the interim scroll target. These values do not
133 throw new IllegalStateException("Scroll happened in the opposite direction"
155 * Calculates the scroll speed.
169 * @param dx Distance to scroll
183 * Calculates the time it should take to scroll the given distance (in pixels)
185 * @param dx Distance in pixels that we want to scroll
225 * When the target scroll position is not a child of the RecyclerView, this method calculates
226 * a direction vector towards that child and triggers a smooth scroll
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/gridview/
GridScrollListenerTest.java 70 assertTrue("Arrow scroll did not happen", mFirstVisibleItem > firstVisibleItem);
81 assertTrue("Page scroll did not happen", mFirstVisibleItem < firstVisibleItem);
92 assertTrue("Full scroll did not happen", mFirstVisibleItem > firstVisibleItem);
93 assertEquals("Full scroll did not happen", mTotalItemCount,
104 assertTrue("Touch scroll did not happen", mFirstVisibleItem > firstVisibleItem);
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListScrollListenerTest.java 69 assertTrue("Arrow scroll did not happen", mFirstVisibleItem > firstVisibleItem);
79 assertTrue("Page scroll did not happen", mFirstVisibleItem < firstVisibleItem);
90 assertTrue("Full scroll did not happen", mFirstVisibleItem > firstVisibleItem);
91 assertEquals("Full scroll did not happen", mTotalItemCount,
100 assertTrue("Touch scroll did not happen", mFirstVisibleItem > firstVisibleItem);
  /frameworks/support/compat/src/androidTest/java/androidx/core/widget/
ListViewCompatTest.java 136 // Verify that when we're at the top of the list, we can't scroll up but we can scroll
141 // Scroll down to the very end of the list
151 // Verify that when we're at the bottom of the list, we can't scroll down but we can scroll
  /frameworks/support/samples/Support4Demos/src/main/res/values/
strings.xml 237 <string name="nested_scroll_long_text">This is some long text. It just keeps going. Look at it. Scroll it. Scroll the nested version of it. This is some long text. It just keeps going. Look at it. Scroll it. Scroll the nested version of it. This is some long text. It just keeps going. Look at it. Scroll it. Scroll the nested version of it. This is some long text. It just keeps going. Look at it. Scroll it. Scroll the nested version of it. This is some long text. It just keeps going. Look at it. Scroll it. Scroll the nested version of it. This is some long text. It just keeps going. Look at it. Scroll it. Scro (…)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/util/
ScrollViewScenario.java 35 * Utility base class for creating scroll view scenarios, allowing you to add
42 * Holds content of scroll view
47 * The actual scroll view
83 * Builder for selecting the views to be vertically arranged in the scroll
167 * Add a sublayout of buttons as a single child of the scroll view.
203 * Override this and initialized the views in the scroll view.
204 * @param params Used to configure the contents of the scroll view.
218 * scroll view.
220 * @return the child within the vertical linear layout of the scroll view
229 * Hook for changing how scroll view's are created
    [all...]
  /frameworks/base/core/java/android/view/
ViewParent.java 502 * React to a descendant view initiating a nestable scroll operation, claiming the
503 * nested scroll operation if appropriate.
513 * of the scroll operation in progress. When the nested scroll is finished this ViewParent
518 * @param target View that initiated the nested scroll
521 * @return true if this ViewParent accepts the nested scroll operation
526 * React to the successful claiming of a nested scroll operation.
531 * for the nested scroll. Implementations of this method should always call their superclass's
535 * @param target View that initiated the nested scroll
544 * React to a nested scroll operation ending
    [all...]
  /frameworks/support/compat/src/main/java/androidx/core/widget/
AutoScrollHelper.java 50 * will scroll at the maximum velocity.
143 /** The view to auto-scroll. Might not be the source of touch events. */
208 * @param target The view to automatically scroll.
229 * Sets whether the scroll helper is enabled and should respond to touch
232 * @param enabled Whether the scroll helper is enabled.
233 * @return The scroll helper, which may used to chain setter calls.
261 * @return The scroll helper, which may used to chain setter calls.
269 * Indicates whether the scroll helper handles touch events exclusively
292 * @return The scroll helper, which may used to chain setter calls.
311 * @return The scroll helper, which may used to chain setter calls
    [all...]
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/dirlist/
DragScrollListenerTest.java 90 // Can't scroll up
96 // Can't scroll Down
121 // Can't scroll up
128 // Can't scroll Down
138 // A correct Auto-scroll happens in the sequence of:
139 // Started -> LocationChanged -> Scroll -> Enter -> Exit
140 // This test to make sure scroll actually happens in the right direction given correct sequence
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
AsyncListUtilTest.java 78 scrollAndExpectTiles(10, "scroll to 10", 30);
79 scrollAndExpectTiles(25, "scroll to 25", 40);
80 scrollAndExpectTiles(45, "scroll to 45", 50, 60);
81 scrollAndExpectTiles(70, "scroll to 70", 70, 80, 90);
88 scrollAndExpectTiles(50, "scroll down a lot", 40, 50, 60, 70, 80);
92 scrollAndExpectTiles(60, "scroll down a little, no new tiles loaded");
93 scrollAndExpectTiles(40, "scroll up a little, no new tiles loaded");
104 scrollAndExpectTiles(50, "scroll down more, all pages should load", 50, 60, 70);
105 scrollAndExpectTiles(0, "scroll back to top, all pages should reload", 0, 10, 20);
  /platform_testing/libraries/app-helpers/interfaces/handheld/src/android/platform/helpers/
IGmailHelper.java 138 * This method will scroll the navigation drawer and block until idle. Only accepts UP and DOWN.
145 * This method will scroll the mailbox view.
147 * @param direction The direction to scroll, only accepts UP and DOWN.
148 * @param amount The amount to scroll
149 * @param scrollToEnd Whether or not to scroll to the end
156 * This method will scroll the current email.
158 * @param direction The direction to scroll, only accepts UP and DOWN.
159 * @param amount The amount to scroll
160 * @param scrollToEnd Whether or not to scroll to the end
  /build/make/tools/droiddoc/templates-ndk/
customizations.cs 9 <div id="devdoc-nav" class="scroll-pane">
26 <div id="devdoc-nav" class="scroll-pane">
44 <div id="devdoc-nav" class="scroll-pane">
63 <div id="devdoc-nav" class="scroll-pane">
82 <div id="devdoc-nav" class="scroll-pane">
101 <div id="devdoc-nav" class="scroll-pane">
119 <div id="devdoc-nav" class="scroll-pane">
138 <div id="devdoc-nav" class="scroll-pane">
152 <div id="devdoc-nav" class="scroll-pane">
166 <div id="devdoc-nav" class="scroll-pane"
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
eventhistory.cpp 113 bool scroll = true; local
117 scroll = false;
122 if (scroll)

Completed in 2031 milliseconds

1 2 34 5 6 7 8 91011>>