OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_maxWindowWidth
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/web/
PopupListBox.h
160
void setBaseWidth(int width) { m_baseWidth = std::min(
m_maxWindowWidth
, width); }
173
void setMaxWidth(int maxWidth) {
m_maxWindowWidth
= maxWidth; }
296
int
m_maxWindowWidth
;
PopupListBox.cpp
84
,
m_maxWindowWidth
(std::numeric_limits<int>::max())
821
m_maxWindowWidth
= maxWidth;
905
if (windowWidth >
m_maxWindowWidth
) {
906
// windowWidth exceeds
m_maxWindowWidth
, so we have to clip.
907
windowWidth =
m_maxWindowWidth
;
Completed in 25 milliseconds