/external/chromium_org/third_party/WebKit/Source/core/page/ |
AutoscrollController.cpp | 43 // Delay time in second for start autoscroll if pointer is in border edge of scrollable element. 74 RenderBox* scrollable = RenderBox::findAutoscrollable(renderer); 75 if (!scrollable) 78 m_autoscrollRenderer = scrollable; 84 RenderBox* scrollable = m_autoscrollRenderer; local 87 if (!scrollable) 90 scrollable->stopAutoscroll(); 93 if (FrameView* view = scrollable->frame()->view()) { 140 RenderBox* scrollable = RenderBox::findAutoscrollable(dropTargetNode->renderer()); 141 if (!scrollable) { [all...] |
/external/chromium_org/cc/layers/ |
layer_perftest.cc | 68 bool scrollable = true; local 83 test_layer->SetScrollable(scrollable); 87 scrollable = !scrollable;
|
layer_impl.h | 402 void SetScrollable(bool scrollable) { scrollable_ = scrollable; } 403 bool scrollable() const { return scrollable_; } 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;
|
layer.h | 276 void SetScrollable(bool scrollable); 277 bool scrollable() const { return scrollable_; } function in class:cc::Layer
|
layer.cc | 712 void Layer::SetScrollable(bool scrollable) { 714 if (scrollable_ == scrollable) 716 scrollable_ = scrollable; [all...] |
layer_impl.cc | 361 DCHECK(scrollable()); 397 if (!scrollable()) 458 if (!scrollable()) { 459 TRACE_EVENT0("cc", "LayerImpl::tryScroll: Ignored not scrollable"); 465 "LayerImpl::tryScroll: Ignored. Technically scrollable," 618 result->SetBoolean("Scrollable", scrollable_); [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 | 148 ASSERT_TRUE(rootScrollLayer->scrollable()); 259 registerMockedHttpURLLoad("non-fast-scrollable.html"); 260 navigateTo(m_baseURL + "non-fast-scrollable.html"); 298 Element* scrollableElement = m_webViewImpl->mainFrameImpl()->frame()->document()->getElementById("scrollable"); 317 ASSERT_TRUE(webScrollLayer->scrollable()); 357 ASSERT_TRUE(webScrollLayer->scrollable()); 380 ASSERT_TRUE(webScrollLayer->scrollable()); 394 Element* scrollableFrame = m_webViewImpl->mainFrameImpl()->frame()->document()->getElementById("scrollable"); 418 ASSERT_TRUE(webScrollLayer->scrollable()); 438 Element* scrollableFrame = m_webViewImpl->mainFrameImpl()->frame()->document()->getElementById("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 | 103 bool scrollable; local 104 if (dict->GetBoolean("Scrollable", &scrollable)) 105 new_layer->SetScrollable(scrollable);
|
/external/chromium_org/webkit/renderer/compositor_bindings/ |
web_layer_impl.h | 112 virtual void setScrollable(bool scrollable); 113 virtual bool scrollable() const;
|
web_layer_impl.cc | 258 void WebLayerImpl::setScrollable(bool scrollable) { 259 layer_->SetScrollable(scrollable); 262 bool WebLayerImpl::scrollable() const { return layer_->scrollable(); } function in class:webkit::WebLayerImpl
|
/frameworks/support/v4/ics/android/support/v4/view/accessibility/ |
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/third_party/WebKit/public/platform/ |
WebLayer.h | 181 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 | 88 public void setScrollable(Object info, boolean scrollable); 361 public void setScrollable(Object info, boolean scrollable) { 638 public void setScrollable(Object info, boolean scrollable) { 639 AccessibilityNodeInfoCompatIcs.setScrollable(info, scrollable); [all...] |
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/ |
BrowserAccessibilityManager.java | 402 boolean scrollable, boolean selected, boolean visibleToUser) { 410 node.setScrollable(scrollable); 511 boolean checked, boolean enabled, boolean password, boolean scrollable) { 515 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/chrome/browser/resources/file_manager/foreground/js/ |
scrollbar.js | 64 * @param {Element=} opt_scrollableArea Element with scrollable contents. 65 * If not passed, then call attachToView manually when the scrollable 75 * Attaches the scrollbar to a scrollable element and attaches handlers. 76 * @param {Element} view Scrollable element.
|
/prebuilts/sdk/16/ |
uiautomator.jar | |
/development/samples/training/multiscreen/newsreader/libs/ |
android-support-v4.jar | |