/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
D | AXObjectCache.cpp | 107 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 …]
|
D | AXMenuListPopup.cpp | 115 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()
|
D | AXObjectCache.h | 79 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>*);
|
D | AXMenuList.cpp | 59 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()
|
D | AXNodeObject.cpp | 152 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()
|
D | AXInlineTextBox.h | 61 AXObjectCache* m_axObjectCache;
|
D | AXObject.cpp | 158 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()
|
D | AXSlider.cpp | 86 AXObjectCache* cache = m_renderer->document().axObjectCache(); in addChildren()
|
D | AXARIAGrid.cpp | 95 AXObjectCache* axCache = m_renderer->document().axObjectCache(); in addChildren()
|
D | AXRenderObject.cpp | 951 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()
|
D | AXObject.h | 43 class AXObjectCache; variable 293 AXObjectCache* axObjectCache() const;
|
D | AXNodeObject.h | 38 class AXObjectCache; variable
|
D | AXRenderObject.h | 39 class AXObjectCache; variable
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | AssertMatchingEnums.cpp | 141 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 …]
|
D | WebAXObject.cpp | 79 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/ |
D | RenderObjectChildList.cpp | 113 if (AXObjectCache* cache = owner->document().existingAXObjectCache()) in removeChildNode() 165 if (AXObjectCache* cache = owner->document().axObjectCache()) in insertChildNode()
|
D | RenderMenuList.cpp | 136 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/ |
D | RangeInputType.cpp | 230 if (AXObjectCache* cache = element().document().existingAXObjectCache()) in handleKeydownEvent() 231 cache->postNotification(&element(), AXObjectCache::AXValueChanged, true); in handleKeydownEvent()
|
D | InputType.cpp | 849 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/ |
D | HTMLDialogElement.cpp | 88 if (AXObjectCache* cache = topDocument.axObjectCache()) in inertSubtreesChanged()
|
D | HTMLFrameOwnerElement.cpp | 211 if (AXObjectCache* cache = document().existingAXObjectCache()) in setWidget()
|
D | HTMLTextFormControlElement.cpp | 514 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/ |
D | FrameView.h | 39 class AXObjectCache; variable 402 AXObjectCache* axObjectCache() const;
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
D | ChromeClient.h | 207 virtual void postAccessibilityNotification(AXObject*, AXObjectCache::AXNotification) { } in postAccessibilityNotification()
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | Node.cpp | 328 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()
|