OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:clientInsetLeft
(Results
1 - 10
of
10
) sorted by null
/external/webkit/Source/WebCore/platform/
PopupMenuClient.h
52
virtual int
clientInsetLeft
() const = 0;
/external/webkit/Source/WebCore/rendering/
RenderMenuList.h
92
virtual int
clientInsetLeft
() const;
RenderTextControlSingleLine.h
128
virtual int
clientInsetLeft
() const;
RenderMenuList.cpp
480
int RenderMenuList::
clientInsetLeft
() const
RenderTextControlSingleLine.cpp
[
all
...]
/external/webkit/Source/WebKit/chromium/src/
AutoFillPopupMenuClient.h
84
virtual int
clientInsetLeft
() const { return 0; }
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
WebPopupMenuWin.cpp
51
data.m_clientInsetLeft = m_popupClient->
clientInsetLeft
();
79
int backingStoreWidth = max(pageCoordinates.width() - m_popupClient->
clientInsetLeft
() - m_popupClient->clientInsetRight(), popupWidth);
/external/webkit/Source/WebCore/platform/win/
PopupMenuWin.cpp
337
popupWidth += max(0, client()->clientPaddingRight() - client()->clientInsetRight()) + max(0, client()->clientPaddingLeft() - client()->
clientInsetLeft
());
344
popupWidth = max(rScreenCoords.width() - client()->
clientInsetLeft
() - client()->clientInsetRight(), popupWidth);
347
int popupX = rScreenCoords.x() + client()->
clientInsetLeft
();
648
int textX = max(0, client()->clientPaddingLeft() - client()->
clientInsetLeft
());
/external/webkit/Source/WebKit/chromium/tests/
PopupMenuTest.cpp
82
virtual int
clientInsetLeft
() const { return 0; }
/external/webkit/Source/WebCore/platform/chromium/
PopupMenuChromium.cpp
938
textX = max(0, m_popupClient->clientPaddingLeft() - m_popupClient->
clientInsetLeft
());
[
all
...]
Completed in 1122 milliseconds