HomeSort by relevance Sort by last modified time
    Searched full:ancestor (Results 101 - 125 of 382) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/WebKit/win/Interfaces/
IWebFramePrivate.idl 78 HRESULT isDescendantOfFrame([in] IWebFrame* ancestor, [out, retval] BOOL* result);
  /external/webkit/Source/WebKit2/UIProcess/
WebFrameProxy.h 128 bool isDescendantOf(const WebFrameProxy* ancestor) const;
  /libcore/luni/src/main/java/java/util/logging/
LoggingMXBean.java 66 * level is inherited from the nearest non-null ancestor.
  /external/blktrace/
rbtree.c 335 ancestor is a right-hand child of its parent, keep going
360 /* No left-hand children. Go up till we find an ancestor which
  /external/chromium/chrome/browser/accessibility/
browser_accessibility.h 74 // Return true if this object is equal to or a descendant of |ancestor|.
75 bool IsDescendantOf(BrowserAccessibility* ancestor);
  /external/webkit/Source/WebCore/rendering/
RenderLayerBacking.h 83 // Layer to get clipped by ancestor
204 OwnPtr<GraphicsLayer> m_ancestorClippingLayer; // only used if we are clipped by an ancestor which is not a stacking context
RenderFrameSet.cpp 817 for (RenderObject* ancestor = parent(); ancestor; ancestor = ancestor->parent()) {
818 if (ancestor->isFrameSet())
819 toRenderFrameSet(ancestor)->m_isChildResizing = isResizing;
RenderLayerCompositor.h 111 // Whether layer's backing needs a graphics layer to do clipping by an ancestor (non-stacking-context parent with overflow).
129 // Get the nearest ancestor layer that has overflow or clip, but is not a stacking context
  /system/media/camera/docs/
metadata_validate.py 68 Find the ancestor for an element whose name matches one of those
152 Finds the kind Tag ancestor for an element.
  /external/chromium/chrome/browser/ui/views/autocomplete/
autocomplete_popup_contents_view.cc 417 views::View* ancestor = child; local
418 while (ancestor && ancestor != opt_in_view_)
419 ancestor = ancestor->parent();
420 return ancestor ? child : this;
  /external/guava/guava/src/com/google/common/net/
InternetDomainName.java 367 return hasPublicSuffix() ? ancestor(publicSuffixIndex) : null;
444 return ancestor(publicSuffixIndex - 1);
455 * Returns an {@code InternetDomainName} that is the immediate ancestor of
464 return ancestor(1);
468 * Returns the ancestor of the current domain at the given number of levels
475 private InternetDomainName ancestor(int levels) { method in class:InternetDomainName
  /external/valgrind/main/docs/lib/
vg-html-common.xsl 293 <xsl:when test="ancestor-or-self::*[@defaultlabel]">
294 <xsl:value-of select="(ancestor-or-self::*[@defaultlabel])[last()]
358 <xsl:when test="ancestor-or-self::*[@defaultlabel]">
359 <xsl:value-of select="(ancestor-or-self::*[@defaultlabel])[last()]
394 <xsl:when test="ancestor-or-self::*[@defaultlabel]">
395 <xsl:value-of select="(ancestor-or-self::*[@defaultlabel])[last()]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeProxy.java     [all...]
  /external/webkit/Source/WebCore/dom/
Range.cpp 480 // case 2: node C (container B or an ancestor) is a child node of A
498 // case 3: node C (container A or an ancestor) is a child node of B
869 RefPtr<Node> ancestor = *it; local
871 if (RefPtr<Node> clonedAncestor = ancestor->cloneNode(false)) { // Might have been removed already during mutation event.
877 // Copy siblings of an ancestor of start/end containers
880 ASSERT(!firstChildInAncestorToProcess || firstChildInAncestorToProcess->parentNode() == ancestor);
891 ancestor->removeChild(child, ec);
893 case EXTRACT_CONTENTS: // will remove child from ancestor
907 firstChildInAncestorToProcess = direction == ProcessContentsForward ? ancestor->nextSibling() : ancestor->previousSibling()
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorDOMAgent.cpp 737 for (ContainerNode* ancestor = node->parentOrHostNode(); ancestor; ancestor = ancestor->parentOrHostNode())
738 ancestors.append(ancestor);
743 ContainerNode* ancestor = ancestors[i - 1]; local
746 if (ancestor->hasEventListeners(type))
747 eventInformation.append(EventListenerInfo(ancestor, type, ancestor->getEventListeners(type)));
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/test/runtime/tree/
ANTLRCommonTreeTest.m 334 STAssertTrue([tree hasAncestor:ANTLRTokenTypeUP], @"Should have an ancestor of type ANTLRTokenTypeUP");
336 ANTLRCommonTree *ancestor = [tree getAncestor:ANTLRTokenTypeUP];
337 STAssertNotNil(ancestor, @"Ancestor should not be nil");
338 STAssertEquals(ancestor, parent, @"Acenstors do not match");
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_editor_base_controller.mm 358 // of ancestor nodes. Then crawl down the folderTreeArray looking
359 // for each ancestor in order while building up the selectionPath.
447 // For safety's sake, in case deleted node was an ancestor of selection,
  /external/webkit/Source/WebCore/html/
HTMLElement.cpp 796 for (ContainerNode* ancestor = parentNode(); ancestor; ancestor = ancestor->parentNode()) {
797 if (ancestor->hasTagName(formTag))
798 return static_cast<HTMLFormElement*>(ancestor);
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTree.as 265 /** Walk upwards looking for ancestor with this token type. */
268 /** Walk upwards and get first ancestor with this token type. */
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
BaseTree.java 312 /** Walk upwards looking for ancestor with this token type. */
315 /** Walk upwards and get first ancestor with this token type. */
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
OpCodes.java 567 /** ancestor axes opcode. */
570 /** ancestor-or-self axes opcode. */
  /external/linux-tools-perf/util/added/
rbtree.c 402 ancestor is a right-hand child of its parent, keep going
428 /* No left-hand children. Go up till we find an ancestor which
  /external/webkit/LayoutTests/fast/xpath/py-dom-xpath/
paths.html 54 test(doc, '//context', 'ancestor::div', [doc.getElementsByTagName("div")[0], doc.getElementsByTagName("div")[1]]);
65 test(doc, '//div[@id="3"]', 'ancestor-or-self::div', [doc.getElementsByTagName("div")[0], doc.getElementsByTagName("div")[2]]);
  /bionic/libc/netbsd/nameser/
ns_samedomain.c 41 * b - the potential ancestor we're checking against
  /development/samples/training/EffectiveNavigation/src/com/example/android/effectivenavigation/
CollectionDemoActivity.java 86 // If there are ancestor activities, they should be added here.

Completed in 882 milliseconds

1 2 3 45 6 7 8 91011>>