OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:targetcontrolheight
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/web/tests/
PopupContainerTest.cpp
78
const int
targetControlHeight
= 20;
83
return PopupContainer::layoutAndCalculateWidgetRectInternal(initialRect,
targetControlHeight
, windowRect, screenRect, !isRTL, rtlOffset, verticalOffset, transformOffset, content, needToResizeView);
88
const int
targetControlHeight
= 20;
92
return PopupContainer::layoutAndCalculateWidgetRectInternal(initialRect,
targetControlHeight
, windowRect, screenRect, !isRTL, rtlOffset, 0, IntSize(), content, needToResizeView);
/external/chromium_org/third_party/WebKit/Source/web/
PopupContainer.cpp
102
IntRect PopupContainer::layoutAndCalculateWidgetRectInternal(IntRect widgetRectInScreen, int
targetControlHeight
, const FloatRect& windowRect, const FloatRect& screen, bool isRTL, const int rtlOffset, const int verticalOffset, const IntSize& transformOffset, PopupContent* listBox, bool& needToResizeView)
132
if (widgetRectInScreen.y() - widgetRectInScreen.height() -
targetControlHeight
- transformOffset.height() > 0) {
134
widgetRectInScreen.move(-transformOffset.width(), -(widgetRectInScreen.height() +
targetControlHeight
+ transformOffset.height()));
138
int spaceAbove = widgetRectInScreen.y() -
targetControlHeight
+ transformOffset.height();
149
widgetRectInScreen.move(-transformOffset.width(), -(widgetRectInScreen.height() +
targetControlHeight
+ transformOffset.height()));
155
IntRect PopupContainer::layoutAndCalculateWidgetRect(int
targetControlHeight
, const IntSize& transformOffset, const IntPoint& popupInitialCoordinate)
202
widgetRectInScreen = layoutAndCalculateWidgetRectInternal(widgetRectInScreen,
targetControlHeight
, windowRect, screen, isRTL, rtlOffset, verticalOffset, transformOffset, m_listBox.get(), needToResizeView);
PopupContainer.h
115
static IntRect layoutAndCalculateWidgetRectInternal(IntRect widgetRectInScreen, int
targetControlHeight
, const FloatRect& windowRect, const FloatRect& screen, bool isRTL, const int rtlOffset, const int verticalOffset, const IntSize& transformOffset, PopupContent*, bool& needToResizeView);
127
IntRect layoutAndCalculateWidgetRect(int
targetControlHeight
, const IntSize& transformOffset, const IntPoint& popupInitialCoordinate);
Completed in 99 milliseconds