Searched refs:horizontalOverflow (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/events/
H A DOverflowEvent.h37 bool horizontalOverflow; member in struct:blink::OverflowEventInit
54 static PassRefPtrWillBeRawPtr<OverflowEvent> create(bool horizontalOverflowChanged, bool horizontalOverflow, bool verticalOverflowChanged, bool verticalOverflow) argument
56 return adoptRefWillBeNoop(new OverflowEvent(horizontalOverflowChanged, horizontalOverflow, verticalOverflowChanged, verticalOverflow));
64 bool horizontalOverflow() const { return m_horizontalOverflow; } function in class:blink::FINAL
73 OverflowEvent(bool horizontalOverflowChanged, bool horizontalOverflow, bool verticalOverflowChanged, bool verticalOverflow);
H A DOverflowEvent.cpp33 , horizontalOverflow(false)
46 OverflowEvent::OverflowEvent(bool horizontalOverflowChanged, bool horizontalOverflow, bool verticalOverflowChanged, bool verticalOverflow) argument
48 , m_horizontalOverflow(horizontalOverflow)
64 , m_horizontalOverflow(initializer.horizontalOverflow)
H A DOverflowEvent.idl34 [InitializedByEventConstructor] readonly attribute boolean horizontalOverflow;
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DFrameView.h370 void updateOverflowStatus(bool horizontalOverflow, bool verticalOverflow);
H A DFrameView.cpp2099 void FrameView::updateOverflowStatus(bool horizontalOverflow, bool verticalOverflow) argument
2105 m_horizontalOverflow = horizontalOverflow;
2111 bool horizontalOverflowChanged = (m_horizontalOverflow != horizontalOverflow);
2115 m_horizontalOverflow = horizontalOverflow;
2118 RefPtrWillBeRawPtr<OverflowEvent> event = OverflowEvent::create(horizontalOverflowChanged, horizontalOverflow, verticalOverflowChanged, verticalOverflow);

Completed in 885 milliseconds