Home
last modified time | relevance | path

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

12345

/external/chromium_org/third_party/WebKit/Source/core/dom/
DClientRect.h40 class ClientRect FINAL : public RefCountedWillBeGarbageCollected<ClientRect>, public ScriptWrappabl…
43 static PassRefPtrWillBeRawPtr<ClientRect> create() in create()
45 return adoptRefWillBeNoop(new ClientRect); in create()
47 static PassRefPtrWillBeRawPtr<ClientRect> create(const IntRect& rect) in create()
49 return adoptRefWillBeNoop(new ClientRect(rect)); in create()
51 static PassRefPtrWillBeRawPtr<ClientRect> create(const FloatRect& rect) in create()
53 return adoptRefWillBeNoop(new ClientRect(rect)); in create()
66 ClientRect();
67 explicit ClientRect(const IntRect&);
68 explicit ClientRect(const FloatRect&);
DClientRect.cpp32 ClientRect::ClientRect() in ClientRect() function in blink::ClientRect
36 ClientRect::ClientRect(const IntRect& rect) in ClientRect() function in blink::ClientRect
41 ClientRect::ClientRect(const FloatRect& rect) in ClientRect() function in blink::ClientRect
DClientRectList.h39 class ClientRect; variable
54 ClientRect* item(unsigned index);
62 WillBeHeapVector<RefPtrWillBeMember<ClientRect> > m_list;
DClientRectList.cpp44 m_list.append(ClientRect::create(quads[i].enclosingBoundingBox())); in ClientRectList()
52 ClientRect* ClientRectList::item(unsigned index) in item()
DRange.h39 class ClientRect; variable
146 PassRefPtrWillBeRawPtr<ClientRect> getBoundingClientRect() const;
DClientRectList.idl31 getter ClientRect item(unsigned long index);
DClientRect.idl29 ] interface ClientRect {
DRange.idl72 ClientRect getBoundingClientRect();
DElement.idl115 ClientRect getBoundingClientRect();
DElement.h46 class ClientRect; variable
193 PassRefPtrWillBeRawPtr<ClientRect> getBoundingClientRect();
DRange.cpp1714 PassRefPtrWillBeRawPtr<ClientRect> Range::getBoundingClientRect() const in getBoundingClientRect()
1716 return ClientRect::create(boundingRect()); in getBoundingClientRect()
DElement.cpp818 PassRefPtrWillBeRawPtr<ClientRect> Element::getBoundingClientRect() in getBoundingClientRect()
836 return ClientRect::create(); in getBoundingClientRect()
844 return ClientRect::create(result); in getBoundingClientRect()
/external/chromium_org/third_party/WebKit/Source/core/testing/
DLayerRect.h49 …const String& layerType, int nodeOffsetX, int nodeOffsetY, PassRefPtrWillBeRawPtr<ClientRect> rect) in create()
58 ClientRect* layerRelativeRect() const { return m_rect.get(); } in layerRelativeRect()
67 …const String& layerName, int nodeOffsetX, int nodeOffsetY, PassRefPtrWillBeRawPtr<ClientRect> rect) in LayerRect()
78 RefPtrWillBeMember<ClientRect> m_rect;
DLayerRectList.h42 class ClientRect; variable
57 … layerName, int layerOffsetX, int layerOffsetY, PassRefPtrWillBeRawPtr<ClientRect> layerRelativeRe…
DInternals.h46 class ClientRect; variable
141 PassRefPtrWillBeRawPtr<ClientRect> absoluteCaretBounds(ExceptionState&);
143 PassRefPtrWillBeRawPtr<ClientRect> boundingBox(Element*);
173 …PassRefPtrWillBeRawPtr<ClientRect> bestZoomableAreaForTouchPoint(long x, long y, long width, long …
288 PassRefPtrWillBeRawPtr<ClientRect> selectionBounds(ExceptionState&);
DLayerRectList.cpp57 … layerType, int layerOffsetX, int layerOffsetY, PassRefPtrWillBeRawPtr<ClientRect> layerRelativeRe… in append()
DInternals.cpp685 PassRefPtrWillBeRawPtr<ClientRect> Internals::absoluteCaretBounds(ExceptionState& exceptionState) in absoluteCaretBounds()
690 return ClientRect::create(); in absoluteCaretBounds()
693 return ClientRect::create(document->frame()->selection().absoluteCaretBounds()); in absoluteCaretBounds()
696 PassRefPtrWillBeRawPtr<ClientRect> Internals::boundingBox(Element* element) in boundingBox()
703 return ClientRect::create(); in boundingBox()
704 return ClientRect::create(renderer->absoluteBoundingBoxRectIgnoringTransforms()); in boundingBox()
1080 PassRefPtrWillBeRawPtr<ClientRect> Internals::bestZoomableAreaForTouchPoint(long x, long y, long wi… in bestZoomableAreaForTouchPoint()
1097 return ClientRect::create(zoomableArea); in bestZoomableAreaForTouchPoint()
1292 …ts->append(node, layerType, layerOffset.width(), layerOffset.height(), ClientRect::create(layerRec… in accumulateLayerRectList()
1980 PassRefPtrWillBeRawPtr<ClientRect> Internals::selectionBounds(ExceptionState& exceptionState) in selectionBounds()
[all …]
DInternals.idl87 [RaisesException] ClientRect absoluteCaretBounds();
89 [TypeChecking=Interface] ClientRect boundingBox(Element element);
124 …[RaisesException, TypeChecking=Interface] ClientRect bestZoomableAreaForTouchPoint(long x, long y,…
246 [RaisesException] ClientRect selectionBounds();
DLayerRect.idl44 readonly attribute ClientRect layerRelativeRect;
/external/chromium_org/remoting/webapp/js_proto/
Dchrome_proto.js391 function ClientRect() { class
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
DVTTRegion.cpp376 RefPtrWillBeRawPtr<ClientRect> clientRect = child->getBoundingClientRect(); in displayLastVTTCueBox()
/external/chromium_org/third_party/WebKit/Source/web/tests/
DTouchActionTest.cpp226 RefPtrWillBePersistent<ClientRect> r = rects->item(0); in runTestOnTree()
/external/chromium_org/third_party/WebKit/Source/bindings/core/
Dcore_global_constructors_idls_idl_files_list.tmp49 ../../core/dom/ClientRect.idl
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/
Dcore_idl_files_list.tmp55 ../../../core/dom/ClientRect.idl
/external/chromium_org/third_party/WebKit/Source/core/
Dwebcore_dom.target.darwin-x86.mk37 third_party/WebKit/Source/core/dom/ClientRect.cpp \

12345