Lines Matching refs:obj
69 AccessibilityObject* obj = (*it).second.get(); in ~AXObjectCache() local
70 detachWrapper(obj); in ~AXObjectCache()
71 obj->detach(); in ~AXObjectCache()
72 removeAXID(obj); in ~AXObjectCache()
81 AccessibilityObject* obj = 0; in get() local
86 obj = m_objects.get(axID).get(); in get()
88 return obj; in get()
104 AccessibilityObject* obj = get(renderer); in getOrCreate() local
106 if (!obj) { in getOrCreate()
137 obj = newObj.get(); in getOrCreate()
139 getAXID(obj); in getOrCreate()
141 m_renderObjectMapping.set(renderer, obj->axObjectID()); in getOrCreate()
142 m_objects.set(obj->axObjectID(), obj); in getOrCreate()
143 attachWrapper(obj); in getOrCreate()
146 return obj; in getOrCreate()
151 RefPtr<AccessibilityObject> obj = 0; in getOrCreate() local
156 obj = AccessibilityListBoxOption::create(); in getOrCreate()
159 obj = AccessibilityImageMapLink::create(); in getOrCreate()
162 obj = AccessibilityTableColumn::create(); in getOrCreate()
165 obj = AccessibilityTableHeaderContainer::create(); in getOrCreate()
168 obj = AccessibilitySliderThumb::create(); in getOrCreate()
171 obj = 0; in getOrCreate()
174 if (obj) in getOrCreate()
175 getAXID(obj.get()); in getOrCreate()
179 m_objects.set(obj->axObjectID(), obj); in getOrCreate()
180 attachWrapper(obj.get()); in getOrCreate()
181 return obj.get(); in getOrCreate()
190 AccessibilityObject* obj = m_objects.get(axID).get(); in remove() local
191 if (!obj) in remove()
194 detachWrapper(obj); in remove()
195 obj->detach(); in remove()
196 removeAXID(obj); in remove()
216 AXID AXObjectCache::getAXID(AccessibilityObject* obj) in getAXID() argument
219 AXID objID = obj->axObjectID(); in getAXID()
233 obj->setAXObjectID(objID); in getAXID()
238 void AXObjectCache::removeAXID(AccessibilityObject* obj) in removeAXID() argument
240 if (!obj) in removeAXID()
243 AXID objID = obj->axObjectID(); in removeAXID()
248 obj->setAXObjectID(0); in removeAXID()
261 AccessibilityObject* obj = m_objects.get(axID).get(); in childrenChanged() local
262 if (obj) in childrenChanged()
263 obj->childrenChanged(); in childrenChanged()
272 AccessibilityObject* obj = m_notificationsToPost[i].first.get(); in notificationPostTimerFired() local
276 if (obj->isAccessibilityRenderObject()) { in notificationPostTimerFired()
277 AccessibilityRenderObject* renderObj = static_cast<AccessibilityRenderObject*>(obj); in notificationPostTimerFired()
284 postPlatformNotification(obj, m_notificationsToPost[i].second); in notificationPostTimerFired()
300 RefPtr<AccessibilityObject> obj = get(renderer); in postNotification() local
301 while (!obj && renderer) { in postNotification()
303 obj = get(renderer); in postNotification()
309 if (obj && !postToElement) in postNotification()
310 obj = obj->observableObject(); in postNotification()
313 if (!obj && document) in postNotification()
314 obj = get(document->renderer()); in postNotification()
316 if (!obj) in postNotification()
319 m_notificationsToPost.append(make_pair(obj, message)); in postNotification()
335 AccessibilityObject* obj = getOrCreate(renderer); in handleActiveDescendantChanged() local
336 if (obj) in handleActiveDescendantChanged()
337 obj->handleActiveDescendantChanged(); in handleActiveDescendantChanged()
344 AccessibilityObject* obj = getOrCreate(renderer); in handleAriaRoleChanged() local
345 if (obj && obj->isAccessibilityRenderObject()) in handleAriaRoleChanged()
346 static_cast<AccessibilityRenderObject*>(obj)->updateAccessibilityRole(); in handleAriaRoleChanged()
398 RefPtr<AccessibilityObject> obj = cache->getOrCreate(renderer); in textMarkerDataForVisiblePosition() local
400 textMarkerData.axID = obj.get()->axObjectID(); in textMarkerDataForVisiblePosition()