Searched defs:oldNode (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/third_party/libxslt/libexslt/
H A Ddynamic.c105 xmlNodePtr oldNode; local
143 oldNode = ctxt->context->node;
254 ctxt->context->node = oldNode;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DDOMEditor.cpp291 ReplaceChildNodeAction(Node* parentNode, PassRefPtr<Node> newNode, Node* oldNode) argument
295 , m_oldNode(oldNode)
395 bool DOMEditor::replaceChild(Node* parentNode, PassRefPtr<Node> newNode, Node* oldNode, ExceptionState& es) argument
397 return m_history->perform(adoptPtr(new ReplaceChildNodeAction(parentNode, newNode, oldNode)), es);
H A DDOMPatchSupport.cpp169 Node* oldNode = oldDigest->m_node;
172 if (newNode->nodeType() != oldNode->nodeType() || newNode->nodeName() != oldNode->nodeName())
173 return m_domEditor->replaceChild(oldNode->parentNode(), newNode, oldNode, es);
175 if (oldNode->nodeValue() != newNode->nodeValue()) {
176 if (!m_domEditor->setNodeValue(oldNode, newNode->nodeValue(), es))
180 if (oldNode->nodeType() != Node::ELEMENT_NODE)
184 Element* oldElement = toElement(oldNode);
463 RefPtr<Node> oldNode local
[all...]
H A DInspectorDOMAgent.cpp747 Node* oldNode = nodeForId(nodeId); local
748 if (!oldNode || !oldNode->isElementNode())
752 RefPtr<Element> newElem = oldNode->document()->createElement(tagName, es);
757 newElem->cloneAttributesFromElement(*toElement(oldNode));
761 while ((child = oldNode->firstChild())) {
767 ContainerNode* parent = oldNode->parentNode();
768 if (!m_domEditor->insertBefore(parent, newElem.get(), oldNode->nextSibling(), errorString))
770 if (!m_domEditor->removeChild(parent, oldNode, errorString))
/external/chromium_org/third_party/libxslt/libxslt/
H A Dtemplates.c122 xmlNodePtr oldNode; local
128 oldNode = ctxt->node;
158 ctxt->node = oldNode;
H A Dpattern.c848 xmlNodePtr oldNode; local
1113 oldNode = ctxt->node;
1129 ctxt->node = oldNode;
1136 ctxt->node = oldNode;
H A Dxsltutils.c966 xmlNodePtr oldNode; local
999 oldNode = ctxt->node;
1062 ctxt->node = oldNode;
H A Dtransform.c1982 xmlNodePtr oldNode; local
2005 oldNode = ctxt->node;
2008 ctxt->node = oldNode;
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DEscapeAnalysis.java183 * newNode will have its old links as well as all links from the oldNode.
184 * The oldNode has all its links removed.
187 * @param oldNode {@code non-null;} the EscapeSet to remove all links from
189 private void replaceNode(EscapeSet newNode, EscapeSet oldNode) { argument
190 for (EscapeSet e : oldNode.parentSets) {
191 e.childSets.remove(oldNode);
195 for (EscapeSet e : oldNode.childSets) {
196 e.parentSets.remove(oldNode);
/external/libxslt/libxslt/
H A Dtemplates.c121 xmlNodePtr oldNode; local
127 oldNode = ctxt->node;
157 ctxt->node = oldNode;
H A Dpattern.c848 xmlNodePtr oldNode; local
1113 oldNode = ctxt->node;
1129 ctxt->node = oldNode;
1136 ctxt->node = oldNode;
H A Dxsltutils.c966 xmlNodePtr oldNode; local
999 oldNode = ctxt->node;
1062 ctxt->node = oldNode;
H A Dtransform.c1982 xmlNodePtr oldNode; local
2005 oldNode = ctxt->node;
2008 ctxt->node = oldNode;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DRange.cpp1779 static inline void boundaryTextNodesMerged(RangeBoundaryPoint& boundary, NodeWithIndex& oldNode, unsigned offset) argument
1781 if (boundary.container() == oldNode.node())
1782 boundary.set(oldNode.node()->previousSibling(), boundary.offset() + offset, 0);
1783 else if (boundary.container() == oldNode.node()->parentNode() && boundary.offset() == oldNode.index())
1784 boundary.set(oldNode.node()->previousSibling(), offset, 0);
1787 void Range::textNodesMerged(NodeWithIndex& oldNode, unsigned offset) argument
1789 ASSERT(oldNode.node());
1790 ASSERT(oldNode.node()->document() == m_ownerDocument);
1791 ASSERT(oldNode
1799 boundaryTextNodesSplit(RangeBoundaryPoint& boundary, Text* oldNode) argument
1809 textNodeSplit(Text* oldNode) argument
[all...]
H A DDocument.cpp3431 void Document::textNodesMerged(Text* oldNode, unsigned offset) argument
3434 NodeWithIndex oldNodeWithIndex(oldNode);
3443 void Document::textNodeSplit(Text* oldNode) argument
3448 (*it)->textNodeSplit(oldNode);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 352 milliseconds