OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:isreplaced
(Results
1 - 25
of
26
) sorted by null
1
2
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderReplica.cpp
44
// the if (!isInline() ||
isReplaced
()) check before setHasTransform().
RootInlineBox.cpp
738
if (box->renderer()->
isReplaced
()) {
[
all
...]
InlineBox.cpp
190
if (m_renderer->
isReplaced
())
293
if (!m_renderer || !m_renderer->
isReplaced
())
RenderObject.h
519
bool
isReplaced
() const { return m_bitfields.
isReplaced
(); } // a "replaced" element (see CSS)
653
void setReplaced(bool
isReplaced
) { m_bitfields.setIsReplaced(
isReplaced
); }
[
all
...]
RenderDeprecatedFlexibleBox.cpp
378
if (relayoutChildren || (child->
isReplaced
() && (child->style()->width().isPercent() || child->style()->height().isPercent())))
677
if (!haveLineClamp && (relayoutChildren || (child->
isReplaced
() && (child->style()->width().isPercent() || child->style()->height().isPercent()))))
[
all
...]
RenderBlock.cpp
265
while (cb && (cb->style()->position() == StaticPosition || (cb->isInline() && !cb->
isReplaced
())) && !cb->isRenderView()) {
266
if (cb->style()->position() == RelativePosition && cb->isInline() && !cb->
isReplaced
()) {
[
all
...]
InlineFlowBox.cpp
124
if (child->renderer()->
isReplaced
())
162
} else if (child->renderer()->
isReplaced
()) {
[
all
...]
RenderBoxModelObject.h
183
bool canHaveBoxInfoInRegion() const { return !isFloating() && !
isReplaced
() && !isInline() && !hasColumns() && !isTableCell() && isRenderBlock() && !isRenderSVGBlock(); }
RenderLineBoxList.cpp
304
if (curr->
isReplaced
()) {
RenderBox.cpp
[
all
...]
InlineIterator.h
176
return object->isText() || object->isFloating() || object->isOutOfFlowPositioned() || object->
isReplaced
();
RenderBlock.h
475
virtual bool isInlineBlockOrInlineTable() const OVERRIDE FINAL { return isInline() &&
isReplaced
(); }
[
all
...]
RenderBox.h
[
all
...]
RenderObject.cpp
816
if (o->style()->position() != StaticPosition && (!o->isInline() || o->
isReplaced
()))
822
if (o->style()->hasInFlowPosition() && o->isInline() && !o->
isReplaced
()) {
833
while (o && ((o->isInline() && !o->
isReplaced
()) || !o->isRenderBlock()))
[
all
...]
RenderBlockLineLayout.cpp
674
if (firstRun && firstRun->m_object->
isReplaced
()) {
[
all
...]
CompositedLayerMapping.cpp
[
all
...]
RenderInline.cpp
271
if (renderer->isInline() && !renderer->
isReplaced
())
[
all
...]
RenderTableSection.cpp
[
all
...]
RenderBlockFlow.cpp
641
// Inline blocks are covered by the
isReplaced
() check in the avoidFloats method.
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
ContainerNode.cpp
671
if (!o->isInline() || o->
isReplaced
()) {
696
if (!o->isInline() || o->
isReplaced
()) {
703
} else if ((o->isText() && !o->isBR()) || o->
isReplaced
()) {
731
if (!o->isInline() || o->
isReplaced
()) {
754
if (o->isText() || o->
isReplaced
()) {
Position.cpp
553
return node->renderer()->
isReplaced
() && canHaveChildrenForEditing(node) && toRenderBox(node->renderer())->height() != 0 && !node->firstChild();
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
VisiblePosition.cpp
142
if ((renderer->
isReplaced
() || renderer->isBR()) && offset == box->caretRightmostOffset())
307
if ((renderer->
isReplaced
() || renderer->isBR()) && offset == box->caretLeftmostOffset())
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
BreakingContextInlineHeaders.h
401
m_currWS = m_current.object()->
isReplaced
() ? m_current.object()->parent()->style()->whiteSpace() : m_currentStyle->whiteSpace();
402
m_lastWS = m_lastObject->
isReplaced
() ? m_lastObject->parent()->style()->whiteSpace() : m_lastObject->style()->whiteSpace();
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXRenderObject.cpp
161
if (renderer->isRenderInline() && !renderer->
isReplaced
())
448
ASSERT(!isWidget || (renderer->
isReplaced
() && !isImage()));
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.cpp
[
all
...]
Completed in 168 milliseconds
1
2