Searched refs:oldNode (Results 1 - 25 of 25) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DViewportDataGrid.js169 var oldNode = this._visibleNodes[i];
170 if (!visibleNodesSet.contains(oldNode)) {
171 var element = oldNode.element();
173 this._hiddenWheelTarget = oldNode.abandonElement();
176 oldNode.wasDetached();
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DDOMPatchSupport.h65 bool innerPatchNode(Digest* oldNode, Digest* newNode, ExceptionState&);
H A DDOMPatchSupport.cpp173 Node* oldNode = oldDigest->m_node;
176 if (newNode->nodeType() != oldNode->nodeType() || newNode->nodeName() != oldNode->nodeName())
177 return m_domEditor->replaceChild(oldNode->parentNode(), newNode, oldNode, exceptionState);
179 if (oldNode->nodeValue() != newNode->nodeValue()) {
180 if (!m_domEditor->setNodeValue(oldNode, newNode->nodeValue(), exceptionState))
184 if (!oldNode->isElementNode())
188 Element* oldElement = toElement(oldNode);
460 RefPtrWillBeRawPtr<Node> oldNode local
[all...]
H A DDOMEditor.h61 bool replaceChild(Node* parentNode, PassRefPtrWillBeRawPtr<Node> newNode, Node* oldNode, ExceptionState&);
H A DDOMEditor.cpp336 ReplaceChildNodeAction(Node* parentNode, PassRefPtrWillBeRawPtr<Node> newNode, Node* oldNode) argument
340 , m_oldNode(oldNode)
451 bool DOMEditor::replaceChild(Node* parentNode, PassRefPtrWillBeRawPtr<Node> newNode, Node* oldNode, ExceptionState& exceptionState) argument
453 return m_history->perform(adoptRefWillBeNoop(new ReplaceChildNodeAction(parentNode, newNode, oldNode)), exceptionState);
H A DInspectorDOMAgent.cpp810 Node* oldNode = nodeForId(nodeId); local
811 if (!oldNode || !oldNode->isElementNode())
815 RefPtrWillBeRawPtr<Element> newElem = oldNode->document().createElement(AtomicString(tagName), exceptionState);
820 newElem->cloneAttributesFromElement(*toElement(oldNode));
823 for (Node* child = oldNode->firstChild(); child; child = oldNode->firstChild()) {
829 ContainerNode* parent = oldNode->parentNode();
830 if (!m_domEditor->insertBefore(parent, newElem.get(), oldNode->nextSibling(), errorString))
832 if (!m_domEditor->removeChild(parent, oldNode, errorStrin
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DRange.cpp1629 static inline void boundaryTextNodesMerged(RangeBoundaryPoint& boundary, const NodeWithIndex& oldNode, unsigned offset) argument
1631 if (boundary.container() == oldNode.node())
1632 boundary.set(oldNode.node().previousSibling(), boundary.offset() + offset, 0);
1633 else if (boundary.container() == oldNode.node().parentNode() && boundary.offset() == oldNode.index())
1634 boundary.set(oldNode.node().previousSibling(), offset, 0);
1637 void Range::didMergeTextNodes(const NodeWithIndex& oldNode, unsigned offset) argument
1639 ASSERT(oldNode.node().document() == m_ownerDocument);
1640 ASSERT(oldNode.node().parentNode());
1641 ASSERT(oldNode
1661 boundaryTextNodeSplit(RangeBoundaryPoint& boundary, Text& oldNode) argument
1671 didSplitTextNode(Text& oldNode) argument
[all...]
H A DRange.h136 void didMergeTextNodes(const NodeWithIndex& oldNode, unsigned offset);
137 void didSplitTextNode(Text& oldNode);
H A DFullscreen.cpp562 void Fullscreen::elementRemoved(Element& oldNode) argument
564 // Whenever the removing steps run with an |oldNode| and |oldNode| is in its node document's
567 // 1. If |oldNode| is at the top of its node document's fullscreen element stack, act as if the
569 if (fullscreenElement() == &oldNode) {
574 // 2. Otherwise, remove |oldNode| from its node document's fullscreen element stack.
576 if (m_fullScreenElementStack[i].first.get() == &oldNode) {
582 // NOTE: |oldNode| was not in the fullscreen element stack.
H A DDocument.h652 void didMergeTextNodes(Text& oldNode, unsigned offset);
653 void didSplitTextNode(Text& oldNode);
H A DDocument.cpp3815 void Document::didMergeTextNodes(Text& oldNode, unsigned offset) argument
3818 NodeWithIndex oldNodeWithIndex(oldNode);
3825 m_frame->selection().didMergeTextNodes(oldNode, offset);
3830 void Document::didSplitTextNode(Text& oldNode) argument
3835 (*it)->didSplitTextNode(oldNode);
3839 m_frame->selection().didSplitTextNode(oldNode);
/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/editing/
H A DFrameSelection.cpp414 static Position updatePostionAfterAdoptingTextNodesMerged(const Position& position, const Text& oldNode, unsigned offset) argument
422 if (position.anchorNode() == &oldNode)
423 return Position(toText(oldNode.previousSibling()), positionOffset + offset);
425 if (position.anchorNode() == oldNode.parentNode() && positionOffset == offset)
426 return Position(toText(oldNode.previousSibling()), offset);
431 void FrameSelection::didMergeTextNodes(const Text& oldNode, unsigned offset) argument
433 if (isNone() || !oldNode.inDocument())
435 Position base = updatePostionAfterAdoptingTextNodesMerged(m_selection.base(), oldNode, offset);
436 Position extent = updatePostionAfterAdoptingTextNodesMerged(m_selection.extent(), oldNode, offset);
437 Position start = updatePostionAfterAdoptingTextNodesMerged(m_selection.start(), oldNode, offse
442 updatePostionAfterAdoptingTextNodeSplit(const Position& position, const Text& oldNode) argument
455 didSplitTextNode(const Text& oldNode) argument
[all...]
H A DFrameSelection.h163 void didMergeTextNodes(const Text& oldNode, unsigned offset);
164 void didSplitTextNode(const Text& oldNode);
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DNodeSequence.java543 int oldNode = vec.elementAt(index);
544 if (oldNode != node && m_cache.useCount() > 1) {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
H A DNavigatorView.js1394 var oldNode;
1396 oldNode = children[0] !== node ? children[0] : children[1];
1397 if (oldNode && oldNode._isMerged) {
1398 delete oldNode._isMerged;
1410 treeNode = 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/chromium_org/third_party/libxslt/libxslt/
H A Dtemplates.c122 xmlNodePtr oldNode; local
128 oldNode = ctxt->node;
158 ctxt->node = oldNode;
H A Dxsltutils.c966 xmlNodePtr oldNode; local
999 oldNode = ctxt->node;
1062 ctxt->node = oldNode;
H A Dpattern.c848 xmlNodePtr oldNode; local
1113 oldNode = ctxt->node;
1129 ctxt->node = oldNode;
1136 ctxt->node = oldNode;
H A Dtransform.c1982 xmlNodePtr oldNode; local
2005 oldNode = ctxt->node;
2008 ctxt->node = oldNode;
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dmath_semantic_tree.js249 * @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
[all...]
/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 ...

Completed in 529 milliseconds