/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_org/third_party/WebKit/public/platform/ |
WebLayer.h | 159 // its nearest clipping ancestor. Note, the clip parent must be an ancestor.
|
/external/droiddriver/src/com/google/android/droiddriver/finders/ |
By.java | 141 * typically first Finder finds the ancestor, then second Finder finds the 195 * Matches a UiElement whose ancestor matches the given ancestorFinder. For
|
/frameworks/base/libs/hwui/ |
Snapshot.h | 104 * Indicates that this snapshot or an ancestor snapshot is 251 * The ancestor layer's dirty region.
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderFrameSet.cpp | 590 for (RenderObject* ancestor = parent(); ancestor; ancestor = ancestor->parent()) { 591 if (ancestor->isFrameSet()) 592 toRenderFrameSet(ancestor)->m_isChildResizing = isResizing;
|
RenderObject.cpp | 623 for (RenderObject* ancestor = parent(); ancestor; ancestor = ancestor->parent()) { 624 if (!ancestor->isBox()) 627 RenderBox* ancestorBox = toRenderBox(ancestor); 806 RenderObject* ancestor = parent(); local 807 for (; ancestor && !ancestor->canContainFixedPositionObjects(); ancestor = ancestor->parent()) [all...] |
/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 | 400 // Returns the first ancestor, starting at this, whose class name is |name|. 401 // Returns null if no ancestor has the class name |name|. [all...] |
/system/media/camera/docs/ |
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. 1018 ancestor Kind#name [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_org/cc/layers/ |
layer.cc | 361 bool Layer::HasAncestor(const Layer* ancestor) const { 363 if (layer == ancestor) 627 void Layer::SetClipParent(Layer* ancestor) { 629 if (clip_parent_ == ancestor) 635 clip_parent_ = ancestor; [all...] |
layer.h | 95 bool HasAncestor(const Layer* ancestor) const; 197 void SetClipParent(Layer* ancestor); 588 // This variable indicates which ancestor layer (if any) whose size,
|
/external/chromium_org/content/renderer/accessibility/ |
blink_ax_tree_source.cc | 51 // Returns true if |ancestor| is the first unignored parent of |child|, 53 // |ancestor| is the *first* ancestor that isn't marked as 55 bool IsParentUnignoredOf(WebAXObject ancestor, 60 return parent.equals(ancestor);
|
/external/chromium_org/ui/aura/ |
window.h | 384 // relative to the nearest ancestor with a layer. 391 // |parent| as well as updating bounds of windows with a layerless ancestor. 477 // Returns the first ancestor (starting at |this|) with a layer. |offset| is 478 // set to the offset from |this| to the first ancestor with a layer. |offset| 488 // of the Layer are relative to the first ancestor with a Layer, where as this
|
/external/llvm/lib/Analysis/ |
TypeBasedAliasAnalysis.cpp | 104 // If neither node is an ancestor of the other and they have the same root, 352 // B is an ancestor of A. 364 // A is an ancestor of B. 373 // Neither node is an ancestor of the other. 438 // Neither node is an ancestor of the other.
|
/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/third_party/WebKit/Source/core/rendering/compositing/ |
CompositingRequirementsUpdater.cpp | 266 // ancestor with m_subtreeIsCompositing set to false. 274 // This layer now acts as the ancestor for kids. 371 // compositing ancestor's backing, and so are still considered for overlap.
|
/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/ |
ScrollingCoordinator.cpp | [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/chromium_org/ash/display/ |
screen_position_controller.cc | 28 // Return true if the window or its ancestor has |kStayInSameRootWindowkey| 165 // b) if the window or its ancestor has kStayInSameRootWindowkey. It's
|