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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXObjectCache.h 75 class AXObjectCache {
76 WTF_MAKE_NONCOPYABLE(AXObjectCache); WTF_MAKE_FAST_ALLOCATED;
78 explicit AXObjectCache(const Document*);
79 ~AXObjectCache();
214 Timer<AXObjectCache> m_notificationPostTimer;
216 void notificationPostTimerFired(Timer<AXObjectCache>*);
230 inline AXObjectCache::AXObjectCache(const Document* doc) : m_document(const_cast<Document*>(doc)), m_notificationPostTimer(this, 0) { }
231 inline AXObjectCache::~AXObjectCache() { }
    [all...]
AXObjectCache.cpp 33 #include "core/accessibility/AXObjectCache.h"
102 bool AXObjectCache::gAccessibilityEnabled = false;
104 AXObjectCache::AXObjectCache(const Document* doc)
105 : m_notificationPostTimer(this, &AXObjectCache::notificationPostTimerFired)
110 AXObjectCache::~AXObjectCache()
123 AccessibilityObject* AXObjectCache::focusedImageMapUIElement(HTMLAreaElement* areaElement)
134 AccessibilityObject* axRenderImage = areaElement->document()->axObjectCache()->getOrCreate(imageElement);
152 AccessibilityObject* AXObjectCache::focusedUIElementForPage(const Page* page
    [all...]
AccessibilityMenuListPopup.cpp 29 #include "core/accessibility/AXObjectCache.h"
72 AccessibilityObject* object = document()->axObjectCache()->getOrCreate(MenuListOptionRole);
114 AXObjectCache* cache = axObjectCache();
133 AXObjectCache* cache = axObjectCache();
136 cache->postNotification(child.get(), document(), AXObjectCache::AXFocusedUIElementChanged, true, PostSynchronously);
137 cache->postNotification(child.get(), document(), AXObjectCache::AXMenuListItemSelected, true, PostSynchronously);
AccessibilityMenuList.cpp 29 #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);
AccessibilityARIAGrid.cpp 32 #include "core/accessibility/AXObjectCache.h"
96 AXObjectCache* axCache = m_renderer->document()->axObjectCache();
AccessibilitySlider.cpp 32 #include "core/accessibility/AXObjectCache.h"
84 AXObjectCache* cache = m_renderer->document()->axObjectCache();
110 return axObjectCache()->getOrCreate(m_renderer);
AccessibilityNodeObject.cpp 32 #include "core/accessibility/AXObjectCache.h"
148 axObjectCache()->postNotification(node(), AXObjectCache::AXValueChanged, true);
367 AccessibilityObject* menuItemAX = axObjectCache()->getOrCreate(menuItem);
    [all...]
AccessibilityNodeObject.h 38 class AXObjectCache;
AccessibilityObject.h 44 class AXObjectCache;
265 // unique ID, then added to AXObjectCache, and finally init() must
275 // The AXObjectCache that owns this object, and its unique ID within this cache.
276 AXObjectCache* axObjectCache() const;
AccessibilityObject.cpp 32 #include "core/accessibility/AXObjectCache.h"
157 AXObjectCache* AccessibilityObject::axObjectCache() const
161 return doc->axObjectCache();
221 AXComputedObjectAttributeCache* attributeCache = axObjectCache()->computedObjectAttributeCache();
449 return axObjectCache()->getOrCreate(widget)->accessibilityHitTest(IntPoint(point - widget->frameRect().location()));
489 AXObjectCache* cache = document->axObjectCache();
534 return AXObjectCache::focusedUIElementForPage(page);
806 axObjectCache()->childrenChanged(parentObject())
    [all...]
AccessibilityRenderObject.h 39 class AXObjectCache;
AccessibilityRenderObject.cpp 33 #include "core/accessibility/AXObjectCache.h"
859 return axObjectCache()->getOrCreate(correspondingControl);
921 return axObjectCache()->getOrCreate(toRenderFieldset(m_renderer)->findLegend(RenderFieldset::IncludeFloatingOrOutOfFlow));
928 return axObjectCache()->getOrCreate(label);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
AppendNodeCommand.cpp 30 #include "core/accessibility/AXObjectCache.h"
47 static void sendAXTextChangedIgnoringLineBreaks(Node* node, AXObjectCache::AXTextChange textChange)
54 if (AXObjectCache* cache = node->document()->existingAXObjectCache())
65 if (AXObjectCache::accessibilityEnabled())
66 sendAXTextChangedIgnoringLineBreaks(m_node.get(), AXObjectCache::AXTextInserted);
75 if (AXObjectCache::accessibilityEnabled())
76 sendAXTextChangedIgnoringLineBreaks(m_node.get(), AXObjectCache::AXTextDeleted);
DeleteFromTextNodeCommand.cpp 31 #include "core/accessibility/AXObjectCache.h"
61 if (AXObjectCache* cache = document()->existingAXObjectCache())
62 cache->nodeTextChangeNotification(m_node.get(), AXObjectCache::AXTextDeleted, m_offset, m_text);
76 if (AXObjectCache* cache = document()->existingAXObjectCache())
77 cache->nodeTextChangeNotification(m_node.get(), AXObjectCache::AXTextInserted, m_offset, m_text);
InsertIntoTextNodeCommand.cpp 30 #include "core/accessibility/AXObjectCache.h"
66 if (AXObjectCache* cache = document()->existingAXObjectCache())
67 cache->nodeTextChangeNotification(m_node.get(), AXObjectCache::AXTextInserted, m_offset, m_text);
76 if (AXObjectCache* cache = document()->existingAXObjectCache())
77 cache->nodeTextChangeNotification(m_node.get(), AXObjectCache::AXTextDeleted, m_offset, m_text);
InsertNodeBeforeCommand.cpp 30 #include "core/accessibility/AXObjectCache.h"
59 if (AXObjectCache* cache = document()->existingAXObjectCache())
60 cache->nodeTextChangeNotification(m_insertChild.get(), AXObjectCache::AXTextInserted, 0, m_insertChild->nodeValue());
69 if (AXObjectCache* cache = document()->existingAXObjectCache())
70 cache->nodeTextChangeNotification(m_insertChild.get(), AXObjectCache::AXTextDeleted, 0, m_insertChild->nodeValue());
  /external/chromium_org/third_party/WebKit/Source/web/
AssertMatchingEnums.cpp 85 #include "core/accessibility/AXObjectCache.h"
145 COMPILE_ASSERT_MATCHING_ENUM(WebAccessibilityNotificationActiveDescendantChanged, AXObjectCache::AXActiveDescendantChanged);
146 COMPILE_ASSERT_MATCHING_ENUM(WebAccessibilityNotificationAutocorrectionOccured, AXObjectCache::AXAutocorrectionOccured);
147 COMPILE_ASSERT_MATCHING_ENUM(WebAccessibilityNotificationCheckedStateChanged, AXObjectCache::AXCheckedStateChanged);
148 COMPILE_ASSERT_MATCHING_ENUM(WebAccessibilityNotificationChildrenChanged, AXObjectCache::AXChildrenChanged);
149 COMPILE_ASSERT_MATCHING_ENUM(WebAccessibilityNotificationFocusedUIElementChanged, AXObjectCache::AXFocusedUIElementChanged);
150 COMPILE_ASSERT_MATCHING_ENUM(WebAccessibilityNotificationLayoutComplete, AXObjectCache::AXLayoutComplete);
151 COMPILE_ASSERT_MATCHING_ENUM(WebAccessibilityNotificationLoadComplete, AXObjectCache::AXLoadComplete);
152 COMPILE_ASSERT_MATCHING_ENUM(WebAccessibilityNotificationSelectedChildrenChanged, AXObjectCache::AXSelectedChildrenChanged);
153 COMPILE_ASSERT_MATCHING_ENUM(WebAccessibilityNotificationSelectedTextChanged, AXObjectCache::AXSelectedTextChanged)
    [all...]
ChromeClientImpl.h 161 virtual void postAccessibilityNotification(WebCore::AccessibilityObject*, WebCore::AXObjectCache::AXNotification);
  /external/chromium_org/third_party/WebKit/Source/core/platform/
Widget.h 37 class AXObjectCache;
131 virtual AXObjectCache* axObjectCache() const { return 0; }
Scrollbar.h 190 virtual AXObjectCache* existingAXObjectCache() const;
Scrollbar.cpp 38 #include "core/accessibility/AXObjectCache.h"
96 if (AXObjectCache* cache = existingAXObjectCache())
538 AXObjectCache* Scrollbar::existingAXObjectCache() const
543 return parent()->axObjectCache();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderObjectChildList.cpp 30 #include "core/accessibility/AXObjectCache.h"
112 if (AXObjectCache* cache = owner->document()->existingAXObjectCache())
164 if (AXObjectCache* cache = owner->document()->axObjectCache())
RenderWidget.cpp 27 #include "core/accessibility/AXObjectCache.h"
100 if (AXObjectCache* cache = document()->existingAXObjectCache()) {
201 if (AXObjectCache* cache = document()->existingAXObjectCache())
  /external/chromium_org/third_party/WebKit/Source/core/page/
ChromeClient.h 25 #include "core/accessibility/AXObjectCache.h"
249 virtual void postAccessibilityNotification(AccessibilityObject*, AXObjectCache::AXNotification) { }
  /external/chromium_org/third_party/WebKit/Source/core/html/
RangeInputType.cpp 38 #include "core/accessibility/AXObjectCache.h"
236 if (AXObjectCache* cache = element()->document()->existingAXObjectCache())
237 cache->postNotification(element(), AXObjectCache::AXValueChanged, true);

Completed in 690 milliseconds

1 2 3