HomeSort by relevance Sort by last modified time
    Searched refs:isReplaced (Results 1 - 25 of 32) sorted by null

1 2

  /external/webkit/Source/WebKit/mac/DOM/
WebDOMOperationsPrivate.h 49 - (NSRect)_renderRect:(bool *)isReplaced;
WebDOMOperations.mm 102 - (NSRect)_renderRect:(bool *)isReplaced
104 return NSRect(core(self)->renderRect(isReplaced));
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundleNodeHandle.cpp 54 WKRect WKBundleNodeHandleGetRenderRect(WKBundleNodeHandleRef nodeHandleRef, bool* isReplaced)
56 return toAPI(toImpl(nodeHandleRef)->renderRect(isReplaced));
WKBundleNodeHandlePrivate.h 45 WK_EXPORT WKRect WKBundleNodeHandleGetRenderRect(WKBundleNodeHandleRef nodeHandle, bool* isReplaced);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/DOM/
InjectedBundleNodeHandle.cpp 115 IntRect InjectedBundleNodeHandle::renderRect(bool* isReplaced) const
117 return m_node.get()->renderRect(isReplaced);
  /external/webkit/Source/WebCore/rendering/
InlineIterator.h 145 if (!oldEndOfInline && !current->isFloating() && !current->isReplaced() && !current->isPositioned() && !current->isText()) {
178 if (next->isText() || next->isFloating() || next->isReplaced() || next->isPositioned()
209 if (o && !o->isText() && !o->isReplaced() && !o->isFloating() && !o->isPositioned())
InlineBox.cpp 158 if (m_renderer->isReplaced())
272 if (!m_renderer || !m_renderer->isReplaced())
LayoutState.cpp 97 if (renderer->isReplaced() || renderer->scrollsOverflow())
RootInlineBox.cpp 570 if (box->renderer()->isReplaced()) {
715 if (!renderer->isReplaced() || renderer->isInlineBlockOrInlineTable())
732 if (box->renderer()->isReplaced() || (box->renderer()->isText() && !box->isText()))
741 if (box->renderer()->isReplaced() || (box->renderer()->isText() && !box->isText()))
    [all...]
RenderFlexibleBox.cpp 354 if (relayoutChildren || (child->isReplaced() && (child->style()->width().isPercent() || child->style()->height().isPercent())))
637 if (!haveLineClamp && (relayoutChildren || (child->isReplaced() && (child->style()->width().isPercent() || child->style()->height().isPercent()))))
    [all...]
RenderLineBoxList.cpp 341 if (curr->isReplaced()) {
RenderBox.cpp     [all...]
RenderBlock.cpp 218 while (cb && (cb->style()->position() == StaticPosition || (cb->isInline() && !cb->isReplaced())) && !cb->isRenderView()) {
219 if (cb->style()->position() == RelativePosition && cb->isInline() && !cb->isReplaced()) {
    [all...]
RenderBlock.h 334 virtual bool isBlockFlow() const { return (!isInline() || isReplaced()) && !isTable(); }
335 virtual bool isInlineBlockOrInlineTable() const { return isInline() && isReplaced(); }
    [all...]
RenderBlockLineLayout.cpp     [all...]
InlineFlowBox.cpp 112 if (child->renderer()->isReplaced())
150 } else if (child->renderer()->isReplaced()) {
    [all...]
RenderBox.h 426 virtual bool shouldComputeSizeAsReplaced() const { return isReplaced() && !isInlineBlockOrInlineTable(); }
RenderObject.cpp 629 while (o && (o->style()->position() == StaticPosition || (o->isInline() && !o->isReplaced())) && !o->isRenderView() && !(o->hasTransform() && o->isRenderBlock())) {
635 if (o->style()->position() == RelativePosition && o->isInline() && !o->isReplaced())
645 while (o && ((o->isInline() && !o->isReplaced()) || o->isTableRow() || o->isTableSection()
    [all...]
RenderTableSection.cpp 623 if (!o->isText() && o->style()->logicalHeight().isPercent() && (flexAllChildren || o->isReplaced() || (o->isBox() && toRenderBox(o)->scrollsOverflow()))) {
636 if (!box->isReplaced() && !box->scrollsOverflow() && !flexAllChildren)
    [all...]
  /external/webkit/Source/WebCore/dom/
ContainerNode.cpp 827 if (!o->isInline() || o->isReplaced()) {
852 if (!o->isInline() || o->isReplaced()) {
859 } else if ((o->isText() && !o->isBR()) || o->isReplaced()) {
889 if (!o->isInline() || o->isReplaced()) {
913 if (o->isText() || o->isReplaced()) {
    [all...]
Node.cpp 820 IntRect Node::renderRect(bool* isReplaced)
826 if (renderer->isRenderBlock() || renderer->isInlineBlockOrInlineTable() || renderer->isReplaced()) {
827 *isReplaced = renderer->isReplaced();
    [all...]
Node.h 343 IntRect renderRect(bool* isReplaced);
Position.cpp 487 return node->renderer()->isReplaced() && canHaveChildrenForEditing(node) && toRenderBox(node->renderer())->height() != 0 && !node->firstChild();
    [all...]
  /external/webkit/Source/WebCore/editing/
VisiblePosition.cpp 124 if ((renderer->isReplaced() || renderer->isBR()) && offset == box->caretRightmostOffset())
275 if ((renderer->isReplaced() || renderer->isBR()) && offset == box->caretLeftmostOffset())
  /external/webkit/Source/WebCore/accessibility/
AccessibilityObject.cpp 392 if (!replacedNode || !replacedNode->renderer() || !replacedNode->renderer()->isReplaced() || replacedNode->isTextNode())
    [all...]

Completed in 592 milliseconds

1 2