Lines Matching refs:aDescriptor
78 HandlerDescriptor aDescriptor = (HandlerDescriptor)maHandlers.get(i); in update() local
79 aDescriptor.maHandler = aDescriptor.maHandler.createHandler (mxContext); in update()
80 aDescriptor.mnChildCount = in update()
81 aDescriptor.maHandler.getChildCount (this); in update()
156 HandlerDescriptor aDescriptor = (HandlerDescriptor)maHandlers.get(i); in getHandlerDescriptor() local
157 if (aDescriptor.mnChildCount < 0) in getHandlerDescriptor()
158 aDescriptor.mnChildCount = in getHandlerDescriptor()
159 aDescriptor.maHandler.getChildCount (this); in getHandlerDescriptor()
160 return aDescriptor; in getHandlerDescriptor()
168 HandlerDescriptor aDescriptor = getHandlerDescriptor (i); in getChildCount() local
169 nChildCount += aDescriptor.mnChildCount; in getChildCount()
184 HandlerDescriptor aDescriptor = getHandlerDescriptor (i); in getChild() local
185 if (nIndex < aDescriptor.mnChildCount) in getChild()
186 return aDescriptor.maHandler.getChild (this, nIndex); in getChild()
188 nIndex -= aDescriptor.mnChildCount; in getChild()
207 HandlerDescriptor aDescriptor = getHandlerDescriptor (i); in getChildNoCreate() local
208 if (nIndex < aDescriptor.mnChildCount) in getChildNoCreate()
209 return aDescriptor.maHandler.getChildNoCreate (this, nIndex); in getChildNoCreate()
211 nIndex -= aDescriptor.mnChildCount; in getChildNoCreate()
231 HandlerDescriptor aDescriptor = getHandlerDescriptor (i); in removeChild() local
232 if (nIndex < aDescriptor.mnChildCount) in removeChild()
234 bStatus = aDescriptor.maHandler.removeChild (this, nIndex); in removeChild()
235 aDescriptor.mnChildCount = aDescriptor.maHandler.getChildCount (this); in removeChild()
239 nIndex -= aDescriptor.mnChildCount; in removeChild()
256 HandlerDescriptor aDescriptor = getHandlerDescriptor (i); in indexOf() local
257 int nIndex = aDescriptor.maHandler.indexOf (aNode); in indexOf()
261 nBaseIndex += aDescriptor.mnChildCount; in indexOf()
286 HandlerDescriptor aDescriptor = getHandlerDescriptor (i); in getActions() local
287 NodeHandler aHandler = aDescriptor.maHandler; in getActions()
304 HandlerDescriptor aDescriptor = getHandlerDescriptor (i); in performAction() local
305 NodeHandler aHandler = aDescriptor.maHandler; in performAction()
327 HandlerDescriptor aDescriptor = getHandlerDescriptor (i); in addAccessibleChild() local
328 if (aDescriptor.maHandler instanceof AccessibleTreeHandler) in addAccessibleChild()
330 AccessibleTreeHandler aHandler = (AccessibleTreeHandler)aDescriptor.maHandler; in addAccessibleChild()
332 aDescriptor.mnChildCount = aHandler.getChildCount (this); in addAccessibleChild()
355 HandlerDescriptor aDescriptor = getHandlerDescriptor (i); in updateChildren() local
356 if ((class1.isInstance(aDescriptor.maHandler)) in updateChildren()
357 || (class2 !=null && class2.isInstance(aDescriptor.maHandler))) in updateChildren()
359 aDescriptor.maHandler.update(this); in updateChildren()
361 int nChildCount = aDescriptor.maHandler.getChildCount (this); in updateChildren()
362 aDescriptor.mnChildCount = nChildCount; in updateChildren()
367 nOffset += aDescriptor.mnChildCount; in updateChildren()