OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AXID
(Results
1 - 4
of
4
) sorted by null
/external/webkit/WebCore/accessibility/
AXObjectCache.h
53
AXID
axID
;
78
void remove(
AXID
);
99
bool isIDinUse(
AXID
id) const { return m_idsInUse.contains(id); }
100
AXID
platformGenerateAXID() const;
101
AccessibilityObject* objectFromAXID(
AXID
id) const { return m_objects.get(id).get(); }
128
HashMap<
AXID
, RefPtr<AccessibilityObject> > m_objects;
129
HashMap<RenderObject*,
AXID
> m_renderObjectMapping;
133
HashSet<
AXID
> m_idsInUse;
141
AXID
getAXID(AccessibilityObject*)
[
all
...]
AXObjectCache.cpp
80
HashMap<
AXID
, RefPtr<AccessibilityObject> >::iterator end = m_objects.end();
81
for (HashMap<
AXID
, RefPtr<AccessibilityObject> >::iterator it = m_objects.begin(); it != end; ++it) {
153
AXID
axID
= m_renderObjectMapping.get(renderer);
154
ASSERT(!HashTraits<
AXID
>::isDeletedValue(
axID
));
156
if (
axID
)
157
obj = m_objects.get(
axID
).get();
275
void AXObjectCache::remove(
AXID
axID
)
[
all
...]
AccessibilityObject.h
94
typedef unsigned
AXID
;
386
AXID
axObjectID() const { return m_id; }
387
void setAXObjectID(
AXID
axObjectID) { m_id = axObjectID; }
553
AXID
m_id;
/external/webkit/WebCore/accessibility/win/
AXObjectCacheWin.cpp
97
// negate the
AXID
so we know that the caller is passing the ID of an
106
AXID
AXObjectCache::platformGenerateAXID() const
108
static
AXID
lastUsedID = 0;
110
// Generate a new ID. Windows accessibility relies on a positive
AXID
,
112
AXID
objID = lastUsedID;
116
} while (objID == 0 || HashTraits<
AXID
>::isDeletedValue(objID) || m_idsInUse.contains(objID));
Completed in 34 milliseconds