Home
last modified time | relevance | path

Searched refs:postNotification (Results 1 – 25 of 30) sorted by relevance

12

/external/webkit/Source/WebCore/accessibility/
DAXObjectCache.h139 …void postNotification(RenderObject*, AXNotification, bool postToElement, PostType = PostAsynchrono…
140 …void postNotification(AccessibilityObject*, Document*, AXNotification, bool postToElement, PostTyp…
184 inline void AXObjectCache::postNotification(RenderObject*, AXNotification, bool postToElement, Post… in postNotification() function
185 inline void AXObjectCache::postNotification(AccessibilityObject*, Document*, AXNotification, bool p… in postNotification() function
DAXObjectCache.cpp479 void AXObjectCache::postNotification(RenderObject* renderer, AXNotification notification, bool post… in postNotification() function in WebCore::AXObjectCache
497 postNotification(object.get(), renderer->document(), notification, postToElement, postType); in postNotification()
500 void AXObjectCache::postNotification(AccessibilityObject* object, Document* document, AXNotificatio… in postNotification() function in WebCore::AXObjectCache
523 postNotification(renderer, AXSelectedChildrenChanged, false); in selectedChildrenChanged()
DAccessibilityRenderObject.cpp2236 axObjectCache()->postNotification(m_renderer, AXObjectCache::AXValueChanged, true); in changeValueByPercent()
2883 …axObjectCache()->postNotification(containerParent, document(), AXObjectCache::AXRowCountChanged, t… in handleAriaExpandedChanged()
2887 …axObjectCache()->postNotification(this, document(), isExpanded() ? AXObjectCache::AXRowExpanded : … in handleAriaExpandedChanged()
2901 …doc->axObjectCache()->postNotification(m_renderer, AXObjectCache::AXActiveDescendantChanged, true); in handleActiveDescendantChanged()
3285 … axObjectCache()->postNotification(renderParent, AXObjectCache::AXLiveRegionChanged, true); in contentChanged()
3311 … axObjectCache()->postNotification(axParent->renderer(), AXObjectCache::AXChildrenChanged, true); in childrenChanged()
3323 … axObjectCache()->postNotification(axParent->renderer(), AXObjectCache::AXLiveRegionChanged, true); in childrenChanged()
/external/clang/test/Analysis/
Ddelegates.m92 + (void)postNotification:(NSString *)str;
100 …[test_6062730 performSelectorOnMainThread:@selector(postNotification:) withObject:str waitUntilDon…
105 …[[self class] performSelectorOnMainThread:@selector(postNotification:) withObject:str waitUntilDon…
108 + (void) postNotification:(NSString *)str {
/external/webkit/Source/WebKit/win/
DWebHistory.cpp145 HRESULT WebHistory::postNotification(NotificationType notifyType, IPropertyBag* userInfo /*=0*/) in postNotification() function in WebHistory
251 hr = postNotification(kWebHistoryLoadedNotification); in loadFromURL()
257 hr = postNotification(kWebHistoryItemsDiscardedWhileLoadingNotification, userInfo.get()); in loadFromURL()
368 hr = postNotification(kWebHistorySavedNotification); in saveToURL()
457 return postNotification(kWebHistoryAllItemsRemovedNotification, userInfo.get()); in removeAllItems()
637 hr = postNotification(kWebHistoryItemsRemovedNotification, userInfo.get()); in removeItem()
687 hr = postNotification(kWebHistoryItemsAddedNotification, userInfo.get()); in addItem()
745 postNotification(kWebHistoryItemsAddedNotification, userInfo.get()); in visitedURL()
DWebNotificationCenter.h57 virtual HRESULT STDMETHODCALLTYPE postNotification(
DWebHistory.h145 HRESULT postNotification(NotificationType notifyType, IPropertyBag* userInfo = 0);
DWebNotificationCenter.cpp161 HRESULT STDMETHODCALLTYPE WebNotificationCenter::postNotification( in postNotification() function in WebNotificationCenter
DChangeLog-2009-06-1610335 (WebNotificationCenter::postNotification):
23429 (WebHistory::postNotification):
23592 (WebNotificationCenter::postNotification):
/external/webkit/Source/WebCore/editing/chromium/
DSelectionControllerChromium.cpp44 …document->axObjectCache()->postNotification(m_selection.start().deprecatedNode()->renderer(), AXOb… in notifyAccessibilityForSelectionChange()
/external/webkit/Source/WebKit/win/Interfaces/
DIWebNotificationCenter.idl54 //- (void)postNotification:(NSNotification *)notification
55 HRESULT postNotification([in] IWebNotification* notification);
/external/clang/test/Rewriter/
Drewrite-foreach-6.m15 [X postNotification:notification];
/external/webkit/Source/WebCore/editing/mac/
DSelectionControllerMac.mm54 …document->axObjectCache()->postNotification(m_selection.start().deprecatedNode()->renderer(), AXOb…
/external/webkit/Source/WebCore/html/
DHTMLInputElement.cpp375 … document()->axObjectCache()->postNotification(renderer(), AXObjectCache::AXValueChanged, true); in applyStep()
795 …renderer()->document()->axObjectCache()->postNotification(renderer(), AXObjectCache::AXCheckedStat… in setChecked()
/external/webkit/Source/WebCore/rendering/
DRenderMenuList.cpp345 …document()->axObjectCache()->postNotification(this, AXObjectCache::AXMenuListValueChanged, true, P… in didSetSelectedIndex()
DRenderTextControl.cpp177 … document()->axObjectCache()->postNotification(this, AXObjectCache::AXValueChanged, false); in setInnerTextValue()
/external/webkit/Source/WebCore/page/
DFocusController.cpp179 …focusedOrMainFrame()->document()->axObjectCache()->postNotification(focusedOrMainFrame()->document… in setInitialFocus()
DFrameView.cpp1001 … root->document()->axObjectCache()->postNotification(root, AXObjectCache::AXLayoutComplete, true); in layout()
/external/webkit/Source/WebCore/dom/
DElement.cpp754 … document()->axObjectCache()->postNotification(renderer(), AXObjectCache::AXValueChanged, true); in updateAfterAttributeChanged()
765 …document()->axObjectCache()->postNotification(renderer(), AXObjectCache::AXInvalidStatusChanged, t… in updateAfterAttributeChanged()
DDocument.cpp2170 axObjectCache()->postNotification(renderObject, AXObjectCache::AXLoadComplete, true); in implicitClose()
/external/webkit/Source/WebCore/editing/
DEditor.cpp505 …m_frame->document()->axObjectCache()->postNotification(node->renderer(), AXObjectCache::AXValueCha… in respondToChangedContents()
2284 …m_frame->document()->axObjectCache()->postNotification(root->renderer(), AXObjectCache::AXAutocorr… in markAllMisspellingsAndBadGrammarInRanges()
/external/chromium/chrome/browser/cocoa/
Dkeystone_glue.mm672 [[NSNotificationCenter defaultCenter] postNotification:notification];
/external/webkit/Source/WebCore/
DChangeLog-2006-12-3134440 (WebCore::AXObjectCache::postNotification):
34443 postNotification now posts to input element or top web area, as appropriate.
34449 … a selection. Pass the starting position's renderer to postNotification so that postNotification
34492 postNotification will send it to the input element, if there is one, or the top WebArea.
34495 Use postNotificationToElement now that it acts like the old postNotification.
34506 Use postNotificationToElement now that it acts like the old postNotification.
DChangeLog-2010-01-295373 version of postNotification() that does not require a renderer. The
5374 old postNotification() calls the new one.
5377 (WebCore::AXObjectCache::postNotification):
15576 (WebCore::AXObjectCache::postNotification):
15589 (WebCore::AXObjectCache::postNotification):
15596 a new parameter to postNotification() to specify whether the post should
37578 (WebCore::AXObjectCache::postNotification):
60248 (WebCore::AXObjectCache::postNotification):
60262 (WebCore::AXObjectCache::postNotification):
78259 (WebCore::AXObjectCache::postNotification):
DChangeLog-2009-06-164718 For !HAVE(ACCESSIBILITY) postNotification was defined twice. Move
4994 Consolidated postNotification and postNotificationToElement into one method.
4999 (WebCore::AXObjectCache::postNotification):
5002 (WebCore::AXObjectCache::postNotification):
34973 (WebCore::AXObjectCache::postNotification):
55522 (WebCore::AXObjectCache::postNotification):

12