Searched refs:horizontalOverflow (Results 1 – 5 of 5) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/events/ |
D | OverflowEvent.h | 37 bool horizontalOverflow; member 54 …eRawPtr<OverflowEvent> create(bool horizontalOverflowChanged, bool horizontalOverflow, bool vertic… in create() argument 56 …return adoptRefWillBeNoop(new OverflowEvent(horizontalOverflowChanged, horizontalOverflow, vertica… in create() 64 bool horizontalOverflow() const { return m_horizontalOverflow; } in horizontalOverflow() function 73 …OverflowEvent(bool horizontalOverflowChanged, bool horizontalOverflow, bool verticalOverflowChange…
|
D | OverflowEvent.cpp | 33 , horizontalOverflow(false) in OverflowEventInit() 46 OverflowEvent::OverflowEvent(bool horizontalOverflowChanged, bool horizontalOverflow, bool vertical… in OverflowEvent() argument 48 , m_horizontalOverflow(horizontalOverflow) in OverflowEvent() 64 , m_horizontalOverflow(initializer.horizontalOverflow) in OverflowEvent()
|
D | OverflowEvent.idl | 34 [InitializedByEventConstructor] readonly attribute boolean horizontalOverflow;
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
D | FrameView.cpp | 2099 void FrameView::updateOverflowStatus(bool horizontalOverflow, bool verticalOverflow) in updateOverflowStatus() argument 2105 m_horizontalOverflow = horizontalOverflow; in updateOverflowStatus() 2111 bool horizontalOverflowChanged = (m_horizontalOverflow != horizontalOverflow); in updateOverflowStatus() 2115 m_horizontalOverflow = horizontalOverflow; in updateOverflowStatus() 2118 …lowEvent> event = OverflowEvent::create(horizontalOverflowChanged, horizontalOverflow, verticalOve… in updateOverflowStatus()
|
D | FrameView.h | 370 void updateOverflowStatus(bool horizontalOverflow, bool verticalOverflow);
|