Home
last modified time | relevance | path

Searched refs:newBox (Results 1 – 5 of 5) sorted by relevance

/external/clang/test/Analysis/inlining/
Dfalse-positive-suppression.cpp58 int *&newBox = getNewBox(); in getValue() local
59 newBox = 0; in getValue()
60 return newBox; in getValue()
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/media/
Daudio_player.js274 var newBox = this.trackStackItems_[newTrack].getBox();
275 newBox.classList.add('selected'); // Put on top immediately.
276 newBox.classList.add('visible'); // Start fading in.
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderBlock.cpp428 …RenderBlock* newBox = newChildHasColumnSpan ? createAnonymousColumnSpanBlock() : createAnonymousCo… in addChildToAnonymousColumnBlocks() local
429 children()->appendChildNode(this, newBox); in addChildToAnonymousColumnBlocks()
430 newBox->addChildIgnoringAnonymousColumnBlocks(newChild, 0); in addChildToAnonymousColumnBlocks()
451 …RenderBlock* newBox = newChildHasColumnSpan ? createAnonymousColumnSpanBlock() : createAnonymousCo… in addChildToAnonymousColumnBlocks() local
452 children()->insertChildNode(this, newBox, newBeforeChild); in addChildToAnonymousColumnBlocks()
453 newBox->addChildIgnoringAnonymousColumnBlocks(newChild, 0); in addChildToAnonymousColumnBlocks()
759 RenderBlockFlow* newBox = createAnonymousColumnSpanBlock(); in addChildIgnoringAnonymousColumnBlocks() local
769 setContinuation(newBox); in addChildIgnoringAnonymousColumnBlocks()
771 splitFlow(beforeChild, newBox, newChild, oldContinuation); in addChildIgnoringAnonymousColumnBlocks()
778 makeChildrenAnonymousColumnBlocks(beforeChild, newBox, newChild); in addChildIgnoringAnonymousColumnBlocks()
[all …]
DRenderInline.cpp319 RenderBlockFlow* newBox = RenderBlockFlow::createAnonymous(&document()); in addChildIgnoringContinuation() local
320 newBox->setStyle(newStyle.release()); in addChildIgnoringContinuation()
322 setContinuation(newBox); in addChildIgnoringContinuation()
324 splitFlow(beforeChild, newBox, newChild, oldContinuation); in addChildIgnoringContinuation()
1205 RenderBlock* newBox = containingBlock()->createAnonymousBlock(); in childBecameNonInline() local
1207 setContinuation(newBox); in childBecameNonInline()
1210 splitFlow(beforeChild, newBox, child, oldContinuation); in childBecameNonInline()
DRenderBlockLineLayout.cpp202 InlineBox* newBox = createInlineBoxForRenderer(obj, obj == this); in createLineBoxes() local
203 ASSERT_WITH_SECURITY_IMPLICATION(newBox->isInlineFlowBox()); in createLineBoxes()
204 parentBox = toInlineFlowBox(newBox); in createLineBoxes()