HomeSort by relevance Sort by last modified time
    Searched full:ancestor (Results 201 - 225 of 522) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/WebKit/Source/core/editing/
ReplaceSelectionCommand.cpp 638 RefPtr<Node> ancestor = prpAncestor; local
640 if (!ancestor->parentNode()->rendererIsEditable())
644 VisiblePosition lastPositionInParagraph = lastPositionInNode(ancestor.get());
647 if (ancestor->nextSibling())
648 insertNodeBefore(node, ancestor->nextSibling());
650 appendNode(node, ancestor->parentNode());
652 RefPtr<Node> nodeToSplitTo = splitTreeToNode(node.get(), ancestor.get(), true);
656 if (!ancestor->firstChild())
657 removeNode(ancestor.release());
    [all...]
EditingStyle.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDOMAgent.cpp 890 for (ContainerNode* ancestor = node->parentOrShadowHostNode(); ancestor; ancestor = ancestor->parentOrShadowHostNode())
891 ancestors.append(ancestor);
896 Node* ancestor = ancestors[i - 1]; local
897 EventTargetData* d = ancestor->eventTargetData();
904 const EventListenerVector& listeners = ancestor->getEventListeners(type);
912 eventInformation.append(EventListenerInfo(ancestor, type, filteredListeners));
    [all...]
  /external/chromium_org/ui/aura/
window.cc 143 // ancestor with a layer is found. This is intended to locate a layer to stack
498 // coordinates of the layer are relative to the first ancestor with a layer;
783 // window visible (by way of making a hidden ancestor visible). For this
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
Spatial.java 761 * @param ancestor
762 * the ancestor object to look for.
763 * @return true if the ancestor is found, false otherwise.
765 public boolean hasAncestor(Node ancestor) {
768 } else if (parent.equals(ancestor)) {
771 return parent.hasAncestor(ancestor);
    [all...]
  /external/libvpx/libvpx/examples/includes/HTML-Toc-0.91/
TocInsertor.pm 465 # Call ancestor
643 # Allow ancestor to process the comment tag
669 # Allow ancestor to process the declaration tag
695 # Allow ancestor to process the end tag
801 # Let ancestor process the start tag
848 # Let ancestor process the text
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LoggerTest.java 2768 Logger ancestor = new MockParentLogger("ancestorLogger", local
2889 Logger ancestor = new MockLogger("ancestorLogger", local
2961 Logger ancestor = new MockLogger("ancestorLogger", local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BaseTree.cs 378 /** <summary>Walk upwards looking for ancestor with this token type.</summary> */
383 /** <summary>Walk upwards and get first ancestor with this token type.</summary> */
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BaseTree.cs 454 /** <summary>Walk upwards looking for ancestor with this token type.</summary> */
460 /** <summary>Walk upwards and get first ancestor with this token type.</summary> */
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBaseTree.m 410 /** Walk upwards looking for ancestor with this token type. */
416 /** Walk upwards and get first ancestor with this token type. */
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
Constants.java 186 ATTRNAME_ANCESTOR = "ancestor",
371 ATTRVAL_ANCESTOR = "ancestor", ATTRVAL_ID = "id";
  /external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_bar_view.h 522 // If the bookmark bubble is showing, this is the visible ancestor of the URL.
523 // The visible ancestor is either the other_bookmarked_button_,
  /external/chromium/webkit/glue/
webaccessibility.cc 429 const WebKit::WebAccessibilityObject& ancestor,
434 return parent.equals(ancestor);
  /external/chromium_org/cc/layers/
layer.h 93 bool HasAncestor(const Layer* ancestor) const;
202 void SetClipParent(Layer* ancestor);
layer_impl.h 103 bool HasAncestor(const LayerImpl* ancestor) const;
118 void SetClipParent(LayerImpl* ancestor);
  /external/chromium_org/cc/trees/
damage_tracker.cc 281 // ancestor surface, ExtendDamageForRenderSurface() must be called instead.
319 // - changes to ancestor layers that propagate their property
  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_bar_view.h 427 // If the bookmark bubble is showing, this is the visible ancestor of the URL.
428 // The visible ancestor is either the other_bookmarked_button_,
  /external/chromium_org/chrome/third_party/chromevox/extensions/searchvox/
search.js 367 * Get the ancestor of node that is a result.
369 * @return {Node} Result ancestor.
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathParser.cpp 77 { "ancestor", Step::AncestorAxis },
78 { "ancestor-or-self", Step::AncestorOrSelfAxis },
  /external/chromium_org/ui/webui/resources/js/
util.js 152 * Return the first ancestor for which the {@code predicate} returns true.
156 * @return {Node} The found ancestor or null if not found.
  /external/llvm/docs/
HowToSetUpLLVMStyleRTTI.rst 215 The argument to ``classof`` should always be an *ancestor* class because
393 is some ancestor in the inheritance hierarchy. The argument should
  /external/llvm/include/llvm/Analysis/
DominatorInternals.h 127 // Process Ancestor first
134 // Update VInfo based on Ancestor info
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathException.java 110 * @return null or first ancestor that is not an Expression.
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
OneStepIterator.java 194 // (preceding-sibling::*|following-sibling::*)/ancestor::*[position()]/*[position()]
  /external/chromium/base/
bind_helpers.h 85 // TargetFunc in inherited from an ancestor, &C::TargetFunc will not match,

Completed in 982 milliseconds

1 2 3 4 5 6 7 891011>>