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

1 2

  /external/droiddriver/src/com/google/android/droiddriver/actions/
ClickAction.java 57 Rect elementRect = element.getVisibleBounds();
58 long downTime = Events.touchDown(injector, elementRect.centerX(), elementRect.centerY());
61 Events.touchUp(injector, downTime, elementRect.centerX(), elementRect.centerY());
73 Rect elementRect = element.getVisibleBounds();
74 long downTime = Events.touchDown(injector, elementRect.centerX(), elementRect.centerY());
78 Events.touchUp(injector, downTime, elementRect.centerX(), elementRect.centerY())
    [all...]
SwipeAction.java 145 Rect elementRect = element.getVisibleBounds();
147 int topMargin = (int) (elementRect.height() * topMarginRatio);
148 int bottomMargin = (int) (elementRect.height() * bottomMarginRatio);
149 int leftMargin = (int) (elementRect.width() * leftMarginRatio);
150 int rightMargin = (int) (elementRect.width() * rightMarginRatio);
151 int adjustedbottom = elementRect.bottom - bottomMargin;
152 int adjustedTop = elementRect.top + topMargin;
153 int adjustedLeft = elementRect.left + leftMargin;
154 int adjustedRight = elementRect.right - rightMargin;
162 startX = elementRect.centerX()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXTableHeaderContainer.cpp 49 LayoutRect AXTableHeaderContainer::elementRect() const
75 m_headerRect.unite(m_children[k]->elementRect());
AXTableHeaderContainer.h 49 virtual LayoutRect elementRect() const OVERRIDE;
AXMenuListOption.cpp 96 LayoutRect AXMenuListOption::elementRect() const
104 return grandparent->elementRect();
AXSpinButton.h 50 virtual LayoutRect elementRect() const OVERRIDE;
70 virtual LayoutRect elementRect() const OVERRIDE;
AXSpinButton.cpp 48 LayoutRect AXSpinButton::elementRect() const
97 LayoutRect AXSpinButtonPart::elementRect() const
102 LayoutRect parentRect = parentObject()->elementRect();
AXInlineTextBox.h 55 virtual LayoutRect elementRect() const OVERRIDE;
AXMenuListOption.h 57 virtual LayoutRect elementRect() const OVERRIDE;
AXMenuListPopup.h 52 virtual LayoutRect elementRect() const OVERRIDE { return LayoutRect(); }
AXScrollbar.h 52 virtual LayoutRect elementRect() const OVERRIDE;
AXTableColumn.h 57 virtual LayoutRect elementRect() const OVERRIDE;
AXImageMapLink.h 66 virtual LayoutRect elementRect() const OVERRIDE;
AXListBoxOption.h 63 virtual LayoutRect elementRect() const OVERRIDE;
AXSlider.h 73 virtual LayoutRect elementRect() const OVERRIDE;
AXSlider.cpp 108 if (m_children[0]->elementRect().contains(point))
143 LayoutRect AXSliderThumb::elementRect() const
AXScrollView.cpp 183 if (m_horizontalScrollbar && m_horizontalScrollbar->elementRect().contains(point))
185 if (m_verticalScrollbar && m_verticalScrollbar->elementRect().contains(point))
191 LayoutRect AXScrollView::elementRect() const
AXListBoxOption.cpp 91 LayoutRect AXListBoxOption::elementRect() const
105 LayoutRect parentRect = listBoxRenderer->document().axObjectCache()->getOrCreate(listBoxRenderer)->elementRect();
AXTableColumn.cpp 61 LayoutRect AXTableColumn::elementRect() const
180 m_columnRect.unite(cell->elementRect());
AXListBox.cpp 98 LayoutRect parentRect = elementRect();
AXScrollView.h 69 virtual LayoutRect elementRect() const OVERRIDE;
AXScrollbar.cpp 53 LayoutRect AXScrollbar::elementRect() const
AXImageMapLink.cpp 126 LayoutRect AXImageMapLink::elementRect() const
AXInlineTextBox.cpp 71 LayoutRect AXInlineTextBox::elementRect() const
AXObject.cpp 337 LayoutRect bounds = elementRect();
452 LayoutRect rect = elementRect();
491 if (m_children[k]->isMockObject() && m_children[k]->elementRect().contains(point))
644 IntRect objectRect = pixelSnappedIntRect(elementRect());
730 IntRect objectRect = pixelSnappedIntRect(elementRect());
775 IntRect innerRect = inner->isAXScrollView() ? pixelSnappedIntRect(inner->parentObject()->elementRect()) : pixelSnappedIntRect(inner->elementRect());

Completed in 1609 milliseconds

1 2