Home
last modified time | relevance | path

Searched refs:ClientRect (Results 1 – 25 of 40) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/dom/
DClientRect.h39 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&);
DClientRect.cpp32 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
DClientRectList.h38 class ClientRect; variable
47 ClientRect* item(unsigned index);
53 Vector<RefPtr<ClientRect> > m_list;
DClientRectList.cpp44 m_list.append(ClientRect::create(quads[i].enclosingBoundingBox())); in ClientRectList()
56 ClientRect* ClientRectList::item(unsigned index) in item()
DRange.h39 class ClientRect; variable
146 PassRefPtr<ClientRect> getBoundingClientRect() const;
DClientRectList.idl30 getter ClientRect item(unsigned long index);
DClientRect.idl28 ] interface ClientRect {
DRange.idl70 ClientRect getBoundingClientRect();
DElement.h45 class ClientRect; variable
193 PassRefPtr<ClientRect> getBoundingClientRect();
DElement.idl117 ClientRect getBoundingClientRect();
DRange.cpp1839 PassRefPtr<ClientRect> Range::getBoundingClientRect() const in getBoundingClientRect()
1841 return ClientRect::create(boundingRect()); in getBoundingClientRect()
DElement.cpp832 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/
DLayerRect.h47 …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;
DLayerRectList.h42 class ClientRect; variable
54 …void append(PassRefPtr<Node> layerRootNode, const String& layerName, PassRefPtr<ClientRect> layerR…
DInternals.h43 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&);
DLayerRectList.cpp61 …nd(PassRefPtr<Node> layerRootNode, const String& layerType, PassRefPtr<ClientRect> layerRelativeRe… in append()
DInternals.idl90 [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();
DInternals.cpp758 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 …]
DLayerRect.idl35 readonly attribute ClientRect layerRelativeRect;
/external/chromium_org/third_party/WebKit/Source/web/tests/
DTouchActionTest.cpp207 RefPtr<WebCore::ClientRect> r = rects->item(0); in runTestOnTree()
/external/chromium_org/third_party/WebKit/Source/core/
Dwebcore_dom.target.linux-x86.mk35 third_party/WebKit/Source/core/dom/ClientRect.cpp \
Dwebcore_dom.target.darwin-x86.mk35 third_party/WebKit/Source/core/dom/ClientRect.cpp \
Dwebcore_dom.target.linux-mips.mk35 third_party/WebKit/Source/core/dom/ClientRect.cpp \
Dwebcore_dom.target.darwin-mips.mk35 third_party/WebKit/Source/core/dom/ClientRect.cpp \
Dwebcore_dom.target.darwin-arm.mk35 third_party/WebKit/Source/core/dom/ClientRect.cpp \

12