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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/page/
AutoscrollController.cpp 41 // 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)
79 m_autoscrollRenderer = scrollable;
85 RenderBox* scrollable = m_autoscrollRenderer; local
89 if (!scrollable)
92 scrollable->stopAutoscroll();
95 if (FrameView* view = scrollable->frame()->view()) {
140 RenderBox* scrollable = RenderBox::findAutoscrollable(dropTargetNode->renderer()); local
141 if (!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);
  /external/chromium_org/cc/test/
layer_tree_json_parser.cc 84 bool scrollable; local
85 if (dict->GetBoolean("Scrollable", &scrollable))
86 new_layer->SetScrollable(scrollable);
  /frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
EditTextActivityDialog.java 88 protected Dialog createDialog(boolean scrollable) {
92 if (scrollable) {
  /external/chromium_org/webkit/renderer/compositor_bindings/
web_layer_impl.h 102 virtual void setScrollable(bool scrollable);
103 virtual bool scrollable() const;
web_layer_impl.cc 244 void WebLayerImpl::setScrollable(bool scrollable) {
245 layer_->SetScrollable(scrollable);
248 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 320 boolean scrollable, boolean selected, boolean visibleToUser) {
328 node.setScrollable(scrollable);
400 boolean checked, boolean enabled, boolean password, boolean scrollable) {
404 event.setScrollable(scrollable);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ScrollingCoordinatorChromiumTest.cpp 138 ASSERT_TRUE(rootScrollLayer->scrollable());
248 registerMockedHttpURLLoad("non-fast-scrollable.html");
249 navigateTo(m_baseURL + "non-fast-scrollable.html");
283 Element* scrollableElement = m_webViewImpl->mainFrameImpl()->frame()->document()->getElementById("scrollable");
302 ASSERT_TRUE(webScrollLayer->scrollable());
321 Element* scrollableFrame = m_webViewImpl->mainFrameImpl()->frame()->document()->getElementById("scrollable");
345 ASSERT_TRUE(webScrollLayer->scrollable());
364 Element* scrollableFrame = m_webViewImpl->mainFrameImpl()->frame()->document()->getElementById("scrollable");
388 ASSERT_TRUE(webScrollLayer->scrollable());
  /external/chromium_org/cc/layers/
layer_impl.h 332 void SetScrollable(bool scrollable) { scrollable_ = scrollable; }
333 bool scrollable() const { return scrollable_; } function in class:cc::LayerImpl
layer.h 212 void SetScrollable(bool scrollable);
213 bool scrollable() const { return scrollable_; } function in class:cc::Layer
layer.cc 593 void Layer::SetScrollable(bool scrollable) {
595 if (scrollable_ == scrollable)
597 scrollable_ = scrollable;
layer_impl.cc 262 DCHECK(scrollable());
340 if (!scrollable()) {
341 TRACE_EVENT0("cc", "LayerImpl::tryScroll: Ignored not scrollable");
347 "LayerImpl::tryScroll: Ignored. Technically scrollable,"
471 result->SetBoolean("Scrollable", scrollable_);
    [all...]
  /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/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 
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
inspector.css 226 #toolbar-dropdown .scrollable-content {
281 .scrollable-content {
290 .scrollable-content::-webkit-scrollbar {
294 .scrollable-content::-webkit-scrollbar-corner,
295 .scrollable-content::-webkit-resizer {
299 .scrollable-content::-webkit-scrollbar-thumb:vertical {
305 .scrollable-content::-webkit-scrollbar-thumb:vertical:hover,
306 .scrollable-content::-webkit-scrollbar-thumb:vertical:active {
310 .scrollable-content::-webkit-scrollbar-track:vertical {
    [all...]
  /development/samples/training/multiscreen/newsreader/libs/
android-support-v4.jar 
  /external/chromium/chrome/browser/resources/
print_preview_animations.js 142 * @param {HTMLElement} scrollableEl The scrollable element

Completed in 762 milliseconds

1 2 3 4