OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isHorizontalFlow
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderFlexibleBox.cpp
314
// FIXME: If the child is a flexbox, then we need to check
isHorizontalFlow
.
315
return
isHorizontalFlow
() != child.isHorizontalWritingMode();
323
bool RenderFlexibleBox::
isHorizontalFlow
() const
346
flexLength =
isHorizontalFlow
() ? child.style()->width() : child.style()->height();
352
return
isHorizontalFlow
() ? child.height() : child.width();
377
return
isHorizontalFlow
() ? childIntrinsicHeight(child) : childIntrinsicWidth(child);
382
return
isHorizontalFlow
() ? child.width() : child.height();
387
return
isHorizontalFlow
() ? height() : width();
392
return
isHorizontalFlow
() ? width() : height();
397
return
isHorizontalFlow
() ? contentHeight() : contentWidth()
[
all
...]
RenderFlexibleBox.h
58
bool
isHorizontalFlow
() const;
RenderBox.cpp
[
all
...]
Completed in 56 milliseconds