OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:convertFromContainingWindow
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/
Widget.cpp
103
IntRect Widget::
convertFromContainingWindow
(const IntRect& windowRect) const
106
IntRect parentRect = parentWidget->
convertFromContainingWindow
(windowRect);
121
IntPoint Widget::
convertFromContainingWindow
(const IntPoint& windowPoint) const
124
IntPoint parentPoint = parentWidget->
convertFromContainingWindow
(windowPoint);
Widget.h
105
// that tries to convert the location of a rect using the point-based
convertFromContainingWindow
will end
106
// up with an inaccurate rect. Always make sure to use the rect-based
convertFromContainingWindow
method
109
IntRect
convertFromContainingWindow
(const IntRect&) const;
112
IntPoint
convertFromContainingWindow
(const IntPoint&) const;
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollbarThemeClient.h
64
virtual IntPoint
convertFromContainingWindow
(const IntPoint& windowPoint) = 0;
Scrollbar.cpp
352
m_pressedPos = orientation() == HorizontalScrollbar ?
convertFromContainingWindow
(evt.position()).x() :
convertFromContainingWindow
(evt.position()).y();
398
convertFromContainingWindow
(evt.position()).x() :
399
convertFromContainingWindow
(evt.position()).y(), theme()->shouldDragDocumentInsteadOfThumb(this, evt));
405
m_pressedPos = orientation() == HorizontalScrollbar ?
convertFromContainingWindow
(evt.position()).x() :
convertFromContainingWindow
(evt.position()).y();
465
int pressedPos = orientation() == HorizontalScrollbar ?
convertFromContainingWindow
(evt.position()).x() :
convertFromContainingWindow
(evt.position()).y();
494
IntRect resizerRect = view->
convertFromContainingWindow
(view->windowResizerRect());
Scrollbar.h
80
virtual IntPoint
convertFromContainingWindow
(const IntPoint& windowPoint) { return Widget::
convertFromContainingWindow
(windowPoint); }
ScrollView.cpp
603
IntPoint viewPoint =
convertFromContainingWindow
(windowPoint);
615
IntRect viewRect =
convertFromContainingWindow
(windowRect);
698
IntPoint viewPoint =
convertFromContainingWindow
(windowPoint);
[
all
...]
ScrollbarThemeWin.cpp
89
IntPoint mousePosition = scrollbar->
convertFromContainingWindow
(evt.position());
ScrollbarTheme.cpp
143
IntPoint testPosition = scrollbar->
convertFromContainingWindow
(position);
/external/chromium_org/third_party/WebKit/Source/platform/exported/
WebScrollbarThemeClientImpl.h
63
virtual IntPoint
convertFromContainingWindow
(const IntPoint&) OVERRIDE;
WebScrollbarThemeClientImpl.cpp
140
IntPoint WebScrollbarThemeClientImpl::
convertFromContainingWindow
(const IntPoint& windowPoint)
/external/chromium_org/third_party/WebKit/Source/web/
WebInputEventConversion.cpp
85
m_position = widget->
convertFromContainingWindow
(IntPoint((e.x - offset.width()) / scale, (e.y - offset.height()) / scale));
130
m_position = widget->
convertFromContainingWindow
(IntPoint((e.x - offset.width()) / scale, (e.y - offset.height()) / scale));
245
m_position = widget->
convertFromContainingWindow
(IntPoint((e.x - offset.width()) / scale, (e.y - offset.height()) / scale));
409
m_pos = widget->
convertFromContainingWindow
(IntPoint((point.position.x - offset.width()) / scale, (point.position.y - offset.height()) / scale));
Completed in 772 milliseconds