Home
last modified time | relevance | path

Searched refs:AXObjectCache (Results 1 – 25 of 57) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/accessibility/
DAXObjectCache.cpp107 bool AXObjectCache::gAccessibilityEnabled = false;
108 bool AXObjectCache::gInlineTextBoxAccessibility = false;
110 AXObjectCache::AXObjectCache(Document& document) in AXObjectCache() function in WebCore::AXObjectCache
112 , m_notificationPostTimer(this, &AXObjectCache::notificationPostTimerFired) in AXObjectCache()
117 AXObjectCache::~AXObjectCache() in ~AXObjectCache()
130 AXObject* AXObjectCache::focusedImageMapUIElement(HTMLAreaElement* areaElement) in focusedImageMapUIElement()
159 AXObject* AXObjectCache::focusedUIElementForPage(const Page* page) in focusedUIElementForPage()
193 AXObject* AXObjectCache::get(Widget* widget) in get()
206 AXObject* AXObjectCache::get(RenderObject* renderer) in get()
219 AXObject* AXObjectCache::get(Node* node) in get()
[all …]
DAXMenuListPopup.cpp115 AXObjectCache* cache = axObjectCache(); in childrenChanged()
142 AXObjectCache* cache = axObjectCache(); in didUpdateActiveOption()
145 …cache->postNotification(child.get(), document(), AXObjectCache::AXFocusedUIElementChanged, true, P… in didUpdateActiveOption()
146 …cache->postNotification(child.get(), document(), AXObjectCache::AXMenuListItemSelected, true, Post… in didUpdateActiveOption()
DAXObjectCache.h79 class AXObjectCache {
80 WTF_MAKE_NONCOPYABLE(AXObjectCache); WTF_MAKE_FAST_ALLOCATED;
82 explicit AXObjectCache(Document&);
83 ~AXObjectCache();
226 Timer<AXObjectCache> m_notificationPostTimer;
228 void notificationPostTimerFired(Timer<AXObjectCache>*);
DAXMenuList.cpp59 AXObjectCache* cache = m_renderer->document().axObjectCache(); in addChildren()
101 AXObjectCache* cache = document->axObjectCache(); in didUpdateActiveOption()
114 …cache->postNotification(this, document.get(), AXObjectCache::AXMenuListValueChanged, true, PostSyn… in didUpdateActiveOption()
DAXNodeObject.cpp152 axObjectCache()->postNotification(node(), AXObjectCache::AXValueChanged, true); in changeValueByStep()
1433 AXObjectCache* cache = axObjectCache(); in anchorElement()
1530 axObjectCache()->postNotification(this, document(), AXObjectCache::AXChildrenChanged, true); in childrenChanged()
1544 …axObjectCache()->postNotification(parent, parent->document(), AXObjectCache::AXLiveRegionChanged, … in childrenChanged()
1549 …axObjectCache()->postNotification(parent, parent->document(), AXObjectCache::AXValueChanged, true); in childrenChanged()
1559 … axObjectCache()->postNotification(this, document(), AXObjectCache::AXSelectedTextChanged, true); in selectionChanged()
1568 AXObjectCache* cache = axObjectCache(); in textChanged()
1575 cache->postNotification(parentNode, AXObjectCache::AXLiveRegionChanged, true); in textChanged()
1580 cache->postNotification(parentNode, AXObjectCache::AXValueChanged, true); in textChanged()
1687 axObjectCache()->postNotification(node(), AXObjectCache::AXValueChanged, true); in changeValueByPercent()
DAXInlineTextBox.h61 AXObjectCache* m_axObjectCache;
DAXObject.cpp158 AXObjectCache* AXObject::axObjectCache() const in axObjectCache()
256 AXObjectCache* cache = axObjectCache(); in accessibilityIsIgnored()
519 AXObjectCache* cache = node->document().axObjectCache(); in firstAccessibleObjectFromNode()
563 return AXObjectCache::focusedUIElementForPage(page); in focusedUIElement()
DAXSlider.cpp86 AXObjectCache* cache = m_renderer->document().axObjectCache(); in addChildren()
DAXARIAGrid.cpp95 AXObjectCache* axCache = m_renderer->document().axObjectCache(); in addChildren()
DAXRenderObject.cpp951 AXObjectCache* cache = axObjectCache(); in accessibilityChildrenFromAttribute()
1518 AXObjectCache* cache = axObjectCache(); in anchorElement()
1644 … doc.axObjectCache()->postNotification(m_renderer, AXObjectCache::AXActiveDescendantChanged, true); in handleActiveDescendantChanged()
1674 …axObjectCache()->postNotification(containerParent, document(), AXObjectCache::AXRowCountChanged, t… in handleAriaExpandedChanged()
1678 …()->postNotification(this, document(), isExpanded() ? AXObjectCache::AXRowExpanded : AXObjectCache in handleAriaExpandedChanged()
1686 if (AXObjectCache::inlineTextBoxAccessibility() && roleValue() == StaticTextRole) in textChanged()
DAXObject.h43 class AXObjectCache; variable
293 AXObjectCache* axObjectCache() const;
DAXNodeObject.h38 class AXObjectCache; variable
DAXRenderObject.h39 class AXObjectCache; variable
/external/chromium_org/third_party/WebKit/Source/web/
DAssertMatchingEnums.cpp141 COMPILE_ASSERT_MATCHING_ENUM(WebAXEventActiveDescendantChanged, AXObjectCache::AXActiveDescendantCh…
142 COMPILE_ASSERT_MATCHING_ENUM(WebAXEventAlert, AXObjectCache::AXAlert);
143 COMPILE_ASSERT_MATCHING_ENUM(WebAXEventAriaAttributeChanged, AXObjectCache::AXAriaAttributeChanged);
144 COMPILE_ASSERT_MATCHING_ENUM(WebAXEventAutocorrectionOccured, AXObjectCache::AXAutocorrectionOccure…
145 COMPILE_ASSERT_MATCHING_ENUM(WebAXEventBlur, AXObjectCache::AXBlur);
146 COMPILE_ASSERT_MATCHING_ENUM(WebAXEventCheckedStateChanged, AXObjectCache::AXCheckedStateChanged);
147 COMPILE_ASSERT_MATCHING_ENUM(WebAXEventChildrenChanged, AXObjectCache::AXChildrenChanged);
148 COMPILE_ASSERT_MATCHING_ENUM(WebAXEventFocus, AXObjectCache::AXFocusedUIElementChanged);
149 COMPILE_ASSERT_MATCHING_ENUM(WebAXEventHide, AXObjectCache::AXHide);
150 COMPILE_ASSERT_MATCHING_ENUM(WebAXEventInvalidStatusChanged, AXObjectCache::AXInvalidStatusChanged);
[all …]
DWebAXObject.cpp79 AXObjectCache::enableAccessibility(); in enableAccessibility()
85 return AXObjectCache::accessibilityEnabled(); in accessibilityEnabled()
91 AXObjectCache::setInlineTextBoxAccessibility(true); in enableInlineTextBoxAccessibility()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderObjectChildList.cpp113 if (AXObjectCache* cache = owner->document().existingAXObjectCache()) in removeChildNode()
165 if (AXObjectCache* cache = owner->document().axObjectCache()) in insertChildNode()
DRenderMenuList.cpp136 if (AXObjectCache* cache = document().existingAXObjectCache()) in addChild()
416 if (!AXObjectCache::accessibilityEnabled() || !document().existingAXObjectCache()) in didUpdateActiveOption()
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
DRangeInputType.cpp230 if (AXObjectCache* cache = element().document().existingAXObjectCache()) in handleKeydownEvent()
231 cache->postNotification(&element(), AXObjectCache::AXValueChanged, true); in handleKeydownEvent()
DInputType.cpp849 if (AXObjectCache* cache = element().document().existingAXObjectCache()) in applyStep()
850 cache->postNotification(&element(), AXObjectCache::AXValueChanged, true); in applyStep()
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLDialogElement.cpp88 if (AXObjectCache* cache = topDocument.axObjectCache()) in inertSubtreesChanged()
DHTMLFrameOwnerElement.cpp211 if (AXObjectCache* cache = document().existingAXObjectCache()) in setWidget()
DHTMLTextFormControlElement.cpp514 if (AXObjectCache* cache = document().existingAXObjectCache()) in setInnerEditorValue()
515 cache->postNotification(this, AXObjectCache::AXValueChanged, false); in setInnerEditorValue()
/external/chromium_org/third_party/WebKit/Source/core/frame/
DFrameView.h39 class AXObjectCache; variable
402 AXObjectCache* axObjectCache() const;
/external/chromium_org/third_party/WebKit/Source/core/page/
DChromeClient.h207 virtual void postAccessibilityNotification(AXObject*, AXObjectCache::AXNotification) { } in postAccessibilityNotification()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DNode.cpp328 if (AXObjectCache* cache = document.existingAXObjectCache()) in willBeDeletedFromDocument()
587 ASSERT(AXObjectCache::accessibilityEnabled()); in isEditableToAccessibility()
590 if (AXObjectCache* cache = document().existingAXObjectCache()) in isEditableToAccessibility()
984 if (AXObjectCache* cache = document().axObjectCache()) in attach()
1229 if (AXObjectCache* cache = document().existingAXObjectCache()) in rootEditableElement()
1936 if (AXObjectCache::accessibilityEnabled()) { in didMoveToNewDocument()
1937 if (AXObjectCache* cache = oldDocument.existingAXObjectCache()) in didMoveToNewDocument()

123