HomeSort by relevance Sort by last modified time
    Searched defs:child (Results 526 - 550 of 654) sorted by null

<<21222324252627

  /external/webkit/Tools/DumpRenderTree/gtk/
AccessibilityUIElementGtk.cpp 66 AtkObject* child = atk_object_ref_accessible_child(ATK_OBJECT(m_element), i); local
67 children.append(AccessibilityUIElement(child));
74 AtkObject* child = atk_object_ref_accessible_child(ATK_OBJECT(m_element), i); local
75 elementVector.append(AccessibilityUIElement(child));
  /external/webkit/Tools/DumpRenderTree/win/
AccessibilityUIElementWin.cpp 133 COMPtr<IDispatch> child; local
139 if (FAILED(m_element->get_accChild(vChild, &child)))
141 return COMPtr<IAccessible>(Query, child);
  /frameworks/base/core/java/android/animation/
LayoutTransition.java 556 * For every child in the parent, we create a change animation of the appropriate
558 * target view. We add layout listeners to all child views and listen for changes. For
589 final View child = parent.getChildAt(i); local
592 if (child != newView) {
593 setupChangeAnimation(parent, changeReason, baseAnimator, duration, child);
659 Animator baseAnimator, final long duration, final View child) {
661 // If we already have a listener for this child, then we've already set up the
662 // changing animation we need. Multiple calls for a child may occur when several
665 if (layoutChangeListenerMap.get(child) != null) {
673 anim.setTarget(child);
    [all...]
  /frameworks/base/core/java/com/android/internal/view/menu/
ActionMenuPresenter.java 265 final View child = parent.getChildAt(i); local
266 if (child instanceof MenuView.ItemView &&
267 ((MenuView.ItemView) child).getItemData() == item) {
268 return child;
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarContextView.java 405 View child = mMenuView.getChildAt(i); local
406 child.setScaleY(0);
407 ObjectAnimator a = ObjectAnimator.ofFloat(child, "scaleY", 0, 1);
431 View child = mMenuView.getChildAt(i); local
432 child.setScaleY(0);
433 ObjectAnimator a = ObjectAnimator.ofFloat(child, "scaleY", 0);
  /frameworks/support/v4/java/android/support/v4/view/
ViewPager.java 265 * Used internally to tag special types of child views that should be added as
355 final View child = getChildAt(i); local
356 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
811 View child = getChildAt(i);
812 ii = infoForChild(child);
814 if (child.requestFocus(FOCUS_FORWARD)) {
907 public void addView(View child, int index, ViewGroup.LayoutParams params) {
912 lp.isDecor |= child instanceof Decor;
917 addViewInLayout(child, index, params);
918 child.measure(mChildWidthMeasureSpec, mChildHeightMeasureSpec)
    [all...]
  /libcore/luni/src/main/java/java/util/
TreeMap.java 298 Node<K, V> child = (comparison < 0) ? nearest.left : nearest.right; local
299 if (child != null) {
300 nearest = child;
520 * Rotates the subtree so that its root's right child is the new root.
528 // move the pivot's left child to the root's right
548 * Rotates the subtree so that its root's left child is the new root.
556 // move the pivot's right child to the root's left
839 Node<K, V> child = node.left; local
840 while (child != null) {
841 node = child;
852 Node<K, V> child = node.right; local
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ScheduledThreadPoolExecutor.java 868 int child = (k << 1) + 1; local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
NodeImpl.java 415 Node child; local
416 while ((child = getFirstChild()) != null) {
417 removeChild(child);
530 * element. Since child elements can redefine prefixes, this check is
608 for (Node child = node.getFirstChild(); child != null; child = child.getNextSibling()) {
609 values.add(child);
  /packages/apps/Browser/src/com/android/browser/
NavTabScroller.java 374 final View child = mContentView.getChildAt(i); local
375 adjustViewGap(child, i);
420 View child = mContentView.getChildAt(i); local
421 if (child.getVisibility() == View.VISIBLE) {
422 if ((x >= child.getLeft()) && (x < child.getRight())
423 && (y >= child.getTop()) && (y < child.getBottom())) {
424 return child;
490 View child = mContentView.getChildAt((mPullValue < 0 local
518 View child = mContentView.getChildAt((mPullValue < 0) local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
GLView.java 29 // events. A GLView may have zero or more child GLView and they form a tree
130 // Adds a child to this GLView.
135 // Build parent-child links
148 // Removes a child from this GLView.
391 GLView child = getComponent(i); local
392 if (child.getVisibility() == GLView.VISIBLE) {
393 child.onVisibilityChanged(visibility);
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilPlayer.java 123 ElementTime child = (ElementTime) children.item(i); local
124 ArrayList<TimelineEntry> childTimeline = getTimeline(child, offset, maxOffset);
182 ElementTime child = (ElementTime) children.item(i); local
183 ArrayList<TimelineEntry> childTimeline = getTimeline(child, offset, maxOffset);
186 // Since the child timeline has been sorted, the offset of the last one is the biggest.
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
TextCandidatesViewManager.java 965 int child = lineView.getChildCount(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
ViewMetadataRepository.java 165 Element child = (Element) children.item(1); local
166 String childId = child.getAttributeNS(ANDROID_URI, ATTR_ID);
226 Element child = (Element) childNode; local
227 ViewData view = createViewData(fillTypes, child,
245 Element child, String defaultFqcn, FillPreference defaultFill,
247 String fqcn = child.getAttribute("class"); //$NON-NLS-1$
251 String fill = child.getAttribute("fill"); //$NON-NLS-1$
259 String skip = child.getAttribute("skip"); //$NON-NLS-1$
261 String render = child.getAttribute("render"); //$NON-NLS-1$
265 String displayName = child.getAttribute("name"); //$NON-NLS-1
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeLayoutRefactoring.java 183 // Don't convert a root GestureOverlayView; convert its child. This looks for
184 // gesture overlays, and if found, it generates a new child list where the gesture
332 for (Element child : DomUtilities.getChildren(layout)) {
333 if (skip != null && skip.contains(child)) {
337 if (!child.hasAttributeNS(ANDROID_URI, ATTR_LAYOUT_WIDTH)) {
338 setAttribute(rootEdit, child, ANDROID_URI,
341 if (!child.hasAttributeNS(ANDROID_URI, ATTR_LAYOUT_HEIGHT)) {
342 setAttribute(rootEdit, child, ANDROID_URI,
361 Element child = (Element) node; local
367 String oldName = child.getNodeName()
409 Element child = (Element) node; local
428 Element child = (Element) node; local
526 Element child = (Element) node; local
    [all...]
GridLayoutConverter.java 266 Element child = view.mElement; local
268 List<Attr> attributes = mRefactoring.findLayoutAttributes(child);
274 mRefactoring.removeAttribute(mRootEdit, child, attribute.getNamespaceURI(),
435 private void convert0dipToWrapContent(Element child) {
444 Attr height = child.getAttributeNodeNS(ANDROID_URI, ATTR_LAYOUT_HEIGHT);
449 Attr width = child.getAttributeNodeNS(ANDROID_URI, ATTR_LAYOUT_WIDTH);
468 for (CanvasViewInfo child : info.getChildren()) {
469 CanvasViewInfo result = findViewForElement(child, element);
793 for (CanvasViewInfo child : view.getChildren()) {
794 Element childElement = getElement(child);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasViewInfoTest.java 663 ViewInfo child = new ViewInfo("LinearLayout", childNode, 0, 0, 50, 20); local
664 root.setChildren(Collections.singletonList(child));
666 child.setChildren(Collections.singletonList(grandChild));
709 ViewInfo child = new ViewInfo("ListView", childNode, 0, 0, 320, 430); local
    [all...]
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/
TreeView.java 287 DrawableViewNode child = mSelectedNode.children.get(i);
288 DrawableViewNode topMostChild = child;
296 + child.treeHeight - mSelectedNode.top));
299 rightNode = child;
878 DrawableViewNode child = node.children.get(i); local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Workspace.java 427 protected void onViewAdded(View child) {
428 super.onViewAdded(child);
429 if (!(child instanceof CellLayout)) {
432 CellLayout cl = ((CellLayout) child);
445 View child = dragLayer.getChildAt(i); local
446 if (child instanceof Folder) {
447 Folder folder = (Folder) child;
460 * Adds the specified child in the specified screen. The position and dimension of
461 * the child are defined by x, y, spanX and spanY.
463 * @param child The child to add in one of the workspace's screens
    [all...]
  /frameworks/base/core/java/android/view/
View.java 370 * its children. For example, the parent may measure each child once with
396 * child. A MeasureSpec can be in one of three modes:
399 * of a child view. For example, a LinearLayout may call measure() on its child
401 * tall the child view wants to be given a width of 240 pixels.
403 * child. The child must use this size, and guarantee that all of its
406 * child. The child must gurantee that it and all of its descendants will fit
3716 View child = this; local
    [all...]
  /development/sdk/prebuilt/v7/gridlayout/libs/
android-support-v7-gridlayout.jar 
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
PropertiesTest.java 502 Properties child = new Properties(current); local
503 child.setProperty("child.a.key", "child.a.value");
504 child.setProperty("child.b.key", "child.b.value");
506 names = child.propertyNames();
508 assertEquals("child.b.key", names.nextElement());
511 assertEquals("child.a.key", names.nextElement())
981 Properties child = new Properties(current); local
1016 Properties child = new Properties(current); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemNumber.java 575 * Add a child to the child list.
577 * @param newChild Child to add to child list
579 * @return Child just added to child list
871 // dive down to the lowest right-hand (last) child of that sibling.
890 // dive down to the lowest right child.
891 int child = next; local
893 while (DTM.NULL != child)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBase.java 63 /** First child values, one array element for each node. */
516 * Get the first child for the given node identity.
520 * @return The first child identity, or DTM.NULL.
727 ps.println("First child: DTM.NULL");
729 ps.println("First child: NOTPROCESSED");
731 ps.println("First child: " + firstChild);
868 * Given a node handle, test if it has child nodes.
877 * @return int true if the given node has child nodes.
962 * Given a node handle, get the handle of the node's first child.
967 * @return int DTM node-number of first child, or DTM.NULL to indicate none exists
1026 int child = _firstch(identity); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM2.java 215 * of a basic child iterator, but a specialised iterator is used
279 // %OPT% If the nodeType is element (matching child::*), we only
280 // need to compare the expType with DTM.NTYPES. A child node of
2976 int child = _firstch2(ROOTNODE); local
    [all...]

Completed in 2527 milliseconds

<<21222324252627