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

1 2 3 4 5 6 7 8

  /external/webkit/WebCore/svg/
SVGFontFaceFormatElement.cpp 44 Node* ancestor = parentNode()->parentNode();
45 if (!ancestor || !ancestor->hasTagName(font_face_srcTag))
48 ancestor = ancestor->parentNode();
49 if (ancestor && ancestor->hasTagName(font_faceTag))
50 static_cast<SVGFontFaceElement*>(ancestor)->rebuildFontFace();
  /libcore/luni/src/main/java/org/apache/xalan/processor/
ProcessorExsltFuncResult.java 52 ElemTemplateElement ancestor = handler.getElemTemplateElement().getParentElem(); local
53 while (ancestor != null && !(ancestor instanceof ElemExsltFunction))
55 if (ancestor instanceof ElemVariable
56 || ancestor instanceof ElemParam
57 || ancestor instanceof ElemExsltFuncResult)
62 ancestor = ancestor.getParentElem();
64 if (ancestor == null)
  /sdk/eclipse/sites/external/web/
site.xsl 28 <xsl:sort select="ancestor::feature//@version" order="ascending"/>
29 <xsl:sort select="ancestor::feature//@id" order="ascending" case-order="upper-first"/>
41 <xsl:when test="ancestor::feature//@label">
42 <a href="{ancestor::feature//@url}"><xsl:value-of select="ancestor::feature//@label"/></a>
45 (<xsl:value-of select="ancestor::feature//@id"/> - <xsl:value-of select="ancestor::feature//@version"/>)
49 <a href="{ancestor::feature//@url}"><xsl:value-of select="ancestor::feature//@id"/> - <xsl:value-of select="ancestor::feature//@version"/></a
    [all...]
  /sdk/eclipse/sites/internal/web/
site.xsl 28 <xsl:sort select="ancestor::feature//@version" order="ascending"/>
29 <xsl:sort select="ancestor::feature//@id" order="ascending" case-order="upper-first"/>
41 <xsl:when test="ancestor::feature//@label">
42 <a href="{ancestor::feature//@url}"><xsl:value-of select="ancestor::feature//@label"/></a>
45 (<xsl:value-of select="ancestor::feature//@id"/> - <xsl:value-of select="ancestor::feature//@version"/>)
49 <a href="{ancestor::feature//@url}"><xsl:value-of select="ancestor::feature//@id"/> - <xsl:value-of select="ancestor::feature//@version"/></a
    [all...]
  /external/webkit/WebCore/inspector/front-end/
