OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rtlOffset
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/web/tests/
PopupContainerTest.cpp
81
int
rtlOffset
= targetControlWidth - initialRect.width();
83
return PopupContainer::layoutAndCalculateWidgetRectInternal(initialRect, targetControlHeight, windowRect, screenRect, !isRTL,
rtlOffset
, verticalOffset, transformOffset, content, needToResizeView);
90
int
rtlOffset
= (targetControlWidth - initialRect.width()) * (isRTL ? 1 : -1);
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)
109
inverseWidgetRectInScreen.setX(inverseWidgetRectInScreen.x() + (isRTL ? -
rtlOffset
:
rtlOffset
));
174
int
rtlOffset
= m_controlPosition.p2().x() - m_controlPosition.p1().x() - (m_listBox->width() + borderSize * 2);
175
int rightOffset = isRTL ?
rtlOffset
: 0;
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);
Completed in 44 milliseconds