Lines Matching defs:root

492         public Object obtain(View root, int virtualDescendantId);
494 public void setSource(Object info, View root, int virtualDescendantId);
503 public boolean removeChild(Object info, View root, int virtualDescendantId);
516 public void setParent(Object info, View root, int virtualDescendantId);
581 public void setTraversalBefore(Object info, View root, int virtualDescendantId);
584 public void setTraversalAfter(Object info, View root, int virtualDescendantId);
590 public void setLabelFor(Object info, View root, int virtualDescendantId);
593 public void setLabeledBy(Object info, View root, int virtualDescendantId);
633 public Object obtain(View root, int virtualDescendantId) {
683 public boolean removeChild(Object info, View root, int virtualDescendantId) {
923 public void setSource(Object info, View root, int virtualDescendantId) {
948 public void setParent(Object info, View root, int virtualDescendantId) {
1071 public void setTraversalBefore(Object info, View root, int virtualDescendantId) {
1084 public void setTraversalAfter(Object info, View root, int virtualDescendantId) {
1110 public void setLabelFor(Object info, View root, int virtualDescendantId) {
1123 public void setLabeledBy(Object info, View root, int virtualDescendantId) {
1459 public Object obtain(View root, int virtualDescendantId) {
1460 return AccessibilityNodeInfoCompatJellyBean.obtain(root, virtualDescendantId);
1479 public void setSource(Object info, View root, int virtualDescendantId) {
1480 AccessibilityNodeInfoCompatJellyBean.setSource(info, root, virtualDescendantId);
1519 public void setParent(Object info, View root, int virtualDescendantId) {
1520 AccessibilityNodeInfoCompatJellyBean.setParent(info, root, virtualDescendantId);
1532 public void setLabelFor(Object info, View root, int virtualDescendantId) {
1533 AccessibilityNodeInfoCompatJellybeanMr1.setLabelFor(info, root, virtualDescendantId);
1547 public void setLabeledBy(Object info, View root, int virtualDescendantId) {
1548 AccessibilityNodeInfoCompatJellybeanMr1.setLabeledBy(info, root, virtualDescendantId);
1839 public boolean removeChild(Object info, View root, int virtualDescendantId) {
1840 return AccessibilityNodeInfoCompatApi21.removeChild(info, root, virtualDescendantId);
1856 public void setTraversalBefore(Object info, View root, int virtualDescendantId) {
1857 AccessibilityNodeInfoCompatApi22.setTraversalBefore(info, root, virtualDescendantId);
1871 public void setTraversalAfter(Object info, View root, int virtualDescendantId) {
1872 AccessibilityNodeInfoCompatApi22.setTraversalAfter(info, root, virtualDescendantId);
2276 * @param root The root of the virtual subtree.
2282 public static AccessibilityNodeInfoCompat obtain(View root, int virtualDescendantId) {
2284 IMPL.obtain(root, virtualDescendantId));
2317 * Sets the source to be a virtual descendant of the given <code>root</code>.
2318 * If <code>virtualDescendantId</code> is {@link View#NO_ID} the root
2332 * @param root The root of the virtual subtree.
2335 public void setSource(View root, int virtualDescendantId) {
2336 IMPL.setSource(mInfo, root, virtualDescendantId);
2423 * Adds a virtual child which is a descendant of the given <code>root</code>.
2424 * If <code>virtualDescendantId</code> is {@link View#NO_ID} the root
2433 * @param root The root of the virtual subtree.
2436 public void addChild(View root, int virtualDescendantId) {
2437 IMPL.addChild(mInfo, root, virtualDescendantId);
2460 * <code>root</code>. If the child was not previously added to the node,
2463 * @param root The root of the virtual subtree.
2468 public boolean removeChild(View root, int virtualDescendantId) {
2469 return IMPL.removeChild(mInfo, root, virtualDescendantId);
2594 * info is the root of the traversed tree.
2645 * Sets the parent to be a virtual descendant of the given <code>root</code>.
2646 * If <code>virtualDescendantId</code> equals to {@link View#NO_ID} the root
2660 * @param root The root of the virtual subtree.
2663 public void setParent(View root, int virtualDescendantId) {
2664 IMPL.setParent(mInfo, root, virtualDescendantId);
3321 * is {@link View#NO_ID} the root is set as the labeled.
3329 * @param root The root whose virtual descendant serves as a label.
3332 public void setLabelFor(View root, int virtualDescendantId) {
3333 IMPL.setLabelFor(mInfo, root, virtualDescendantId);
3364 * is {@link View#NO_ID} the root is set as the label.
3377 * @param root The root whose virtual descendant labels this node's source.
3380 public void setLabeledBy(View root, int virtualDescendantId) {
3381 IMPL.setLabeledBy(mInfo, root, virtualDescendantId);
3598 * The successor is a virtual descendant of the given <code>root</code>. If
3599 * <code>virtualDescendantId</code> equals to {@link View#NO_ID} the root is set
3613 * @param root The root of the virtual subtree.
3616 public void setTraversalBefore(View root, int virtualDescendantId) {
3617 IMPL.setTraversalBefore(mInfo, root, virtualDescendantId);
3656 * the root is set as the predecessor.
3669 * @param root The root of the virtual subtree.
3672 public void setTraversalAfter(View root, int virtualDescendantId) {
3673 IMPL.setTraversalAfter(mInfo, root, virtualDescendantId);