HomeSort by relevance Sort by last modified time
    Searched refs:AXID (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/WebCore/accessibility/
AXObjectCache.h 49 AXID axID;
82 void remove(AXID);
106 bool isIDinUse(AXID id) const { return m_idsInUse.contains(id); }
107 AXID platformGenerateAXID() const;
108 AccessibilityObject* objectFromAXID(AXID id) const { return m_objects.get(id).get(); }
157 HashMap<AXID, RefPtr<AccessibilityObject> > m_objects;
158 HashMap<RenderObject*, AXID> m_renderObjectMapping;
159 HashMap<Widget*, AXID> m_widgetObjectMapping;
164 HashSet<AXID> m_idsInUse
    [all...]
AXObjectCache.cpp 91 HashMap<AXID, RefPtr<AccessibilityObject> >::iterator end = m_objects.end();
92 for (HashMap<AXID, RefPtr<AccessibilityObject> >::iterator it = m_objects.begin(); it != end; ++it) {
163 AXID axID = m_widgetObjectMapping.get(widget);
164 ASSERT(!HashTraits<AXID>::isDeletedValue(axID));
165 if (!axID)
168 return m_objects.get(axID).get();
176 AXID axID = m_renderObjectMapping.get(renderer)
    [all...]
AccessibilityObject.h 92 typedef unsigned AXID;
423 AXID axObjectID() const { return m_id; }
424 void setAXObjectID(AXID axObjectID) { m_id = axObjectID; }
596 AXID m_id;
  /external/webkit/Source/WebCore/accessibility/win/
AXObjectCacheWin.cpp 97 // negate the AXID so we know that the caller is passing the ID of an
110 AXID AXObjectCache::platformGenerateAXID() const
112 static AXID lastUsedID = 0;
114 // Generate a new ID. Windows accessibility relies on a positive AXID,
116 AXID objID = lastUsedID;
120 } while (objID == 0 || HashTraits<AXID>::isDeletedValue(objID) || m_idsInUse.contains(objID));

Completed in 54 milliseconds