HomeSort by relevance Sort by last modified time
    Searched defs:currChild (Results 1 - 5 of 5) 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/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPNormalizer.java 256 XMPNode currChild = (XMPNode) it.next();
257 if (currChild.getOptions().isCompositeProperty())
262 else if (!currChild.getOptions().getHasLanguage())
264 String childValue = currChild.getValue();
274 currChild.addQualifier(repairLang);
ParseRDF.java 285 Node currChild = xmlParent.getChildNodes().item(i);
286 if (isWhitespaceNode(currChild))
290 else if (currChild.getNodeType() != Node.ELEMENT_NODE)
296 rdf_PropertyElement(xmp, xmpParent, currChild, isTopLevel);
452 Node currChild = xmlNode.getChildNodes().item(i);
453 if (currChild.getNodeType() != Node.TEXT_NODE)
526 Node currChild = null;
531 currChild = xmlNode.getChildNodes().item(i);
532 if (!isWhitespaceNode(currChild))
534 if (currChild.getNodeType() == Node.ELEMENT_NODE && !found
    [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 480 RenderBoxModelObject* currChild = this;
511 // *after* currChild and append them all to the clone.
513 blockCurr->moveChildrenTo(cloneBlock, currChild->nextSibling(), 0, afterContent);
516 currChild = curr;
523 // Now take all the children after currChild and remove them from the fromBlock
525 fromBlock->moveChildrenTo(toBlock, currChild->nextSibling(), 0);
    [all...]

Completed in 131 milliseconds