OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PostType
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/accessibility/
AXObjectCache.h
55
enum
PostType
{ PostSynchronously, PostAsynchronously };
139
void postNotification(RenderObject*, AXNotification, bool postToElement,
PostType
= PostAsynchronously);
140
void postNotification(AccessibilityObject*, Document*, AXNotification, bool postToElement,
PostType
= PostAsynchronously);
184
inline void AXObjectCache::postNotification(RenderObject*, AXNotification, bool postToElement,
PostType
) { }
185
inline void AXObjectCache::postNotification(AccessibilityObject*, Document*, AXNotification, bool postToElement,
PostType
) { }
AXObjectCache.cpp
479
void AXObjectCache::postNotification(RenderObject* renderer, AXNotification notification, bool postToElement,
PostType
postType
)
497
postNotification(object.get(), renderer->document(), notification, postToElement,
postType
);
500
void AXObjectCache::postNotification(AccessibilityObject* object, Document* document, AXNotification notification, bool postToElement,
PostType
postType
)
511
if (
postType
== PostAsynchronously) {
Completed in 9241 milliseconds