Home | History | Annotate | Download | only in dom

Lines Matching defs:axObjectCache

43 #include "core/accessibility/AXObjectCache.h"
2296 AXObjectCache* Document::existingAXObjectCache() const
2298 if (!AXObjectCache::accessibilityEnabled())
2309 AXObjectCache* Document::axObjectCache() const
2311 if (!AXObjectCache::accessibilityEnabled())
2314 // The only document that actually has a AXObjectCache is the top-level
2320 // If the document has already been detached, do not make a new axObjectCache.
2326 topDocument.m_axObjectCache = adoptPtr(new AXObjectCache(topDocument));
2613 if (frame() && renderView() && AXObjectCache::accessibilityEnabled()) {
2618 if (AXObjectCache* cache = axObjectCache()) {
2621 cache->postNotification(renderView(), AXObjectCache::AXLoadComplete, true);
2625 cache->postNotification(renderView(), AXObjectCache::AXLayoutComplete, true);
3672 if (AXObjectCache* cache = axObjectCache())