OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:hasvirtuallogicalheight
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineBox.h
124
bool
hasVirtualLogicalHeight
() const { return m_bitfields.
hasVirtualLogicalHeight
(); }
200
float width() const { return isHorizontal() ? logicalWidth() :
hasVirtualLogicalHeight
() ? virtualLogicalHeight() : logicalHeight(); }
201
float height() const { return isHorizontal() ?
hasVirtualLogicalHeight
() ? virtualLogicalHeight() : logicalHeight() : logicalWidth(); }
340
ADD_BOOLEAN_BITFIELD(
hasVirtualLogicalHeight
,
HasVirtualLogicalHeight
);
InlineBox.cpp
121
if (
hasVirtualLogicalHeight
())
Completed in 37 milliseconds