OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ScrollView
(Results
1 - 19
of
19
) sorted by null
/external/chromium_org/ui/views/controls/
scroll_view.h
17
//
ScrollView
class
19
// A
ScrollView
is used to make any View scrollable. The view is added to
25
// The
scrollview
supports keyboard UI and mousewheel.
29
class VIEWS_EXPORT
ScrollView
: public View, public ScrollBarController {
33
ScrollView
();
34
virtual ~
ScrollView
();
36
// Creates a
ScrollView
with a theme specific border.
37
static
ScrollView
* CreateScrollViewWithBorder();
64
// Customize the scrollbar design.
ScrollView
takes the ownership of the
134
DISALLOW_COPY_AND_ASSIGN(
ScrollView
);
[
all
...]
scroll_view.cc
16
const char
ScrollView
::kViewClassName[] = "
ScrollView
";
20
// Subclass of
ScrollView
that resets the border when the theme changes.
21
class ScrollViewWithBorder : public views::
ScrollView
{
81
// Viewport contains the contents View of the
ScrollView
.
82
class
ScrollView
::Viewport : public View {
88
return "
ScrollView
::Viewport";
98
static_cast<
ScrollView
*>(parent())->ScrollContentsRegionToBeVisible(
111
ScrollView
::
ScrollView
()
[
all
...]
/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
...]
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollView.h
44
class PLATFORM_EXPORT
ScrollView
: public Widget, public ScrollableArea {
46
~
ScrollView
();
61
// The window thats hosts the
ScrollView
. The
ScrollView
will communicate scrolls and repaints to the
140
// Functions for getting/setting the size of the document contained inside the
ScrollView
(as an IntSize or as individual width and height
267
ScrollView
();
342
}; // class
ScrollView
344
inline
ScrollView
* toScrollView(Widget* widget)
347
return static_cast<
ScrollView
*>(widget);
350
inline const
ScrollView
* toScrollView(const Widget* widget
[
all
...]
ScrollView.cpp
27
#include "platform/scroll/
ScrollView
.h"
39
ScrollView
::
ScrollView
()
55
ScrollView
::~
ScrollView
()
59
void
ScrollView
::addChild(PassRefPtr<Widget> prpChild)
67
void
ScrollView
::removeChild(Widget* child)
74
void
ScrollView
::setHasHorizontalScrollbar(bool hasBar)
88
void
ScrollView
::setHasVerticalScrollbar(bool hasBar)
102
PassRefPtr<Scrollbar>
ScrollView
::createScrollbar(ScrollbarOrientation orientation
[
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
...]
/cts/tests/tests/widget/src/android/widget/cts/
ScrollViewTest.java
38
import android.widget.
ScrollView
;
42
* Test {@link
ScrollView
}.
87
new
ScrollView
(mActivity);
89
new
ScrollView
(mActivity, attrs);
91
new
ScrollView
(mActivity, attrs, 0);
96
ScrollView
scrollView
= new
ScrollView
(mActivity);
97
scrollView
.layout(0, 0, 100, 200);
98
assertEquals((200 - 0) / 2,
scrollView
.getMaxScrollAmount())
[
all
...]
/prebuilts/sdk/10/
android.jar
/prebuilts/sdk/12/
android.jar
/prebuilts/sdk/14/
android.jar
/prebuilts/sdk/15/
android.jar
/prebuilts/sdk/17/
android.jar
/prebuilts/sdk/18/
android.jar
/prebuilts/sdk/4/
android.jar
/prebuilts/sdk/5/
android.jar
/prebuilts/sdk/6/
android.jar
/prebuilts/sdk/7/
android.jar
/prebuilts/sdk/8/
android.jar
/prebuilts/sdk/current/
android.jar
Completed in 545 milliseconds