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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXObjectCache.cpp 31 #include "core/accessibility/AXObjectCache.h"
107 bool AXObjectCache::gAccessibilityEnabled = false;
108 bool AXObjectCache::gInlineTextBoxAccessibility = false;
110 AXObjectCache::AXObjectCache(const Document* doc)
111 : m_notificationPostTimer(this, &AXObjectCache::notificationPostTimerFired)
117 AXObjectCache::~AXObjectCache()
130 AXObject* AXObjectCache::focusedImageMapUIElement(HTMLAreaElement* areaElement)
141 AXObject* axRenderImage = areaElement->document().axObjectCache()->getOrCreate(imageElement)
    [all...]
AXMenuListPopup.cpp 30 #include "core/accessibility/AXObjectCache.h"
72 AXObject* object = document()->axObjectCache()->getOrCreate(MenuListOptionRole);
114 AXObjectCache* cache = axObjectCache();
139 AXObjectCache* cache = axObjectCache();
142 cache->postNotification(child.get(), document(), AXObjectCache::AXFocusedUIElementChanged, true, PostSynchronously);
143 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 79 class AXObjectCache {
80 WTF_MAKE_NONCOPYABLE(AXObjectCache); WTF_MAKE_FAST_ALLOCATED;
82 explicit AXObjectCache(const Document*);
83 ~AXObjectCache();
220 Timer<AXObjectCache> m_notificationPostTimer;
222 void notificationPostTimerFired(Timer<AXObjectCache>*);
AXInlineTextBox.h 61 AXObjectCache* m_axObjectCache;
AXARIAGrid.cpp 32 #include "core/accessibility/AXObjectCache.h"
96 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 32 #include "core/accessibility/AXObjectCache.h"
151 axObjectCache()->postNotification(node(), AXObjectCache::AXValueChanged, true);
362 AXObject* menuItemAX = axObjectCache()->getOrCreate(menuItem);
901 return axObjectCache()->getOrCreate(toHTMLFieldSetElement(node())->legend());
905 return axObjectCache()->getOrCreate(label);
    [all...]
AXNodeObject.h 38 class AXObjectCache;
AXRenderObject.h 39 class AXObjectCache;
AXObject.h 43 class AXObjectCache;
280 // unique ID, then added to AXObjectCache, and finally init() must
290 // The AXObjectCache that owns this object, and its unique ID within this cache.
291 AXObjectCache* axObjectCache() const;
AXObject.cpp 32 #include "core/accessibility/AXObjectCache.h"
159 AXObjectCache* AXObject::axObjectCache() const
163 return doc->axObjectCache();
245 AXComputedObjectAttributeCache* attributeCache = axObjectCache()->computedObjectAttributeCache();
493 return axObjectCache()->getOrCreate(widget)->accessibilityHitTest(IntPoint(point - widget->frameRect().location()));
527 AXObjectCache* cache = node->document().axObjectCache();
571 return AXObjectCache::focusedUIElementForPage(page);
824 axObjectCache()->childrenChanged(parentObject())
    [all...]
AXRenderObject.cpp 35 #include "core/accessibility/AXObjectCache.h"
949 AXObject* obj = axObjectCache()->getOrCreate(target);
963 AXObjectCache* cache = axObjectCache();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
AssertMatchingEnums.cpp 58 #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...]
WebAXObject.cpp 38 #include "core/accessibility/AXObjectCache.h"
78 AXObjectCache::enableAccessibility();
84 return AXObjectCache::accessibilityEnabled();
90 AXObjectCache::setInlineTextBoxAccessibility(true);
95 m_private->axObjectCache()->startCachingComputedObjectAttributesUntilTreeMutates();
100 m_private->axObjectCache()->stopCachingComputedObjectAttributes();
ChromeClientImpl.h 165 virtual void postAccessibilityNotification(WebCore::AXObject*, WebCore::AXObjectCache::AXNotification);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderObjectChildList.cpp 30 #include "core/accessibility/AXObjectCache.h"
108 if (AXObjectCache* cache = owner->document().existingAXObjectCache())
160 if (AXObjectCache* cache = owner->document().axObjectCache())
RenderWidget.cpp 27 #include "core/accessibility/AXObjectCache.h"
105 if (AXObjectCache* cache = document().existingAXObjectCache()) {
205 if (AXObjectCache* cache = document().existingAXObjectCache())
RenderMenuList.cpp 31 #include "core/accessibility/AXObjectCache.h"
133 if (AXObjectCache* cache = document().existingAXObjectCache())
370 if (!AXObjectCache::accessibilityEnabled() || !document().existingAXObjectCache())
381 if (AXMenuList* menuList = toAXMenuList(document().axObjectCache()->get(this)))
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLDialogElement.cpp 30 #include "core/accessibility/AXObjectCache.h"
89 if (AXObjectCache* cache = topDocument->axObjectCache())
HTMLTextFormControlElement.cpp 31 #include "core/accessibility/AXObjectCache.h"
513 if (AXObjectCache* cache = document().existingAXObjectCache())
514 cache->postNotification(this, AXObjectCache::AXValueChanged, false);
  /external/chromium_org/third_party/WebKit/Source/core/page/
ChromeClient.h 25 #include "core/accessibility/AXObjectCache.h"
244 virtual void postAccessibilityNotification(AXObject*, AXObjectCache::AXNotification) { }
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
RangeInputType.cpp 38 #include "core/accessibility/AXObjectCache.h"
235 if (AXObjectCache* cache = element().document().existingAXObjectCache())
236 cache->postNotification(&element(), AXObjectCache::AXValueChanged, true);
InputType.cpp 33 #include "core/accessibility/AXObjectCache.h"
851 if (AXObjectCache* cache = element().document().existingAXObjectCache())
852 cache->postNotification(&element(), AXObjectCache::AXValueChanged, true);
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.h 41 class AXObjectCache;
445 virtual AXObjectCache* axObjectCache() const;

Completed in 3569 milliseconds

1 2