HomeSort by relevance Sort by last modified time
    Searched refs:scrollable (Results 1 - 25 of 99) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/page/
AutoscrollController.cpp 44 // Delay time in second for start autoscroll if pointer is in border edge of scrollable element.
75 RenderBox* scrollable = RenderBox::findAutoscrollable(renderer);
76 if (!scrollable)
77 scrollable = renderer->isListBox() ? toRenderListBox(renderer) : 0;
78 if (!scrollable)
81 m_autoscrollRenderer = scrollable;
87 RenderBox* scrollable = m_autoscrollRenderer; local
90 if (!scrollable)
93 scrollable->stopAutoscroll();
96 if (FrameView* view = scrollable->frame()->view())
    [all...]
  /frameworks/support/v4/ics/android/support/v4/view/accessibility/
AccessibilityEventCompatIcs.java 39 public static void setScrollable(AccessibilityEvent event, boolean scrollable) {
40 event.setScrollable(scrollable);
AccessibilityRecordCompatIcs.java 182 public static void setScrollable(Object record, boolean scrollable) {
183 ((AccessibilityRecord) record).setScrollable(scrollable);
AccessibilityNodeInfoCompatIcs.java 200 public static void setScrollable(Object info, boolean scrollable) {
201 ((AccessibilityNodeInfo) info).setScrollable(scrollable);
  /external/chromium_org/cc/layers/
layer_perftest.cc 69 bool scrollable = true; local
84 test_layer->SetScrollClipLayerId(scrollable ? test_layer->id()
89 scrollable = !scrollable;
layer_impl.h 403 bool scrollable() const { return !!scroll_clip_layer_; } function in class:cc::LayerImpl
405 void set_user_scrollable_horizontal(bool scrollable) {
406 user_scrollable_horizontal_ = scrollable;
408 void set_user_scrollable_vertical(bool scrollable) {
409 user_scrollable_vertical_ = scrollable;
scrollbar_layer_impl_base.cc 67 // and all scrollable layers in between.
72 // scrollable() test below. https://crbug.com/367858.
73 if (current_layer->scrollable() || current_layer == container_layer ||
layer_impl.cc 368 DCHECK(scrollable());
409 if (!scrollable())
470 if (!scrollable()) {
471 TRACE_EVENT0("cc", "LayerImpl::tryScroll: Ignored not scrollable");
478 "LayerImpl::tryScroll: Ignored. Technically scrollable,"
662 if (scrollable())
663 result->SetBoolean("Scrollable", true);
    [all...]
  /development/samples/UiAutomator/src/com/android/test/uiautomator/demos/
LaunchSettings.java 78 // We declare the object with a selector to a scrollable view. Since in this
79 // case the firt scrollable view happens to be the one containing our apps
81 UiScrollable appViews = new UiScrollable(new UiSelector().scrollable(true));
LogBuildNumber.java 50 public static final UiSelector LAUNCHER_CONTAINER = new UiSelector().scrollable(true);
SetTwoMinuteAlarm.java 39 public static final UiSelector LAUNCHER_CONTAINER = new UiSelector().scrollable(true);
  /frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
EditTextActivityDialog.java 88 protected Dialog createDialog(boolean scrollable) {
92 if (scrollable) {
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ScrollingCoordinatorChromiumTest.cpp 122 ASSERT_TRUE(rootScrollLayer->scrollable());
141 ASSERT_TRUE(rootScrollLayer->scrollable());
298 Element* scrollableElement = frame()->document()->getElementById("scrollable");
317 ASSERT_TRUE(webScrollLayer->scrollable());
357 ASSERT_TRUE(webScrollLayer->scrollable());
380 ASSERT_TRUE(webScrollLayer->scrollable());
394 Element* scrollableFrame = frame()->document()->getElementById("scrollable");
418 ASSERT_TRUE(webScrollLayer->scrollable());
438 Element* scrollableFrame = frame()->document()->getElementById("scrollable");
462 ASSERT_TRUE(webScrollLayer->scrollable());
    [all...]
  /external/chromium_org/cc/test/
layer_tree_json_parser_unittest.cc 39 RETURN_IF_EXPECTATION_FAILS(EXPECT_EQ(layer_impl->scrollable(),
40 layer->scrollable()));
layer_tree_json_parser.cc 101 bool scrollable; local
106 // But, since a clip layer is always an ancestor of the scrollable layer, we
109 // scrollable). Reconstructing the tree can then be accomplished by passing
115 // For now, we can safely indicate a layer is scrollable by giving it a
120 if (dict->GetBoolean("Scrollable", &scrollable))
121 new_layer->SetScrollClipLayerId(scrollable ? new_layer->id()
  /external/chromium_org/third_party/WebKit/public/platform/
WebLayer.h 167 // To set a WebLayer as scrollable we must specify the corresponding clip layer.
169 virtual bool scrollable() const = 0;
  /frameworks/support/v4/java/android/support/v4/view/accessibility/
AccessibilityRecordCompat.java 49 public void setScrollable(Object record, boolean scrollable);
251 public void setScrollable(Object record, boolean scrollable) {
461 public void setScrollable(Object record, boolean scrollable) {
462 AccessibilityRecordCompatIcs.setScrollable(record, scrollable);
698 * Gets if the source is scrollable.
700 * @return True if the source is scrollable, false otherwise.
707 * Sets if the source is scrollable.
709 * @param scrollable True if the source is scrollable, false otherwise.
713 public void setScrollable(boolean scrollable) {
    [all...]
AccessibilityNodeInfoCompat.java 243 public void setScrollable(Object info, boolean scrollable);
561 public void setScrollable(Object info, boolean scrollable) {
949 public void setScrollable(Object info, boolean scrollable) {
950 AccessibilityNodeInfoCompatIcs.setScrollable(info, scrollable);
    [all...]
  /external/chromium_org/chrome/browser/resources/extensions/
extension_error.css 20 .extension-error-list-contents.scrollable {
  /external/chromium_org/cc/blink/
web_layer_impl.h 108 virtual bool scrollable() const;
web_layer_impl.cc 286 bool WebLayerImpl::scrollable() const { function in class:cc_blink::WebLayerImpl
287 return layer_->scrollable();
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/
BrowserAccessibilityManager.java 491 boolean scrollable, boolean selected, boolean visibleToUser) {
499 node.setScrollable(scrollable);
629 boolean checked, boolean enabled, boolean password, boolean scrollable) {
633 event.setScrollable(scrollable);
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityRecord.java 275 * Gets if the source is scrollable.
277 * @return True if the source is scrollable, false otherwise.
284 * Sets if the source is scrollable.
286 * @param scrollable True if the source is scrollable, false otherwise.
290 public void setScrollable(boolean scrollable) {
292 setBooleanProperty(PROPERTY_SCROLLABLE, scrollable);
827 builder.append("; Scrollable: " + getBooleanProperty(PROPERTY_SCROLLABLE));
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
scrollbar.js 65 * @param {Element=} opt_scrollableArea Element with scrollable contents.
66 * If not passed, then call attachToView manually when the scrollable
76 * Attaches the scrollbar to a scrollable element and attaches handlers.
77 * @param {Element} view Scrollable element.
  /external/okhttp/website/static/
jquery.smooth-scroll.min.js 7 (function(l){function t(l){return l.replace(/(:|\.)/g,"\\$1")}var e="1.4.10",o={exclude:[],excludeWithin:[],offset:0,direction:"top",scrollElement:null,scrollTarget:null,beforeScroll:function(){},afterScroll:function(){},easing:"swing",speed:400,autoCoefficent:2},r=function(t){var e=[],o=!1,r=t.dir&&"left"==t.dir?"scrollLeft":"scrollTop";return this.each(function(){if(this!=document&&this!=window){var t=l(this);t[r]()>0?e.push(this):(t[r](1),o=t[r]()>0,o&&e.push(this),t[r](0))}}),e.length||this.each(function(){"BODY"===this.nodeName&&(e=[this])}),"first"===t.el&&e.length>1&&(e=[e[0]]),e};l.fn.extend({scrollable:function(l){var t=r.call(this,{dir:l});return this.pushStack(t)},firstScrollable:function(l){var t (…)

Completed in 1177 milliseconds

1 2 3 4