BottomUpProfileDataGridTree.js 30 // because a root node can represent itself AND an ancestor.
99 var ancestor = nodeInfo.ancestor;
101 var child = this.findChild(ancestor);
113 // If not, add it as a true ancestor.
114 // In heavy mode, we take our visual identity from ancestor node...
115 var child = new WebInspector.BottomUpProfileDataGridNode(this.profileView, ancestor, this.tree);
117 if (ancestor !== focusNode) {
127 var parent = ancestor.parent;
129 nodeInfo.ancestor = parent
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
Dominators.java 117 DFSInfo ancestorbbInfo = info[bbInfo.ancestor.getIndex()];
119 if (ancestorbbInfo.ancestor != null) {
128 SsaBasicBlock vAncestor = vbbInfo.ancestor;
131 // Make sure we process our ancestor before ourselves.
132 if (visited.add(vAncestor) && vabbInfo.ancestor != null) {
138 // Update based on ancestor info.
139 if (vabbInfo.ancestor == null) {
148 vbbInfo.ancestor = vabbInfo.ancestor;
156 if (bbInfo.ancestor == null)
278 public SsaBasicBlock ancestor; field in class:Dominators.DFSInfo
    [all...]
  /external/webkit/WebCore/editing/
BreakBlockquoteCommand.cpp 142 // On exiting this loop, clonedAncestor is the lowest ancestor
173 // Split the tree up the ancestor chain until the topBlockquote
174 // Throughout this loop, clonedParent is the clone of ancestor's parent.
175 // This is so we can clone ancestor's siblings and place the clones
176 // into the clone corresponding to the ancestor's parent.
177 Element* ancestor; local
179 for (ancestor = ancestors.first(), clonedParent = clonedAncestor->parentElement();
180 ancestor && ancestor != topBlockquote;
181 ancestor = ancestor->parentElement(), clonedParent = clonedParent->parentElement())
    [all...]
markup.cpp 897 Node *ancestor = ancestorsToClose.last(); local
    [all...]
htmlediting.cpp 639 Node* ancestor = range->commonAncestorContainer(ec);// find the cloeset common ancestor local
642 while (ancestor && ancestor->isContentEditable() && isNodeVisiblyContainedWithin(ancestor, maximumRange) && ancestor != rootNode) {
643 highestNode = ancestor;
644 ancestor = ancestor->parentNode();
923 Node* ancestor = node->shadowAncestorNode()
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/dtm/
Axis.java 25 * <p>The ancestor, descendant, following, preceding and self axes partition a
34 * The ancestor axis contains the ancestors of the context node;
36 * node and the parent's parent and so on; thus, the ancestor axis will
39 public static final int ANCESTOR = 0;
42 * the ancestor-or-self axis contains the context node and the ancestors of
43 * the context node; thus, the ancestor axis will always include the
126 * A non-xpath axis, traversing the the preceding and the ancestor nodes,
166 true, // ancestor
167 true, // ancestor-or-self
185 "ancestor", //
    [all...]
  /external/webkit/WebCore/manual-tests/
user-drag-with-decorations.html 1 This tests that we don't include overflow decorations from our ancestor nodes in the drag image for -webkit-user-drag: element. To perform this test drag the green square below. The drag image should not contain any parts of the scrollbar graphics visible on the page.
nested-plug-ins.html 21 non-displaying ancestor, and that making an ancestor visible and displaying shows only its descendants the are visible and displaying.
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/
ChunkedIntArray.java 131 // Check that the node at index "position" is not an ancestor
133 // RETURN -1. If position is NOT an ancestor, return position.
139 // We have to look all the way up the ancestor chain
140 // to make sure we don't have an ancestor.
141 int ancestor = startPos; local
142 while(ancestor > 0)
144 // Get the node whose index == ancestor
145 ancestor*=slotsize;
146 int chunkpos = ancestor >> lowbits;
147 int slotpos = ancestor & lowmask
    [all...]
DTMDefaultBaseTraversers.java 121 case Axis.ANCESTOR :
198 * Implements traversal of the Ancestor access, in reverse document order.
242 * Implements traversal of the Ancestor access, in reverse document order.
328 * Implements traversal of the Ancestor access, in reverse document order.
579 * Implements traversal of the Ancestor access, in reverse document order.
653 // (next-sib or ancestor's-next-sib). Probably shallower search.
758 * Implements traversal of the Ancestor access, in reverse document order.
981 * Implements traversal of the Ancestor access, in reverse document order.
1023 * Implements traversal of the Ancestor access, in reverse document order.
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/utils/
NSInfo.java 61 * ancestor has XMLNS attributes.
99 /** Flag indicating whether one of this node's ancestor has an XMLNS attribute */
105 /** Constant indicating an ancestor has an XMLNS attribute */
  /external/libvpx/nestegg/src/
nestegg.c 273 struct list_node * ancestor; member in struct:saved_state
291 struct list_node * ancestor; member in struct:nestegg
755 ne_is_ancestor_element(uint64_t id, struct list_node * ancestor)
759 for (; ancestor; ancestor = ancestor->previous)
760 for (element = ancestor->node; element->id; ++element)
780 ne_ctx_push(nestegg * ctx, struct ebml_element_desc * ancestor, void * data)
785 item->previous = ctx->ancestor;
786 item->node = ancestor;
    [all...]
  /external/guava/src/com/google/common/collect/
AbstractMultimap.java 363 K key, List<V> list, @Nullable WrappedCollection ancestor) {
365 ? new RandomAccessWrappedList(key, list, ancestor)
366 : new WrappedList(key, list, ancestor);
374 * <p>Full collections, identified by a null ancestor field, contain all
381 * given key. Its ancestor field points to the full wrapped collection with
389 final WrappedCollection ancestor; field in class:AbstractMultimap.WrappedCollection
393 @Nullable WrappedCollection ancestor) {
396 this.ancestor = ancestor;
398 = (ancestor == null) ? null : ancestor.getDelegate()
    [all...]
  /external/libvpx/examples/includes/HTML-Toc-0.91/
Changes 19 the ancestor call to HTML::TocGenerator only when '_doDeleteTokens'
TocUpdator.pm 218 # Call ancestor
251 # Call ancestor to set anchor name
307 # Call ancestor
321 # Call ancestor
343 # Call ancestor
370 # Call ancestor
397 # Call ancestor
403 # Call ancestor
417 # Call ancestor
474 # Call ancestor
    [all...]
  /libcore/luni/src/main/java/org/apache/xpath/compiler/
Keywords.java 44 /** ancestor axes string. */
45 private static final String FROM_ANCESTORS_STRING = "ancestor";
47 /** ancestor-or-self axes string. */
49 "ancestor-or-self";
60 /** ancestor axes string. */
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTMdefaultNamespaceDeclarationNode.java 350 NodeImpl ancestor = (NodeImpl)getElementAncestor(this);
351 if (ancestor != null) {
352 return ancestor.lookupNamespaceURI(specifiedPrefix);
380 NodeImpl ancestor = (NodeImpl)getElementAncestor(this);
381 if (ancestor != null) {
382 return ancestor.lookupNamespaceURI(specifiedPrefix);
428 NodeImpl ancestor = (NodeImpl)getElementAncestor(this);
429 if (ancestor != null) {
430 return ancestor.isDefaultNamespace(namespaceURI);
452 NodeImpl ancestor = (NodeImpl)getElementAncestor(this)
    [all...]
  /external/webkit/WebCore/html/
HTMLImageElement.cpp 216 for (Node* ancestor = parentNode(); ancestor; ancestor = ancestor->parentNode()) {
217 if (ancestor->hasTagName(formTag)) {
218 m_form = static_cast<HTMLFormElement*>(ancestor);
  /external/webkit/WebCore/page/
FrameTree.h 53 bool isDescendantOf(const Frame* ancestor) const;
  /external/webkit/WebCore/xml/
XPathNodeSet.cpp 54 // Find the common ancestor.
76 // One of the nodes is the common ancestor => it is the first in document order.
106 // Children nodes of the common ancestor induce a subdivision of our node-set.
  /external/webkit/WebCore/loader/
RedirectScheduler.cpp 172 // Navigation of a subframe during loading of an ancestor frame does not create a new back/forward item.
176 for (Frame* ancestor = targetFrame->tree()->parent(); ancestor; ancestor = ancestor->tree()->parent()) {
177 Document* document = ancestor->document();
178 if (!ancestor->loader()->isComplete() || (document && document->processingLoadEvent()))

Completed in 660 milliseconds

1 2 3 4 5 6 7 8