OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:InlineFlowBox
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineFlowBox.h
41
class
InlineFlowBox
: public InlineBox {
43
InlineFlowBox
(RenderObject* obj)
69
virtual ~
InlineFlowBox
();
75
InlineFlowBox
* prevLineBox() const { return m_prevLineBox; }
76
InlineFlowBox
* nextLineBox() const { return m_nextLineBox; }
77
void setNextLineBox(
InlineFlowBox
* n) { m_nextLineBox = n; }
78
void setPreviousLineBox(
InlineFlowBox
* p) { m_prevLineBox = p; }
317
InlineFlowBox
* m_prevLineBox; // The previous box that also uses our RenderObject
318
InlineFlowBox
* m_nextLineBox; // The next box that also uses our RenderObject
320
// Maximum logicalTop among all children of an
InlineFlowBox
. Used t
[
all
...]
InlineFlowBox.cpp
21
#include "core/rendering/
InlineFlowBox
.h"
50
COMPILE_ASSERT(sizeof(
InlineFlowBox
) == sizeof(SameSizeAsInlineFlowBox), InlineFlowBox_should_stay_small);
54
InlineFlowBox
::~
InlineFlowBox
()
63
LayoutUnit
InlineFlowBox
::getFlowSpacingLogicalWidth()
73
IntRect
InlineFlowBox
::roundedFrameRect() const
85
static void setHasTextDescendantsOnAncestors(
InlineFlowBox
* box)
93
void
InlineFlowBox
::addToLine(InlineBox* child)
142
InlineFlowBox
* childFlowBox = toInlineFlowBox(child);
178
void
InlineFlowBox
::removeChild(InlineBox* child
[
all
...]
Completed in 212 milliseconds