OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_itemHeight
(Results
1 - 7
of
7
) sorted by null
/external/webkit/Source/WebKit2/Shared/
PlatformPopupMenuData.h
52
int
m_itemHeight
;
PlatformPopupMenuData.cpp
40
,
m_itemHeight
(0)
53
encoder->encode(
m_itemHeight
);
81
if (!decoder->decode(data.
m_itemHeight
))
/external/webkit/Source/WebCore/platform/win/
PopupMenuWin.h
62
int itemHeight() const { return
m_itemHeight
; }
121
int
m_itemHeight
;
PopupMenuWin.cpp
97
,
m_itemHeight
(0)
308
m_itemHeight
= client()->menuStyle().font().fontMetrics().height() + optionSpacingMiddle;
309
int naturalHeight =
m_itemHeight
* itemCount;
312
popupHeight -= popupHeight %
m_itemHeight
;
406
return clientRect().height() /
m_itemHeight
;
411
return m_scrollOffset + point.y() /
m_itemHeight
;
491
damageRect.setY(
m_itemHeight
* (index - m_scrollOffset));
492
damageRect.setHeight(
m_itemHeight
);
600
// listRect is the damageRect translated into the coordinates of the entire menu list (which is itemCount *
m_itemHeight
pixels tall)
602
listRect.move(IntSize(0, m_scrollOffset *
m_itemHeight
));
[
all
...]
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
WebPopupMenuWin.cpp
53
data.
m_itemHeight
= m_popupClient->menuStyle().font().fontMetrics().height() + 1;
81
IntSize backingStoreSize(backingStoreWidth, (itemCount * data.
m_itemHeight
));
91
for (int y = 0; y < backingStoreSize.height(); y += data.
m_itemHeight
) {
92
int index = y / data.
m_itemHeight
;
99
IntRect itemRect(0, y, backingStoreWidth, data.
m_itemHeight
);
/external/webkit/Source/WebKit2/UIProcess/win/
WebPopupMenuProxyWin.cpp
170
,
m_itemHeight
(0)
372
m_itemHeight
= m_data.
m_itemHeight
;
374
int naturalHeight =
m_itemHeight
* itemCount;
378
popupHeight -= popupHeight %
m_itemHeight
;
447
damageRect.setY(
m_itemHeight
* (index - m_scrollOffset));
448
damageRect.setHeight(
m_itemHeight
);
497
::ScrollWindowEx(m_popup, 0, scrolledLines *
m_itemHeight
, &r, 0, 0, 0, flags);
839
translatedDamageRect.move(IntSize(0, m_scrollOffset *
m_itemHeight
));
842
IntRect selectedIndexRectInBackingStore(0, focusedIndex() *
m_itemHeight
, m_data.m_selectedBackingStore->size().width(), m_itemHeight)
[
all
...]
WebPopupMenuProxyWin.h
97
int itemHeight() const { return
m_itemHeight
; }
132
int
m_itemHeight
;
Completed in 52 milliseconds