HomeSort by relevance Sort by last modified time
    Searched refs:AXObjectCache (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXObjectCache.cpp 31 #include "core/accessibility/AXObjectCache.h"
108 AXObjectCache::AXObjectCache(Document& document)
110 , m_notificationPostTimer(this, &AXObjectCache::notificationPostTimerFired)
115 AXObjectCache::~AXObjectCache()
128 AXObject* AXObjectCache::focusedImageMapUIElement(HTMLAreaElement* areaElement)
139 AXObject* axRenderImage = areaElement->document().axObjectCache()->getOrCreate(imageElement);
157 AXObject* AXObjectCache::focusedUIElementForPage(const Page* page)
175 AXObject* obj = focusedNode->document().axObjectCache()->getOrCreate(focusedNode)
    [all...]
AXMenuListPopup.cpp 30 #include "core/accessibility/AXObjectCache.h"
73 AXObject* object = document()->axObjectCache()->getOrCreate(MenuListOptionRole);
115 AXObjectCache* cache = axObjectCache();
142 AXObjectCache* cache = axObjectCache();
145 cache->postNotification(child.get(), document(), AXObjectCache::AXFocusedUIElementChanged, true, PostSynchronously);
146 cache->postNotification(child.get(), document(), AXObjectCache::AXMenuListItemSelected, true, PostSynchronously);
AXMenuList.cpp 30 #include "core/accessibility/AXObjectCache.h"
59 AXObjectCache* cache = m_renderer->document().axObjectCache();
101 AXObjectCache* cache = document->axObjectCache();
114 cache->postNotification(this, document.get(), AXObjectCache::AXMenuListValueChanged, true, PostSynchronously);
AXObjectCache.h 80 class AXObjectCache {
81 WTF_MAKE_NONCOPYABLE(AXObjectCache); WTF_MAKE_FAST_ALLOCATED;
83 explicit AXObjectCache(Document&);
84 ~AXObjectCache();
225 Timer<AXObjectCache> m_notificationPostTimer;
227 void notificationPostTimerFired(Timer<AXObjectCache>*);
AXInlineTextBox.h 61 AXObjectCache* m_axObjectCache;
AXARIAGrid.cpp 32 #include "core/accessibility/AXObjectCache.h"
95 AXObjectCache* axCache = m_renderer->document().axObjectCache();
AXSlider.cpp 32 #include "core/accessibility/AXObjectCache.h"
86 AXObjectCache* cache = m_renderer->document().axObjectCache();
112 return axObjectCache()->getOrCreate(m_renderer);
AXNodeObject.cpp 33 #include "core/accessibility/AXObjectCache.h"
154 axObjectCache()->postNotification(node(), AXObjectCache::AXValueChanged, true);
374 AXObject* menuItemAX = axObjectCache()->getOrCreate(menuItem);
906 return axObjectCache()->getOrCreate(toHTMLFieldSetElement(node())->legend());
910 return axObjectCache()->getOrCreate(label);
    [all...]
AXNodeObject.h 38 class AXObjectCache;
AXObject.cpp 32 #include "core/accessibility/AXObjectCache.h"
159 AXObjectCache* AXObject::axObjectCache() const
163 return doc->axObjectCache();
257 AXObjectCache* cache = axObjectCache();
486 return axObjectCache()->getOrCreate(widget)->accessibilityHitTest(IntPoint(point - widget->frameRect().location()));
520 AXObjectCache* cache = node->document().axObjectCache();
564 return AXObjectCache::focusedUIElementForPage(page)
    [all...]
AXRenderObject.h 39 class AXObjectCache;
AXObject.h 43 class AXObjectCache;
287 // unique ID, then added to AXObjectCache, and finally init() must
297 // The AXObjectCache that owns this object, and its unique ID within this cache.
298 AXObjectCache* axObjectCache() const;
  /external/chromium_org/third_party/WebKit/Source/web/
AssertMatchingEnums.cpp 38 #include "core/accessibility/AXObjectCache.h"
145 COMPILE_ASSERT_MATCHING_ENUM(WebAXEventActiveDescendantChanged, AXObjectCache::AXActiveDescendantChanged);
146 COMPILE_ASSERT_MATCHING_ENUM(WebAXEventAlert, AXObjectCache::AXAlert);
147 COMPILE_ASSERT_MATCHING_ENUM(WebAXEventAriaAttributeChanged, AXObjectCache::AXAriaAttributeChanged);
148 COMPILE_ASSERT_MATCHING_ENUM(WebAXEventAutocorrectionOccured, AXObjectCache::AXAutocorrectionOccured);
149 COMPILE_ASSERT_MATCHING_ENUM(WebAXEventBlur, AXObjectCache::AXBlur);
150 COMPILE_ASSERT_MATCHING_ENUM(WebAXEventCheckedStateChanged, AXObjectCache::AXCheckedStateChanged);
151 COMPILE_ASSERT_MATCHING_ENUM(WebAXEventChildrenChanged, AXObjectCache::AXChildrenChanged);
152 COMPILE_ASSERT_MATCHING_ENUM(WebAXEventFocus, AXObjectCache::AXFocusedUIElementChanged);
153 COMPILE_ASSERT_MATCHING_ENUM(WebAXEventHide, AXObjectCache::AXHide)
    [all...]
WebPagePopupImpl.cpp 161 virtual void postAccessibilityNotification(AXObject* obj, AXObjectCache::AXNotification notification) OVERRIDE
244 if (AXObjectCache* cache = m_popupClient->ownerElement().document().existingAXObjectCache())
273 AXObjectCache* cache = document->axObjectCache();
WebDocument.cpp 38 #include "core/accessibility/AXObjectCache.h"
302 AXObjectCache* cache = document->axObjectCache();
309 AXObjectCache* cache = document->axObjectCache();
ChromeClientImpl.h 151 virtual void postAccessibilityNotification(AXObject*, AXObjectCache::AXNotification) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderObjectChildList.cpp 30 #include "core/accessibility/AXObjectCache.h"
116 if (AXObjectCache* cache = owner->document().existingAXObjectCache())
168 if (AXObjectCache* cache = owner->document().axObjectCache())
RenderWidget.cpp 27 #include "core/accessibility/AXObjectCache.h"
59 if (AXObjectCache* cache = document().existingAXObjectCache()) {
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLDialogElement.cpp 30 #include "core/accessibility/AXObjectCache.h"
90 if (AXObjectCache* cache = topDocument.axObjectCache())
HTMLFrameOwnerElement.cpp 26 #include "core/accessibility/AXObjectCache.h"
230 if (AXObjectCache* cache = document().existingAXObjectCache())
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TreeScopeAdopter.cpp 28 #include "core/accessibility/AXObjectCache.h"
52 AXObjectCache* axObjectCache = oldDocument.existingAXObjectCache();
60 if (axObjectCache)
61 axObjectCache->remove(node);
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
HitRegion.cpp 8 #include "core/accessibility/AXObjectCache.h"
26 AXObjectCache* axObjectCache = m_control->document().existingAXObjectCache();
27 if (!axObjectCache)
40 axObjectCache->setCanvasObjectBounds(m_control.get(), elementRect);
  /external/chromium_org/third_party/WebKit/Source/core/page/
ChromeClient.h 25 #include "core/accessibility/AXObjectCache.h"
202 virtual void postAccessibilityNotification(AXObject*, AXObjectCache::AXNotification) { }
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
RangeInputType.cpp 38 #include "core/accessibility/AXObjectCache.h"
226 if (AXObjectCache* cache = element().document().existingAXObjectCache())
227 cache->postNotification(&element(), AXObjectCache::AXValueChanged, true);
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.h 40 class AXObjectCache;
426 AXObjectCache* axObjectCache() const;

Completed in 624 milliseconds

1 2 3