/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | ClientRect.h | 39 class ClientRect : public ScriptWrappable, public RefCounted<ClientRect> { 41 static PassRefPtr<ClientRect> create() { return adoptRef(new ClientRect); } in create() 42 …static PassRefPtr<ClientRect> create(const IntRect& rect) { return adoptRef(new ClientRect(rect));… in create() 43 …static PassRefPtr<ClientRect> create(const FloatRect& rect) { return adoptRef(new ClientRect(rect)… in create() 53 ClientRect(); 54 explicit ClientRect(const IntRect&); 55 explicit ClientRect(const FloatRect&);
|
D | ClientRect.cpp | 32 ClientRect::ClientRect() in ClientRect() function in WebCore::ClientRect 37 ClientRect::ClientRect(const IntRect& rect) in ClientRect() function in WebCore::ClientRect 43 ClientRect::ClientRect(const FloatRect& rect) in ClientRect() function in WebCore::ClientRect
|
D | ClientRectList.h | 38 class ClientRect; variable 47 ClientRect* item(unsigned index); 53 Vector<RefPtr<ClientRect> > m_list;
|
D | ClientRectList.cpp | 44 m_list.append(ClientRect::create(quads[i].enclosingBoundingBox())); in ClientRectList() 56 ClientRect* ClientRectList::item(unsigned index) in item()
|
D | Range.h | 39 class ClientRect; variable 146 PassRefPtr<ClientRect> getBoundingClientRect() const;
|
D | ClientRectList.idl | 30 getter ClientRect item(unsigned long index);
|
D | ClientRect.idl | 28 ] interface ClientRect {
|
D | Range.idl | 70 ClientRect getBoundingClientRect();
|
D | Element.h | 45 class ClientRect; variable 193 PassRefPtr<ClientRect> getBoundingClientRect();
|
D | Element.idl | 117 ClientRect getBoundingClientRect();
|
D | Range.cpp | 1839 PassRefPtr<ClientRect> Range::getBoundingClientRect() const in getBoundingClientRect() 1841 return ClientRect::create(boundingRect()); in getBoundingClientRect()
|
D | Element.cpp | 832 PassRefPtr<ClientRect> Element::getBoundingClientRect() in getBoundingClientRect() 850 return ClientRect::create(); in getBoundingClientRect() 858 return ClientRect::create(result); in getBoundingClientRect()
|
/external/chromium_org/third_party/WebKit/Source/core/testing/ |
D | LayerRect.h | 47 …fPtr<LayerRect> create(PassRefPtr<Node> node, const String& layerType, PassRefPtr<ClientRect> rect) in create() 54 ClientRect* layerRelativeRect() const { return m_rect.get(); } in layerRelativeRect() 57 LayerRect(PassRefPtr<Node> node, const String& layerName, PassRefPtr<ClientRect> rect) in LayerRect() 66 RefPtr<ClientRect> m_rect;
|
D | LayerRectList.h | 42 class ClientRect; variable 54 …void append(PassRefPtr<Node> layerRootNode, const String& layerName, PassRefPtr<ClientRect> layerR…
|
D | Internals.h | 43 class ClientRect; variable 138 PassRefPtr<ClientRect> unscaledViewportRect(ExceptionState&); 140 PassRefPtr<ClientRect> absoluteCaretBounds(ExceptionState&); 142 PassRefPtr<ClientRect> boundingBox(Element*, ExceptionState&); 177 …PassRefPtr<ClientRect> bestZoomableAreaForTouchPoint(long x, long y, long width, long height, Docu… 299 PassRefPtr<ClientRect> selectionBounds(ExceptionState&);
|
D | LayerRectList.cpp | 61 …nd(PassRefPtr<Node> layerRootNode, const String& layerType, PassRefPtr<ClientRect> layerRelativeRe… in append()
|
D | Internals.idl | 90 [RaisesException] ClientRect unscaledViewportRect(); 92 [RaisesException] ClientRect absoluteCaretBounds(); 94 [RaisesException] ClientRect boundingBox(Element element); 134 …[RaisesException] ClientRect bestZoomableAreaForTouchPoint(long x, long y, long width, long height… 268 [RaisesException] ClientRect selectionBounds();
|
D | Internals.cpp | 758 PassRefPtr<ClientRect> Internals::unscaledViewportRect(ExceptionState& exceptionState) in unscaledViewportRect() 763 return ClientRect::create(); in unscaledViewportRect() 766 return ClientRect::create(document->view()->visibleContentRect()); in unscaledViewportRect() 769 PassRefPtr<ClientRect> Internals::absoluteCaretBounds(ExceptionState& exceptionState) in absoluteCaretBounds() 774 return ClientRect::create(); in absoluteCaretBounds() 777 return ClientRect::create(document->frame()->selection().absoluteCaretBounds()); in absoluteCaretBounds() 780 PassRefPtr<ClientRect> Internals::boundingBox(Element* element, ExceptionState& exceptionState) in boundingBox() 784 return ClientRect::create(); in boundingBox() 790 return ClientRect::create(); in boundingBox() 791 return ClientRect::create(renderer->absoluteBoundingBoxRectIgnoringTransforms()); in boundingBox() [all …]
|
D | LayerRect.idl | 35 readonly attribute ClientRect layerRelativeRect;
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
D | TouchActionTest.cpp | 207 RefPtr<WebCore::ClientRect> r = rects->item(0); in runTestOnTree()
|
/external/chromium_org/third_party/WebKit/Source/core/ |
D | webcore_dom.target.linux-x86.mk | 35 third_party/WebKit/Source/core/dom/ClientRect.cpp \
|
D | webcore_dom.target.darwin-x86.mk | 35 third_party/WebKit/Source/core/dom/ClientRect.cpp \
|
D | webcore_dom.target.linux-mips.mk | 35 third_party/WebKit/Source/core/dom/ClientRect.cpp \
|
D | webcore_dom.target.darwin-mips.mk | 35 third_party/WebKit/Source/core/dom/ClientRect.cpp \
|
D | webcore_dom.target.darwin-arm.mk | 35 third_party/WebKit/Source/core/dom/ClientRect.cpp \
|