HomeSort by relevance Sort by last modified time
    Searched defs:currChild (Results 1 - 3 of 3) 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/
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...]
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...]

Completed in 4751 milliseconds