/development/samples/ApiDemos/src/com/example/android/apis/view/ |
ContentBrowserActivity.java | 37 import android.widget.ScrollView; 60 public static class Content extends ScrollView
|
ContentBrowserNavActivity.java | 37 import android.widget.ScrollView; 61 public static class Content extends ScrollView
|
/cts/tests/tests/view/src/android/view/cts/ |
ViewTreeObserverTest.java | 38 import android.widget.ScrollView; 332 final ScrollView scrollView = (ScrollView) mActivity.findViewById(R.id.scroll_view); 334 mViewTreeObserver = scrollView.getViewTreeObserver(); 343 scrollView.fullScroll(View.FOCUS_DOWN); 361 scrollView.fullScroll(View.FOCUS_UP);
|
/external/chromium_org/third_party/WebKit/Source/core/platform/mac/ |
ThemeMac.mm | 34 #import "platform/scroll/ScrollView.h" 275 static void paintCheckbox(ControlStates states, GraphicsContext* context, const IntRect& zoomedRect, float zoomFactor, ScrollView* scrollView) 298 NSView *view = ThemeMac::ensuredView(scrollView); 357 static void paintRadio(ControlStates states, GraphicsContext* context, const IntRect& zoomedRect, float zoomFactor, ScrollView* scrollView) 379 NSView *view = ThemeMac::ensuredView(scrollView); 438 static void paintButton(ControlPart part, ControlStates states, GraphicsContext* context, const IntRect& zoomedRect, float zoomFactor, ScrollView* scrollView) 471 NSView *view = ThemeMac::ensuredView(scrollView); [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/scroll/ |
Scrollbar.cpp | 34 #include "platform/scroll/ScrollView.h" 101 ScrollView* Scrollbar::parentScrollView() const 106 ScrollView* Scrollbar::rootScrollView() const 492 ScrollView* view = parentScrollView();
|
/external/chromium_org/third_party/WebKit/Source/web/resources/ |
calendarPicker.js | 1300 function ScrollView() { 1301 View.call(this, createElement("div", ScrollView.ClassNameScrollView)); 1306 this.contentElement = createElement("div", ScrollView.ClassNameScrollViewContent); 1365 ScrollView.prototype = Object.create(View.prototype); 1367 ScrollView.PartitionHeight = 100000; 1368 ScrollView.ClassNameScrollView = "scroll-view"; 1369 ScrollView.ClassNameScrollViewContent = "scroll-view-content"; 1374 ScrollView.prototype.onTouchStart = function(event) { [all...] |
/frameworks/base/core/java/android/widget/ |
ScrollView.java | 50 * allowing it to be larger than the physical display. A ScrollView 56 * <p>You should never use a ScrollView with a {@link ListView}, because 60 * list of items to fill up the infinite container supplied by ScrollView. 62 * takes care of its own scrolling, so does not require a ScrollView, but 66 * <p>ScrollView only supports vertical scrolling. For horizontal scrolling, 71 public class ScrollView extends FrameLayout { 76 private static final String TAG = "ScrollView"; 104 * True if the user is currently dragging this ScrollView around. This is 157 public ScrollView(Context context) { 161 public ScrollView(Context context, AttributeSet attrs) [all...] |
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
TextCandidatesViewManager.java | 53 import android.widget.ScrollView; 105 private ScrollView mViewBodyScroll; 461 mViewBodyScroll = (ScrollView)mViewBody.findViewById(R.id.candview_scroll); [all...] |
/cts/tests/uiautomator/src/com/android/cts/uiautomatortest/ |
CtsUiAutomatorTest.java | 131 (new UiSelector().className(android.widget.ScrollView.class.getName()) 812 android.widget.ScrollView.class).childSelector(new UiSelector().className( [all...] |
/external/chromium_org/ui/views/ |
view.h | 69 class ScrollView; [all...] |
/external/chromium_org/chrome/browser/ui/views/extensions/ |
media_galleries_dialog_views.cc | 42 // This container has the right Layout() impl to use within a ScrollView. 183 views::ScrollView* scroll_view = 184 views::ScrollView::CreateScrollViewWithBorder();
|
extension_install_dialog_view.cc | 156 views::ScrollView* scroll_view_; 355 scroll_view_ = new views::ScrollView(); [all...] |
/external/chromium_org/chrome/browser/ui/views/ |
profile_reset_bubble_view.cc | 362 views::ScrollView* scroll_view = new views::ScrollView();
|
collected_cookies_views.cc | 487 views::ScrollView* scroll_view = new views::ScrollView();
|
desktop_media_picker_views.cc | 176 views::ScrollView* scroll_view_; 482 scroll_view_(views::ScrollView::CreateScrollViewWithBorder()),
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/ |
RecentsVerticalScrollView.java | 34 import android.widget.ScrollView; 43 public class RecentsVerticalScrollView extends ScrollView 220 // We do this so the underlying ScrollView knows that it won't get 314 // TODO Add to (Vertical)ScrollView
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderWidget.cpp | 63 ScrollView* currentParent = toScrollView(child->parent());
|
/external/chromium_org/third_party/WebKit/Source/web/ |
PopupListBox.cpp | 290 // Our parent is the root ScrollView, so it is the one that has a 388 ScrollView::paint(gc, rect); 694 ScrollView::setScrollPosition(IntPoint(0, rowRect.y())); 697 ScrollView::setScrollPosition(IntPoint(0, rowRect.maxY() - visibleHeight()));
|
WebInputEventConversion.cpp | 45 #include "platform/scroll/ScrollView.h" 58 ScrollView* rootView = toScrollView(widget->root()); 69 ScrollView* rootView = toScrollView(widget->root()); 461 ScrollView* view = toScrollView(widget.parent());
|
WebPluginContainerImpl.cpp | 77 #include "platform/scroll/ScrollView.h" 127 ScrollView* view = toScrollView(parent()); 526 ScrollView* view = toScrollView(parent()); 535 ScrollView* view = toScrollView(parent());
|
/frameworks/base/core/java/com/android/internal/app/ |
AlertController.java | 53 import android.widget.ScrollView; 101 private ScrollView mScrollView; 501 mScrollView = (ScrollView) mWindow.findViewById(R.id.scrollView); 517 contentPanel.removeView(mWindow.findViewById(R.id.scrollView)); [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/ |
FocusHelper.java | 24 import android.widget.ScrollView; [all...] |
Folder.java | 46 import android.widget.ScrollView; 76 private ScrollView mScrollView; 178 mScrollView = (ScrollView) findViewById(R.id.scroll_view); [all...] |
/external/chromium_org/chrome/browser/ui/views/autofill/ |
autofill_dialog_views.h | 630 views::ScrollView* scrollable_area_;
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
FrameView.h | 34 #include "platform/scroll/ScrollView.h" 58 class FrameView : public ScrollView { 400 // Override ScrollView methods to do point conversion via renderers, in order to
|