/external/chromium/chrome/browser/resources/bookmark_manager/js/ |
bmm.js | 11 * @param {!BookmarkTreeNode} descendant 12 * @return {boolean} Whether the parent contains the descendant. 14 function contains(parent, descendant) { 15 if (descendant.parentId == parent.id) 18 var parentTreeItem = bmm.treeLookup[descendant.parentId];
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
SubtreeLayoutScope.cpp | 61 void SubtreeLayoutScope::setNeedsLayout(RenderObject* descendant) 63 ASSERT(descendant->isDescendantOf(m_root)); 64 descendant->setNeedsLayout(MarkContainingBlockChain, this); 67 void SubtreeLayoutScope::setChildNeedsLayout(RenderObject* descendant) 69 ASSERT(descendant->isDescendantOf(m_root)); 70 descendant->setChildNeedsLayout(MarkContainingBlockChain, this);
|
TextAutosizer.cpp | 207 // descendant text node of the cluster (i.e. the deepest wrapper block that contains all the 247 RenderObject* descendant = nextInPreOrderSkippingDescendantsOfContainers(subtreeRoot, subtreeRoot); local 248 while (descendant) { 249 if (descendant->isText()) { 250 if (localMultiplier != 1 && descendant->style()->textAutosizingMultiplier() == 1) { 251 setMultiplier(descendant, localMultiplier); 252 setMultiplier(descendant->parent(), localMultiplier); // Parent does line spacing. 254 if (RenderListItem* listItemAncestor = getAncestorListItem(descendant)) { 261 } else if (isAutosizingContainer(descendant)) { 262 RenderBlock* descendantBlock = toRenderBlock(descendant); 571 RenderObject* descendant = nextInPreOrderSkippingDescendantsOfContainers(container, container); local [all...] |
SubtreeLayoutScope.h | 54 void setNeedsLayout(RenderObject* descendant); 55 void setChildNeedsLayout(RenderObject* descendant);
|
/external/guava/guava-tests/test/com/google/common/collect/ |
FauxveridesTest.java | 108 private void doHasAllFauxveridesTest(Class<?> descendant, Class<?> ancestor) { 110 getAllRequiredToFauxveride(descendant, ancestor); 111 Set<MethodSignature> found = getAllFauxveridden(descendant, ancestor); 119 Class<?> descendant, Class<?> ancestor) { 124 Class<?> descendant, Class<?> ancestor) { 125 return getPublicStaticMethodsBetween(descendant, ancestor); 129 Class<?> descendant, Class<?> ancestor) { 131 for (Class<?> clazz : getClassesBetween(descendant, ancestor)) { 150 /** [descendant, ancestor) */ 152 Class<?> descendant, Class<?> ancestor) [all...] |
/frameworks/base/docs/html/training/implementing-navigation/ |
descendant.jd | 1 page.title=Implementing Descendant Navigation 22 <li><a href="{@docRoot}training/design-navigation/descendant-lateral.html">Providing Descendant and Lateral Navigation</a></li> 39 <p><em>Descendant navigation</em> is navigation down the application's information hierarchy. This is described in <a href="{@docRoot}training/design-navigation/descendant-lateral.html">Designing Effective Navigation</a> and also covered in <a href="{@docRoot}design/patterns/app-structure.html">Android Design: Application Structure</a>.</p> 41 <p>Descendant navigation is usually implemented using {@link android.content.Intent} objects and {@link android.content.Context#startActivity startActivity()}, or by adding fragments to an activity using {@link android.app.FragmentTransaction} objects. This lesson covers other interesting cases that arise when implementing descendant navigation.</p> 45 <p>In a <em>master/detail</em> navigation flow, a <em>master</em> screen contains a list of items in a collection, and a <em>detail</em> screen shows detailed information about a specific item within that collection. Implementing navigation from the master screen to the detail screen is one form of descendant navigation.</p> 47 <p>Handset touchscreens are most suitable for displaying one screen at a time (either the master or the detail screen); this concern is further discussed in <a href="{@docRoot}training/design-navigation/multiple-sizes.html">Planning for Multiple Touchscreen Sizes</a>. Descendant navigation in this case is often implemented using an {@link android.content.Intent} that starts an activity representing the detail screen. On the other hand, tablet displays, especially when viewed in the landscape orientation, are best suited for showing multiple content panes at a time: the master on the left, and the detail to the right). Here, descendant navigation is usually implemented using a {@link android.app.FragmentTransaction} that adds, remov (…) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
RenderSVGText.cpp | 125 for (RenderObject* descendant = text; descendant; descendant = descendant->nextInPreOrder(text)) { 126 if (descendant->isSVGInlineText()) 127 attributes.append(toRenderSVGInlineText(descendant)->layoutAttributes()); 302 for (RenderObject* descendant = text; descendant; descendant = descendant->nextInPreOrder(text)) [all...] |
/frameworks/base/core/tests/coretests/src/android/widget/scroll/arrowscroll/ |
ButtonsWithTallTextViewInBetweenTest.java | 54 private int getTopWithinScrollView(View descendant) { 55 descendant.getDrawingRect(mTempRect); 56 mScrollView.offsetDescendantRectToMyCoords(descendant, mTempRect); 60 private int getBottomWithinScrollView(View descendant) { 61 descendant.getDrawingRect(mTempRect); 62 mScrollView.offsetDescendantRectToMyCoords(descendant, mTempRect);
|
/external/chromium_org/tools/ |
multi-process-rss.py | 18 # and 3) all descendant processes of process 23456. 49 descendant = [] 51 descendant.append(child.pid) 52 descendant.extend(_recursive_get_children(child.pid)) 53 return descendant
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ |
Axis.java | 25 * <p>The ancestor, descendant, following, preceding and self axes partition a 58 * The descendant axis contains the descendants of the context node; 59 * a descendant is a child or a child of a child and so on; thus the 60 * descendant axis never contains attribute or namespace nodes. 62 public static final int DESCENDANT = 4; 65 * The descendant-or-self axis contains the context node and the 170 false, // descendant 171 false, // descendant-or-self 189 "descendant", // 4 190 "descendant-or-self", // [all...] |
/external/chromium_org/chrome/third_party/chromevox/extensions/searchvox/ |
util.js | 61 * Returns the id of a node's active descendant 63 * @return {?string} The id of the active descendant. 79 * If the node is an object with an active descendant, returns the 80 * descendant node. 82 * This function will fully resolve an active descendant chain. If a circular 85 * @param {Node} targetNode The node to get descendant information for. 86 * @return {Node} The descendant node or null if no node exists.
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
elementgetelementsbytagname.java | 32 * of all descendant Elements with the given tag name. 34 * Create a NodeList of all the descendant elements 37 * "0" since there are not any descendant elements
|
hc_elementgetelementsbytagname.java | 32 * of all descendant Elements with the given tag name. 34 * Create a NodeList of all the descendant elements 37 * "0" since there are not any descendant elements
|
elementgetelementsbytagnamenomatch.java | 32 * of all descendant Elements with the given tag name. 33 * Create a NodeList of all the descendant elements
|
hc_elementgetelementsbytagnamenomatch.java | 32 * of all descendant Elements with the given tag name. 33 * Create a NodeList of all the descendant elements
|
/external/chromium_org/third_party/WebKit/PerformanceTests/Parser/ |
query-selector-all-class-deep.html | 21 description: "This benchmark tests querySelectorAll() for an element that appears in the depths in the document, and is a descendant of an element with a given class name",
|
query-selector-all-id-deep.html | 21 description: "This benchmark tests querySelectorAll() for an element that appears in the depths in the document, and is a descendant of an element with a given id",
|
query-selector-id-deep.html | 21 description: "This benchmark tests querySelector() for an element that appears in the depths in the document, and is a descendant of an element with a given id",
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
Utilities.java | 221 * Given a coordinate relative to the descendant, find the coordinate in a parent view's 224 * @param descendant The descendant to which the passed coordinate is relative. 227 * @param includeRootScroll Whether or not to account for the scroll of the descendant: 228 * sometimes this is relevant as in a child's coordinates within the descendant. 229 * @return The factor by which this descendant is scaled relative to this DragLayer. Caution 233 public static float getDescendantCoordRelativeToParent(View descendant, View root, 239 View v = descendant; 252 if (v0 != descendant || includeRootScroll) { 271 public static float mapCoordInSelfToDescendent(View descendant, View root [all...] |
DragLayer.java | 329 * Determine the rect of the descendant in this DragLayer's coordinates 331 * @param descendant The descendant whose coordinates we want to find. 333 * @return The factor by which this descendant is scaled relative to this DragLayer. 335 public float getDescendantRectRelativeToSelf(View descendant, Rect r) { 338 float scale = getDescendantCoordRelativeToSelf(descendant, mTmpXY); 341 (int) (mTmpXY[0] + scale * descendant.getMeasuredWidth()), 342 (int) (mTmpXY[1] + scale * descendant.getMeasuredHeight())); 352 public float getDescendantCoordRelativeToSelf(View descendant, int[] coord) { 353 return getDescendantCoordRelativeToSelf(descendant, coord, false) [all...] |
/frameworks/base/core/java/android/view/accessibility/ |
AccessibilityNodeProvider.java | 74 * i.e. a descendant of the host View, with the given <code>virtualViewId</code> 77 * A virtual descendant is an imaginary View that is reported as a part of the view 89 * @return A populated {@link AccessibilityNodeInfo} for a virtual descendant or the 100 * Performs an accessibility action on a virtual view, i.e. a descendant of the 119 * containment. The search is relative to the virtual view, i.e. a descendant of the 137 * Find the virtual view, i.e. a descendant of the host View, that has the
|
/frameworks/support/v4/java/android/support/v4/view/accessibility/ |
AccessibilityNodeProviderCompat.java | 174 * i.e. a descendant of the host View, with the given <code>virtualViewId</code> 177 * A virtual descendant is an imaginary View that is reported as a part of the view 189 * @return A populated {@link AccessibilityNodeInfoCompat} for a virtual descendant 199 * Performs an accessibility action on a virtual view, i.e. a descendant of the 217 * containment. The search is relative to the virtual view, i.e. a descendant of the 235 * Find the virtual view, i.e. a descendant of the host View, that has the
|
/frameworks/base/docs/html/training/design-navigation/ |
descendant-lateral.jd | 1 page.title=Providing Descendant and Lateral Navigation 37 <p>One way of providing access to the full range of an application's screens is to expose hierarchical navigation. In this lesson we discuss <em>descendant navigation</em>, allowing users to descend 'down' a screen hierarchy into a child screen, and <em>lateral navigation</em>, allowing users to access sibling screens.</p> 40 <img src="{@docRoot}images/training/app-navigation-descendant-lateral-desc.png" 41 alt="Descendant and lateral navigation" id="figure-desc"> 43 <p class="img-caption"><strong>Figure 1.</strong> Descendant and lateral navigation.</p> 49 <img src="{@docRoot}images/training/app-navigation-descendant-lateral-children.png" 55 <p>Descendant and lateral navigation can be provided using lists, tabs, and other user interface patterns. <em>User interface patterns</em>, much like software design patterns, are generalized, common solutions to recurring interaction design problems. We explore a few common lateral navigation patterns in the sections below.</p> 69 <img src="{@docRoot}images/training/app-navigation-descendant-lateral-buttons.png" 92 <img src="{@docRoot}images/training/app-navigation-descendant-lateral-lists.png" 114 <img src="{@docRoot}images/training/app-navigation-descendant-lateral-tabs.png [all...] |
/external/chromium_org/chrome/browser/resources/bookmark_manager/js/ |
bmm.js | 11 * that, we'll remove useless documentations for |parent| and |descendant|. 14 * @param {!BookmarkTreeNode} descendant . 15 * @return {boolean} Whether the parent contains the descendant. 17 function contains(parent, descendant) { 18 if (descendant.parentId == parent.id) 21 var parentTreeItem = bmm.treeLookup[descendant.parentId];
|
/external/chromium_org/chrome/browser/resources/enhanced_bookmark_manager/js/ |
bmm.js | 11 * that, we'll remove useless documentations for |parent| and |descendant|. 14 * @param {!BookmarkTreeNode} descendant . 15 * @return {boolean} Whether the parent contains the descendant. 17 function contains(parent, descendant) { 18 if (descendant.parentId == parent.id) 21 var parentTreeItem = bmm.treeLookup[descendant.parentId];
|