HomeSort by relevance Sort by last modified time
    Searched refs:descendant (Results 1 - 25 of 42) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGText.cpp 124 for (RenderObject* descendant = text; descendant; descendant = descendant->nextInPreOrder(text)) {
125 if (descendant->isSVGInlineText())
126 attributes.append(toRenderSVGInlineText(descendant)->layoutAttributes());
304 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/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...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
TextAutosizer.cpp 190 // descendant text node of the cluster (i.e. the deepest wrapper block that contains all the
227 RenderObject* descendant = nextInPreOrderSkippingDescendantsOfContainers(subtreeRoot, subtreeRoot); local
228 while (descendant) {
229 if (descendant->isText()) {
230 if (localMultiplier != 1 && descendant->style()->textAutosizingMultiplier() == 1) {
231 setMultiplier(descendant, localMultiplier);
232 setMultiplier(descendant->parent(), localMultiplier); // Parent does line spacing.
234 if (RenderListItem* listItemAncestor = getAncestorListItem(descendant)) {
241 } else if (isAutosizingContainer(descendant)) {
242 RenderBlock* descendantBlock = toRenderBlock(descendant);
548 RenderObject* descendant = nextInPreOrderSkippingDescendantsOfContainers(container, container); local
    [all...]
RenderCounter.cpp 563 for (RenderObject* descendant = renderer; descendant; descendant = descendant->nextInPreOrder(renderer))
564 updateCounters(descendant);
RenderBlock.cpp 211 for (TrackedRendererListHashSet::iterator descendant = descendantSet->begin(); descendant != end; ++descendant) {
212 TrackedContainerMap::iterator it = containerMap->find(*descendant);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
FullscreenElementStack.cpp 172 // A descendant browsing context's document has a non-empty fullscreen element stack.
174 for (Frame* descendant = document()->frame() ? document()->frame()->tree()->traverseNext() : 0; descendant; descendant = descendant->tree()->traverseNext()) {
175 if (fullscreenElementFrom(descendant->document())) {
282 // 3. Let descendants be all the doc's descendant browsing context's documents with a non-empty fullscreen
286 for (Frame* descendant = document()->frame() ? document()->frame()->tree()->traverseNext() : 0; descendant; descendant = descendant->tree()->traverseNext())
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
Utilities.java 205 * Given a coordinate relative to the descendant, find the coordinate in a parent view's
208 * @param descendant The descendant to which the passed coordinate is relative.
211 * @param includeRootScroll Whether or not to account for the scroll of the descendant:
212 * sometimes this is relevant as in a child's coordinates within the descendant.
213 * @return The factor by which this descendant is scaled relative to this DragLayer. Caution
217 public static float getDescendantCoordRelativeToParent(View descendant, View root,
223 View v = descendant;
236 if (v0 != descendant || includeRootScroll) {
255 public static float mapCoordInSelfToDescendent(View descendant, View root
    [all...]
DragLayer.java 319 * Determine the rect of the descendant in this DragLayer's coordinates
321 * @param descendant The descendant whose coordinates we want to find.
323 * @return The factor by which this descendant is scaled relative to this DragLayer.
325 public float getDescendantRectRelativeToSelf(View descendant, Rect r) {
328 float scale = getDescendantCoordRelativeToSelf(descendant, mTmpXY);
331 (int) (mTmpXY[0] + scale * descendant.getMeasuredWidth()),
332 (int) (mTmpXY[1] + scale * descendant.getMeasuredHeight()));
342 public float getDescendantCoordRelativeToSelf(View descendant, int[] coord) {
343 return getDescendantCoordRelativeToSelf(descendant, coord, false)
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
DragLayer.java 291 * Determine the rect of the descendant in this DragLayer's coordinates
293 * @param descendant The descendant whose coordinates we want to find.
295 * @return The factor by which this descendant is scaled relative to this DragLayer.
297 public float getDescendantRectRelativeToSelf(View descendant, Rect r) {
300 float scale = getDescendantCoordRelativeToSelf(descendant, mTmpXY);
302 mTmpXY[0] + descendant.getWidth(), mTmpXY[1] + descendant.getHeight());
313 * Given a coordinate relative to the descendant, find the coordinate in this DragLayer's
316 * @param descendant The descendant to which the passed coordinate is relative
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
GLView.java 404 * Gets the bounds of the given descendant that relative to this view.
406 public boolean getBoundsOf(GLView descendant, Rect out) {
409 GLView view = descendant;
417 out.set(xoffset, yoffset, xoffset + descendant.getWidth(),
418 yoffset + descendant.getHeight());
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DOMExtension.js 514 Node.prototype.isDescendant = function(descendant)
516 return !!descendant && descendant.isAncestor(this);
DOMAgent.js 461 * @param {WebInspector.DOMNode} descendant
464 isDescendant: function(descendant)
466 return descendant !== null && descendant.isAncestor(this);
    [all...]
  /frameworks/base/core/java/android/view/
ViewGroup.java 556 * Gets the descendant focusability of this view group. The descendant
574 * Set the descendant focusability of this view group. This defines the relationship
    [all...]
  /external/chromium_org/chrome/test/chromedriver/js/
focus.js 22 // - You cannot focus a descendant of a content editable node
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
HorizontalScrollView.java     [all...]
  /packages/apps/Browser/src/com/android/browser/view/
ScrollerView.java     [all...]
  /frameworks/base/core/java/android/widget/
HorizontalScrollView.java     [all...]
ScrollView.java     [all...]
ListView.java     [all...]
  /external/chromium_org/tools/grit/grit/node/
base.py 79 for descendant in child.ActiveDescendants():
80 yield descendant
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FrameLoader.cpp 788 for (Frame* descendant = m_frame->tree()->traverseNext(m_frame); descendant; descendant = descendant->tree()->traverseNext(m_frame))
789 descendant->navigationScheduler()->startTimer();
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/
xcodeproj_file.py 72 owned by the root object's mainGroup or a descendant group. In most cases, the
406 If recursive is True, recurse into all descendant objects and update their
466 for descendant in descendants:
467 if descendant.id in ids:
468 other = ids[descendant.id]
471 (descendant.id, str(descendant._properties),
473 ids[descendant.id] = descendant
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXObjectCache.cpp 171 if (AccessibilityObject* descendant = obj->activeDescendant())
172 obj = descendant;
956 // descendant and send the AXFocusedUIElementChanged notification.
  /packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
StaggeredGridView.java     [all...]

Completed in 2066 milliseconds

1 2