AXID 283 Source/core/accessibility/AXObject.h void setAXObjectID(AXID axObjectID) { m_id = axObjectID; } AXID 293 Source/core/accessibility/AXObject.h AXID axObjectID() const { return m_id; } AXID 561 Source/core/accessibility/AXObject.h AXID m_id; AXID 84 Source/core/accessibility/AXObjectCache.cpp AXObjectInclusion AXComputedObjectAttributeCache::getIgnored(AXID id) const AXID 86 Source/core/accessibility/AXObjectCache.cpp HashMap<AXID, CachedAXObjectAttributes>::const_iterator it = m_idMapping.find(id); AXID 90 Source/core/accessibility/AXObjectCache.cpp void AXComputedObjectAttributeCache::setIgnored(AXID id, AXObjectInclusion inclusion) AXID 92 Source/core/accessibility/AXObjectCache.cpp HashMap<AXID, CachedAXObjectAttributes>::iterator it = m_idMapping.find(id); AXID 121 Source/core/accessibility/AXObjectCache.cpp HashMap<AXID, RefPtr<AXObject> >::iterator end = m_objects.end(); AXID 122 Source/core/accessibility/AXObjectCache.cpp for (HashMap<AXID, RefPtr<AXObject> >::iterator it = m_objects.begin(); it != end; ++it) { AXID 194 Source/core/accessibility/AXObjectCache.cpp AXID axID = m_widgetObjectMapping.get(widget); AXID 195 Source/core/accessibility/AXObjectCache.cpp ASSERT(!HashTraits<AXID>::isDeletedValue(axID)); AXID 207 Source/core/accessibility/AXObjectCache.cpp AXID axID = m_renderObjectMapping.get(renderer); AXID 208 Source/core/accessibility/AXObjectCache.cpp ASSERT(!HashTraits<AXID>::isDeletedValue(axID)); AXID 220 Source/core/accessibility/AXObjectCache.cpp AXID renderID = node->renderer() ? m_renderObjectMapping.get(node->renderer()) : 0; AXID 221 Source/core/accessibility/AXObjectCache.cpp ASSERT(!HashTraits<AXID>::isDeletedValue(renderID)); AXID 223 Source/core/accessibility/AXObjectCache.cpp AXID nodeID = m_nodeObjectMapping.get(node); AXID 224 Source/core/accessibility/AXObjectCache.cpp ASSERT(!HashTraits<AXID>::isDeletedValue(nodeID)); AXID 248 Source/core/accessibility/AXObjectCache.cpp AXID axID = m_inlineTextBoxObjectMapping.get(inlineTextBox); AXID 249 Source/core/accessibility/AXObjectCache.cpp ASSERT(!HashTraits<AXID>::isDeletedValue(axID)); AXID 501 Source/core/accessibility/AXObjectCache.cpp void AXObjectCache::remove(AXID axID) AXID 527 Source/core/accessibility/AXObjectCache.cpp AXID axID = m_renderObjectMapping.get(renderer); AXID 540 Source/core/accessibility/AXObjectCache.cpp AXID axID = m_nodeObjectMapping.get(node); AXID 555 Source/core/accessibility/AXObjectCache.cpp AXID axID = m_widgetObjectMapping.get(view); AXID 565 Source/core/accessibility/AXObjectCache.cpp AXID axID = m_inlineTextBoxObjectMapping.get(inlineTextBox); AXID 570 Source/core/accessibility/AXObjectCache.cpp AXID AXObjectCache::platformGenerateAXID() const AXID 572 Source/core/accessibility/AXObjectCache.cpp static AXID lastUsedID = 0; AXID 575 Source/core/accessibility/AXObjectCache.cpp AXID objID = lastUsedID; AXID 578 Source/core/accessibility/AXObjectCache.cpp } while (!objID || HashTraits<AXID>::isDeletedValue(objID) || m_idsInUse.contains(objID)); AXID 585 Source/core/accessibility/AXObjectCache.cpp AXID AXObjectCache::getAXID(AXObject* obj) AXID 588 Source/core/accessibility/AXObjectCache.cpp AXID objID = obj->axObjectID(); AXID 607 Source/core/accessibility/AXObjectCache.cpp AXID objID = object->axObjectID(); AXID 610 Source/core/accessibility/AXObjectCache.cpp ASSERT(!HashTraits<AXID>::isDeletedValue(objID)); AXID 50 Source/core/accessibility/AXObjectCache.h AXID axID; AXID 60 Source/core/accessibility/AXObjectCache.h AXObjectInclusion getIgnored(AXID) const; AXID 61 Source/core/accessibility/AXObjectCache.h void setIgnored(AXID, AXObjectInclusion); AXID 74 Source/core/accessibility/AXObjectCache.h HashMap<AXID, CachedAXObjectAttributes> m_idMapping; AXID 109 Source/core/accessibility/AXObjectCache.h void remove(AXID); AXID 152 Source/core/accessibility/AXObjectCache.h bool isIDinUse(AXID id) const { return m_idsInUse.contains(id); } AXID 158 Source/core/accessibility/AXObjectCache.h AXID platformGenerateAXID() const; AXID 159 Source/core/accessibility/AXObjectCache.h AXObject* objectFromAXID(AXID id) const { return m_objects.get(id); } AXID 219 Source/core/accessibility/AXObjectCache.h HashMap<AXID, RefPtr<AXObject> > m_objects; AXID 220 Source/core/accessibility/AXObjectCache.h HashMap<RenderObject*, AXID> m_renderObjectMapping; AXID 221 Source/core/accessibility/AXObjectCache.h HashMap<Widget*, AXID> m_widgetObjectMapping; AXID 222 Source/core/accessibility/AXObjectCache.h HashMap<Node*, AXID> m_nodeObjectMapping; AXID 223 Source/core/accessibility/AXObjectCache.h HashMap<AbstractInlineTextBox*, AXID> m_inlineTextBoxObjectMapping; AXID 229 Source/core/accessibility/AXObjectCache.h HashSet<AXID> m_idsInUse; AXID 237 Source/core/accessibility/AXObjectCache.h AXID getAXID(AXObject*);