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

1 2

  /external/droiddriver/src/com/google/android/droiddriver/actions/
SwipeAction.java 51 Rect elementRect = element.getVisibleBounds();
53 int swipeAreaHeightAdjust = (int) (elementRect.height() * 0.1);
54 int swipeAreaWidthAdjust = (int) (elementRect.width() * 0.1);
63 startX = elementRect.centerX();
64 startY = elementRect.bottom - swipeAreaHeightAdjust;
65 endX = elementRect.centerX();
66 endY = elementRect.top + swipeAreaHeightAdjust;
69 startX = elementRect.centerX();
70 startY = elementRect.top + swipeAreaHeightAdjust;
71 endX = elementRect.centerX()
    [all...]
ClickAction.java 58 Rect elementRect = element.getVisibleBounds();
59 long downTime = Events.touchDown(injector, elementRect.centerX(), elementRect.centerY());
62 Events.touchUp(injector, downTime, elementRect.centerX(), elementRect.centerY());
74 Rect elementRect = element.getVisibleBounds();
75 long downTime = Events.touchDown(injector, elementRect.centerX(), elementRect.centerY());
79 Events.touchUp(injector, downTime, elementRect.centerX(), elementRect.centerY())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXTableHeaderContainer.cpp 50 LayoutRect AXTableHeaderContainer::elementRect() const
76 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;
AXScrollbar.cpp 53 LayoutRect AXScrollbar::elementRect() const
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 95 LayoutRect AXListBoxOption::elementRect() const
109 LayoutRect parentRect = listBoxRenderer->document().axObjectCache()->getOrCreate(listBoxRenderer)->elementRect();
  /external/chromium_org/third_party/WebKit/Source/core/speech/
SpeechInputClient.h 54 // Starts speech recognition and audio recording. elementRect is the position
56 virtual bool startRecognition(int requestId, const IntRect& elementRect, const AtomicString& language, const String& grammar, SecurityOrigin*) = 0;
SpeechInput.h 69 bool startRecognition(int listenerId, const IntRect& elementRect, const AtomicString& language, const String& grammar, SecurityOrigin*);
SpeechInput.cpp 100 bool SpeechInput::startRecognition(int listenerId, const IntRect& elementRect, const AtomicString& language, const String& grammar, SecurityOrigin* origin)
103 return m_client->startRecognition(listenerId, elementRect, language, grammar, origin);
  /external/chromium_org/third_party/WebKit/public/web/
WebSpeechInputController.h 47 // text are returned via the listener interface. elementRect is the position
49 virtual bool startRecognition(int requestId, const WebRect& elementRect, const WebString& language, const WebString& grammar, const WebSecurityOrigin& origin)
  /external/chromium_org/third_party/WebKit/Source/web/
SpeechInputClientImpl.h 61 bool startRecognition(int requestId, const WebCore::IntRect& elementRect, const AtomicString& language, const String& grammar, WebCore::SecurityOrigin*);
SpeechInputClientImpl.cpp 66 bool SpeechInputClientImpl::startRecognition(int requestId, const WebCore::IntRect& elementRect, const AtomicString& language, const String& grammar, WebCore::SecurityOrigin* origin)
69 return m_controller->startRecognition(requestId, elementRect, language, grammar, WebSecurityOrigin(origin));

Completed in 838 milliseconds

1 2