HomeSort by relevance Sort by last modified time
    Searched refs:oldNode (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
DOMEditor.h 61 bool replaceChild(Node* parentNode, PassRefPtrWillBeRawPtr<Node> newNode, Node* oldNode, ExceptionState&);
DOMPatchSupport.h 65 bool innerPatchNode(Digest* oldNode, Digest* newNode, ExceptionState&);
DOMPatchSupport.cpp 173 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 = 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);
InspectorDOMAgent.cpp 810 Node* oldNode = nodeForId(nodeId);
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, errorString)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Range.cpp     [all...]
Range.h 136 void didMergeTextNodes(const NodeWithIndex& oldNode, unsigned offset);
137 void didSplitTextNode(Text& oldNode);
Fullscreen.cpp 562 void Fullscreen::elementRemoved(Element& oldNode)
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.
Document.h 652 void didMergeTextNodes(Text& oldNode, unsigned offset);
653 void didSplitTextNode(Text& oldNode);
    [all...]
Document.cpp     [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/editing/
FrameSelection.cpp 414 static Position updatePostionAfterAdoptingTextNodesMerged(const Position& position, const Text& oldNode, unsigned offset)
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)
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, offset)
    [all...]
FrameSelection.h 163 void didMergeTextNodes(const Text& oldNode, unsigned offset);
164 void didSplitTextNode(const Text& oldNode);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
ViewportDataGrid.js 169 var oldNode = this._visibleNodes[i];
170 if (!visibleNodesSet.contains(oldNode)) {
171 var element = oldNode.element();
173 this._hiddenWheelTarget = oldNode.abandonElement();
176 oldNode.wasDetached();
  /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/WebKit/Source/devtools/front_end/sources/
NavigatorView.js     [all...]
  /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/libxslt/libxslt/
templates.c 122 xmlNodePtr oldNode;
128 oldNode = ctxt->node;
158 ctxt->node = oldNode;
xsltutils.c 966 xmlNodePtr oldNode;
999 oldNode = ctxt->node;
1062 ctxt->node = oldNode;
    [all...]
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...]
transform.c     [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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar 
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 

Completed in 1008 milliseconds

1 2