/external/guava/guava-tests/test/com/google/common/collect/ |
ArrayListMultimapTest.java | 76 * Test throwing ConcurrentModificationException when a sublist's ancestor's
|
/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/chromium_org/ash/display/ |
screen_position_controller.cc | 26 // Return true if the window or its ancestor has |kStayInSameRootWindowkey| 162 // b) if the window or its ancestor has kStayInSameRootWindowkey. It's
|
/external/chromium_org/cc/layers/ |
layer_impl.cc | 139 bool LayerImpl::HasAncestor(const LayerImpl* ancestor) const { 140 if (!ancestor) 144 if (layer == ancestor) 182 void LayerImpl::SetClipParent(LayerImpl* ancestor) { 183 if (clip_parent_ == ancestor) 189 clip_parent_ = ancestor; [all...] |
layer.cc | 363 bool Layer::HasAncestor(const Layer* ancestor) const { 365 if (layer == ancestor) 651 void Layer::SetClipParent(Layer* ancestor) { 653 if (clip_parent_ == ancestor) 659 clip_parent_ = ancestor; [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
SVGRenderingContext.cpp | 229 // or the nearest composited layer that does not paint into its ancestor? 230 // I think this is the nearest composited ancestor since we will inherit its
|
/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.
|
metadata_model.py | 102 Find the first ancestor that matches the predicate. 108 The first ancestor closest to the node for which pred(node) is true. 346 for ancestor in p.find_parents(lambda x: not isinstance(x, Metadata)): 347 ancestor._leafs.remove(p) 835 ancestors, call this method on the ancestor nodes. 863 A node corresponding to a <namespace> which is an ancestor of a Kind. 935 ancestors, call this method on the ancestor nodes. 1011 ancestor Kind#name [all...] |
/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/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderFrameSet.cpp | 595 for (RenderObject* ancestor = parent(); ancestor; ancestor = ancestor->parent()) { 596 if (ancestor->isFrameSet()) 597 toRenderFrameSet(ancestor)->m_isChildResizing = isResizing;
|
/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/chromium_org/ui/views/ |
view.h | 409 // Returns the first ancestor, starting at this, whose class name is |name|. 410 // Returns null if no ancestor has the class name |name|. [all...] |
/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/ |
ScrollingCoordinator.cpp | [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
Range.cpp | 476 // case 2: node C (container B or an ancestor) is a child node of A 494 // case 3: node C (container A or an ancestor) is a child node of B 883 RefPtr<Node> ancestor = *it; local [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/chromium_org/chrome/browser/resources/ntp4/ |
most_visited_page.js | 175 var ancestor = findAncestor(e.relatedTarget, function(node) { 178 // If ancestor is null, mouse is entering the parent element. 179 if (ancestor == null)
|
/external/chromium_org/content/browser/accessibility/ |
browser_accessibility.cc | 113 BrowserAccessibility* ancestor) { 114 if (this == ancestor) { 117 return parent_->IsDescendantOf(ancestor);
|
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/unstable/ |
v8_interface.py | 403 def inherits_interface(interface, ancestor): 405 # Do by computing ancestor chain in compute_dependencies.py 406 return ancestor in [interface.name, interface.parent]
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLElement.cpp | 676 for (ContainerNode* ancestor = parentNode(); ancestor; ancestor = ancestor->parentNode()) { 677 if (ancestor->hasTagName(formTag)) 678 return toHTMLFormElement(ancestor); [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
HeapSnapshotGridNodes.js | 593 var ancestor = this._parentGridNode; 594 while (ancestor) { 595 if (ancestor.snapshotNodeId === this.snapshotNodeId) 596 return ancestor; 597 ancestor = ancestor._parentGridNode; [all...] |