HomeSort by relevance Sort by last modified time
    Searched refs:currChild (Results 1 - 6 of 6) sorted by null

  /external/webkit/Source/WebCore/css/
CSSStyleApplyProperty.cpp 215 FillLayer* currChild = (selector->style()->*m_accessLayers)();
219 if (!currChild) {
221 currChild = new FillLayer(m_fillLayerType);
222 prevChild->setNext(currChild);
224 (currChild->*m_set)((currParent->*m_get)());
225 prevChild = currChild;
226 currChild = prevChild->next();
230 while (currChild) {
232 (currChild->*m_clear)();
233 currChild = currChild->next()
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderListItem.cpp 154 for (RenderObject* currChild = firstChild; currChild; currChild = currChild->nextSibling()) {
155 if (currChild == marker)
158 if (currChild->isInline() && (!currChild->isRenderInline() || curr->generatesLineBoxesForInlineChild(currChild)))
161 if (currChild->isFloating() || currChild->isPositioned()
    [all...]
RenderBlock.cpp 474 RenderBoxModelObject* currChild = this;
505 // *after* currChild and append them all to the clone.
507 blockCurr->moveChildrenTo(cloneBlock, currChild->nextSibling(), 0, afterContent);
510 currChild = curr;
517 // Now take all the children after currChild and remove them from the fromBlock
519 fromBlock->moveChildrenTo(toBlock, currChild->nextSibling(), 0);
    [all...]
InlineFlowBox.cpp 334 for (InlineBox* currChild = firstChild(); currChild; currChild = currChild->nextOnLine()) {
335 if (currChild->isInlineFlowBox()) {
336 InlineFlowBox* currFlow = static_cast<InlineFlowBox*>(currChild);
    [all...]
RenderInline.cpp 306 RenderBoxModelObject* currChild = this;
337 // *after* currChild and append them all to the clone.
338 o = currChild->nextSibling();
348 currChild = curr;
356 // Now take all the children after currChild and remove them from the fromBlock
358 o = currChild->nextSibling();
    [all...]
  /external/webkit/Source/WebCore/editing/
TextIterator.cpp 605 for (RenderObject *currChild = r->firstChild(); currChild; currChild->nextSibling()) {
606 if (currChild->isText()) {
607 RenderText* firstLetter = toRenderText(currChild);
    [all...]

Completed in 221 milliseconds