HomeSort by relevance Sort by last modified time
    Searched full:oldnode (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
DOMPatchSupport.cpp 171 Node* oldNode = oldDigest->m_node;
174 if (newNode->nodeType() != oldNode->nodeType() || newNode->nodeName() != oldNode->nodeName())
175 return m_domEditor->replaceChild(oldNode->parentNode(), newNode, oldNode, exceptionState);
177 if (oldNode->nodeValue() != newNode->nodeValue()) {
178 if (!m_domEditor->setNodeValue(oldNode, newNode->nodeValue(), exceptionState))
182 if (!oldNode->isElementNode())
186 Element* oldElement = toElement(oldNode);
462 RefPtrWillBeRawPtr<Node> oldNode = oldDigest->m_node
    [all...]
DOMEditor.cpp 336 ReplaceChildNodeAction(Node* parentNode, PassRefPtrWillBeRawPtr<Node> newNode, Node* oldNode)
340 , m_oldNode(oldNode)
451 bool DOMEditor::replaceChild(Node* parentNode, PassRefPtrWillBeRawPtr<Node> newNode, Node* oldNode, ExceptionState& exceptionState)
453 return m_history->perform(adoptRefWillBeNoop(new ReplaceChildNodeAction(parentNode, newNode, oldNode)), exceptionState);
DOMEditor.h 61 bool replaceChild(Node* parentNode, PassRefPtrWillBeRawPtr<Node> newNode, Node* oldNode, ExceptionState&);
DOMPatchSupport.h 63 bool innerPatchNode(Digest* oldNode, Digest* newNode, ExceptionState&);
InspectorDOMAgent.cpp 771 Node* oldNode = nodeForId(nodeId);
772 if (!oldNode || !oldNode->isElementNode())
776 RefPtrWillBeRawPtr<Element> newElem = oldNode->document().createElement(AtomicString(tagName), exceptionState);
781 newElem->cloneAttributesFromElement(*toElement(oldNode));
785 while ((child = oldNode->firstChild())) {
791 ContainerNode* parent = oldNode->parentNode();
792 if (!m_domEditor->insertBefore(parent, newElem.get(), oldNode->nextSibling(), errorString))
794 if (!m_domEditor->removeChild(parent, oldNode, errorString))
    [all...]
  /external/chromium_org/third_party/libxslt/libexslt/
dynamic.c 105 xmlNodePtr oldNode;
143 oldNode = ctxt->context->node;
254 ctxt->context->node = oldNode;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Range.cpp     [all...]
Range.h 133 void didMergeTextNodes(const NodeWithIndex& oldNode, unsigned offset);
134 void didSplitTextNode(Text& oldNode);
Document.h 677 void didMergeTextNodes(Text& oldNode, unsigned offset);
678 void didSplitTextNode(Text& oldNode);
    [all...]
Document.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
FrameSelection.cpp 416 static Position updatePostionAfterAdoptingTextNodesMerged(const Position& position, const Text& oldNode, unsigned offset)
424 if (position.anchorNode() == &oldNode)
425 return Position(toText(oldNode.previousSibling()), positionOffset + offset);
427 if (position.anchorNode() == oldNode.parentNode() && positionOffset == offset)
428 return Position(toText(oldNode.previousSibling()), offset);
433 void FrameSelection::didMergeTextNodes(const Text& oldNode, unsigned offset)
435 if (isNone() || !oldNode.inDocument())
437 Position base = updatePostionAfterAdoptingTextNodesMerged(m_selection.base(), oldNode, offset);
438 Position extent = updatePostionAfterAdoptingTextNodesMerged(m_selection.extent(), oldNode, offset);
439 Position start = updatePostionAfterAdoptingTextNodesMerged(m_selection.start(), oldNode, offset)
    [all...]
FrameSelection.h 167 void didMergeTextNodes(const Text& oldNode, unsigned offset);
168 void didSplitTextNode(const Text& oldNode);
  /dalvik/dx/src/com/android/dx/ssa/
EscapeAnalysis.java 182 * newNode will have its old links as well as all links from the oldNode.
183 * The oldNode has all its links removed.
186 * @param oldNode {@code non-null;} the EscapeSet to remove all links from
188 private void replaceNode(EscapeSet newNode, EscapeSet oldNode) {
189 for (EscapeSet e : oldNode.parentSets) {
190 e.childSets.remove(oldNode);
194 for (EscapeSet e : oldNode.childSets) {
195 e.parentSets.remove(oldNode);
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
EscapeAnalysis.java 183 * 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) {
190 for (EscapeSet e : oldNode.parentSets) {
191 e.childSets.remove(oldNode);
195 for (EscapeSet e : oldNode.childSets) {
196 e.parentSets.remove(oldNode);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
NavigatorView.js     [all...]
  /external/chromium_org/third_party/libxslt/libxslt/
templates.c 122 xmlNodePtr oldNode;
128 oldNode = ctxt->node;
158 ctxt->node = oldNode;
pattern.c 548 xmlNodePtr oldnode; local
552 oldnode = ctxt->xpathCtxt->node;
561 ctxt->xpathCtxt->node = oldnode;
848 xmlNodePtr oldNode;
1113 oldNode = ctxt->node;
1129 ctxt->node = oldNode;
1136 ctxt->node = oldNode;
    [all...]
xsltutils.c 966 xmlNodePtr oldNode;
999 oldNode = ctxt->node;
1062 ctxt->node = oldNode;
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
math_semantic_tree.js 249 * @param {!cvox.SemanticTree.Node} oldNode The node to be replaced.
253 cvox.SemanticTree.prototype.replaceNode_ = function(oldNode, newNode) {
254 var parent = oldNode.parent;
259 parent.replaceChild_(oldNode, newNode);
329 * @param {!cvox.SemanticTree.Node} oldNode The node to be replaced.
333 cvox.SemanticTree.Node.prototype.replaceChild_ = function(oldNode, newNode) {
334 var index = this.childNodes.indexOf(oldNode);
339 oldNode.parent = null;
344 var removeMathml = oldNode.mathml.filter(
347 function(x) {return oldNode.mathml.indexOf(x) == -1;})
    [all...]
  /external/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 289 if (DomTreeNode *OldNode = DT.getNode(Old)) {
291 for (DomTreeNode::iterator I = OldNode->begin(), E = OldNode->end();
    [all...]
CodeExtractor.cpp 273 DomTreeNode *OldNode = DT->getNode(*I);
275 for (DomTreeNode::iterator DI = OldNode->begin(), DE = OldNode->end();
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
NodeSequence.java 543 int oldNode = vec.elementAt(index);
544 if (oldNode != node && m_cache.useCount() > 1) {
  /external/chromium_org/third_party/libxml/src/
xmlreader.c 1057 xmlNodePtr oldnode = reader->node; local
1083 if (node == oldnode)
1257 xmlNodePtr oldnode = NULL; local
    [all...]
  /external/libxml2/
xmlreader.c 1073 xmlNodePtr oldnode = reader->node; local
1099 if (node == oldnode)
1276 xmlNodePtr oldnode = NULL; local
    [all...]
  /external/llvm/include/llvm/ADT/
ImmutableSet.h 582 TreeTy* OldNode;
583 TreeTy* newRight = removeMinBinding(R,OldNode);
584 return balanceTree(L, getValue(OldNode), newRight);
    [all...]

Completed in 371 milliseconds

1 2