Lines Matching refs:aParent
66 public AccessibleTreeNode createChild (AccessibleTreeNode aParent, int nIndex) in createChild() argument
71 AccessibleTreeNode aGrandParent = aParent.getParent(); in createChild()
77 if (aParent instanceof AccTreeNode) in createChild()
79 xContext = ((AccTreeNode)aParent).getContext(); in createChild()
92 aChild = new StringNode ("# table row: " + nRow, aParent); in createChild()
100 aChild = new StringNode ("# table column: " + nCol, aParent); in createChild()
110 aChild = new StringNode ("# table row extend: " + nExt, aParent); in createChild()
120 aChild = new StringNode ("# table column extend: " + nExt, aParent); in createChild()
131 …"# cell name retrieved from table: " + xChild.getAccessibleContext().getAccessibleName(), aParent); in createChild()
142 aChild = new StringNode ("cell is selected: " + bSelected, aParent); in createChild()
152 aChild = new StringNode ("table row is selected: " + bSelected, aParent); in createChild()
162 aChild = new StringNode ("table column is selected: " + bSelected, aParent); in createChild()
166 aChild = new StringNode ("unknown child index " + nIndex, aParent); in createChild()