Home
last modified time | relevance | path

Searched refs:m_axObjectCache (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/accessibility/
DAXInlineTextBox.cpp46 m_axObjectCache = renderText->document().axObjectCache(); in AXInlineTextBox()
51 if (m_axObjectCache && m_inlineTextBox) in ~AXInlineTextBox()
52 m_axObjectCache->remove(m_inlineTextBox.get()); in ~AXInlineTextBox()
67 m_axObjectCache = 0; in detach()
127 if (!m_inlineTextBox || !m_axObjectCache) in parentObject()
131 return m_axObjectCache->getOrCreate(renderText); in parentObject()
DAXInlineTextBox.h61 AXObjectCache* m_axObjectCache; variable
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocument.cpp2130 ASSERT(!m_axObjectCache || this != &axObjectCacheOwner()); in attach()
2243 ASSERT(!top.m_axObjectCache); in axObjectCacheOwner()
2254 m_axObjectCache.clear(); in clearAXObjectCache()
2264 return axObjectCacheOwner().m_axObjectCache.get(); in existingAXObjectCache()
2283 ASSERT(&cacheOwner == this || !m_axObjectCache); in axObjectCache()
2284 if (!cacheOwner.m_axObjectCache) in axObjectCache()
2285 cacheOwner.m_axObjectCache = adoptPtr(new AXObjectCache(cacheOwner)); in axObjectCache()
2286 return cacheOwner.m_axObjectCache.get(); in axObjectCache()
5749 if (m_axObjectCache) in clearWeakMembers()
5750 m_axObjectCache->clearWeakMembers(visitor); in clearWeakMembers()
DDocument.h1249 OwnPtr<AXObjectCache> m_axObjectCache; variable