Lines Matching refs:aParent
73 public AccessibleTreeNode createChild (AccessibleTreeNode aParent, in createChild() argument
81 xServiceInfo = GetServiceInfo (aParent); in createChild()
85 aParent); in createChild()
88 xServiceInfo = GetServiceInfo (aParent); in createChild()
92 aParent); in createChild()
94 aChild = CreateServiceTree (aParent, xServiceInfo); in createChild()
97 XTypeProvider xTypeProvider = GetTypeProvider (aParent); in createChild()
101 aParent); in createChild()
103 aChild = CreateInterfaceTree (aParent, xTypeProvider); in createChild()
111 private AccessibleTreeNode CreateServiceTree (AccessibleTreeNode aParent, in CreateServiceTree() argument
115 VectorNode aNode = new VectorNode ("Supported Services", aParent); in CreateServiceTree()
119 aNode.addChild (new StringNode (aServiceNames[i], aParent)); in CreateServiceTree()
124 private AccessibleTreeNode CreateInterfaceTree (AccessibleTreeNode aParent, in CreateInterfaceTree() argument
128 VectorNode aNode = new VectorNode ("Supported Interfaces", aParent); in CreateInterfaceTree()
132 aNode.addChild (new StringNode (aTypes[i].getTypeName(), aParent)); in CreateInterfaceTree()