Searched refs:userInfo (Results 1 - 25 of 57) sorted by relevance

123

/external/webkit/Source/WebKit/mac/Misc/
H A DWebNSNotificationCenterExtras.m35 [self postNotificationOnMainThreadWithName:name object:object userInfo:nil waitUntilDone:NO];
38 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo
40 [self postNotificationOnMainThreadWithName:name object:object userInfo:userInfo waitUntilDone:NO];
43 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo waitUntilDone:(BOOL)wait
52 if (userInfo)
53 [info setObject:userInfo forKey:@"userInfo"];
[all...]
H A DWebNSNotificationCenterExtras.h34 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo;
35 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo waitUntilDone:(BOOL)wait;
H A DWebKitErrors.m85 return [self initWithDomain:domain code:code userInfo:dict];
112 NSMutableDictionary *userInfo = [[NSMutableDictionary alloc] init];
116 [userInfo setObject:localizedDescription forKey:NSLocalizedDescriptionKey];
118 [userInfo setObject:contentURL forKey:@"NSErrorFailingURLKey"];
120 [userInfo setObject:[contentURL _web_userVisibleString] forKey:NSErrorFailingURLStringKey];
122 [userInfo setObject:[contentURL _web_userVisibleString] forKey:NSURLErrorFailingURLStringErrorKey];
126 [userInfo setObject:[pluginPageURL _web_userVisibleString] forKey:WebKitErrorPlugInPageURLStringKey];
129 [userInfo setObject:pluginName forKey:WebKitErrorPlugInNameKey];
132 [userInfo setObject:MIMEType forKey:WebKitErrorMIMETypeKey];
135 NSDictionary *userInfoCopy = [userInfo coun
[all...]
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DAuthority.java50 /** userInfo field
52 protected UserInfo userInfo; field in class:Authority
63 if (userInfo != null) {
64 userInfo.encode(buffer);
87 if (this.userInfo != null && otherAuth.userInfo != null) {
88 if (!this.userInfo.equals(otherAuth.userInfo)) {
104 * get the userInfo memnber.
108 return userInfo;
[all...]
/external/webkit/Source/WebCore/platform/network/mac/
H A DResourceErrorMac.mm62 NSString* failingURLString = [[m_platformError.get() userInfo] valueForKey:@"NSErrorFailingURLStringKey"];
64 failingURLString = [[[m_platformError.get() userInfo] valueForKey:@"NSErrorFailingURLKey"] absoluteString];
88 RetainPtr<NSMutableDictionary> userInfo(AdoptNS, [[NSMutableDictionary alloc] init]);
91 [userInfo.get() setValue:m_localizedDescription forKey:NSLocalizedDescriptionKey];
95 [userInfo.get() setValue:m_failingURL forKey:@"NSErrorFailingURLStringKey"];
96 [userInfo.get() setValue:cocoaURL forKey:@"NSErrorFailingURLKey"];
99 m_platformError.adoptNS([[NSError alloc] initWithDomain:m_domain code:m_errorCode userInfo:userInfo.get()]);
/external/webkit/Source/WebKit/win/
H A DWebNotification.h34 static WebNotification* createInstance(BSTR name = 0, IUnknown* anObject = 0, IPropertyBag* userInfo = 0);
36 WebNotification(BSTR name, IUnknown* anObject, IPropertyBag* userInfo);
49 /* [optional][in] */ IPropertyBag *userInfo);
57 virtual HRESULT STDMETHODCALLTYPE userInfo(
H A DWebNotification.cpp35 WebNotification::WebNotification(BSTR name, IUnknown* anObject, IPropertyBag* userInfo) argument
39 , m_userInfo(userInfo)
65 WebNotification* WebNotification::createInstance(BSTR name /*=0*/, IUnknown* anObject /*=0*/, IPropertyBag* userInfo /*=0*/)
67 WebNotification* instance = new WebNotification(name, anObject, userInfo);
107 /* [optional][in] */ IPropertyBag* /*userInfo*/)
137 HRESULT STDMETHODCALLTYPE WebNotification::userInfo( function in class:WebNotification
H A DWebError.h36 static WebError* createInstance(const WebCore::ResourceError&, IPropertyBag* userInfo = 0);
39 WebError(const WebCore::ResourceError&, IPropertyBag* userInfo);
75 virtual HRESULT STDMETHODCALLTYPE userInfo(
H A DWebError.cpp41 WebError::WebError(const ResourceError& error, IPropertyBag* userInfo) argument
44 , m_userInfo(userInfo)
56 WebError* WebError::createInstance(const ResourceError& error, IPropertyBag* userInfo) argument
58 WebError* instance = new WebError(error, userInfo);
177 HRESULT STDMETHODCALLTYPE WebError::userInfo( function in class:WebError
H A DWebNotificationCenter.h63 /* [optional][in] */ IPropertyBag *userInfo);
H A DWebHistory.cpp145 HRESULT WebHistory::postNotification(NotificationType notifyType, IPropertyBag* userInfo /*=0*/)
148 HRESULT hr = nc->postNotificationName(getNotificationString(notifyType), static_cast<IWebHistory*>(this), userInfo);
256 COMPtr<CFDictionaryPropertyBag> userInfo = createUserInfoFromArray(getNotificationString(kWebHistoryItemsDiscardedWhileLoadingNotification), discardedItems.get()); local
257 hr = postNotification(kWebHistoryItemsDiscardedWhileLoadingNotification, userInfo.get());
456 COMPtr<CFDictionaryPropertyBag> userInfo = createUserInfoFromArray(getNotificationString(kWebHistoryAllItemsRemovedNotification), allItems.get()); local
457 return postNotification(kWebHistoryAllItemsRemovedNotification, userInfo.get());
635 COMPtr<CFDictionaryPropertyBag> userInfo = createUserInfoFromHistoryItem(
637 hr = postNotification(kWebHistoryItemsRemovedNotification, userInfo.get());
685 COMPtr<CFDictionaryPropertyBag> userInfo = createUserInfoFromHistoryItem( local
687 hr = postNotification(kWebHistoryItemsAddedNotification, userInfo
743 COMPtr<CFDictionaryPropertyBag> userInfo = createUserInfoFromHistoryItem( local
[all...]
/external/webkit/Source/WebCore/platform/network/cf/
H A DResourceErrorCF.cpp90 RetainPtr<CFDictionaryRef> userInfo(AdoptCF, CFErrorCopyUserInfo(m_platformError.get()));
91 if (userInfo.get()) {
92 CFStringRef failingURLString = (CFStringRef) CFDictionaryGetValue(userInfo.get(), failingURLStringKey);
96 CFURLRef failingURL = (CFURLRef) CFDictionaryGetValue(userInfo.get(), failingURLKey);
105 m_localizedDescription = (CFStringRef) CFDictionaryGetValue(userInfo.get(), kCFErrorLocalizedDescriptionKey);
108 m_certificate = wkGetSSLPeerCertificateData(userInfo.get());
135 RetainPtr<CFMutableDictionaryRef> userInfo(AdoptCF, CFDictionaryCreateMutable(0, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks));
139 CFDictionarySetValue(userInfo.get(), kCFErrorLocalizedDescriptionKey, localizedDescriptionString.get());
144 CFDictionarySetValue(userInfo.get(), failingURLStringKey, failingURLString.get());
146 CFDictionarySetValue(userInfo
[all...]
/external/chromium/chrome/browser/ui/cocoa/
H A Dtracking_area.h33 userInfo:(NSDictionary*)userInfo;
/external/webkit/Source/WebCore/bindings/objc/
H A DExceptionHandlers.mm69 NSDictionary *userInfo = [[NSDictionary alloc] initWithObjectsAndKeys:[NSNumber numberWithInt:description.code], exceptionName, nil];
71 NSException *exception = [NSException exceptionWithName:exceptionName reason:reason userInfo:userInfo];
74 [userInfo release];
/external/clang/test/Analysis/
H A Dcfref_PR2519.c26 extern void CFNotificationCenterPostNotification(CFNotificationCenterRef center, CFStringRef name, const void *object, CFDictionaryRef userInfo, Boolean deliverImmediately);
36 CFDictionaryRef userInfo = CFDictionaryCreate(kCFAllocatorDefault, (const void **)&_key, (const void **)&_value, 1, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks); local
41 userInfo, 0);
42 CFRelease(userInfo); // no-warning
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebNotification.idl41 + (id)notificationWithName:(NSString *)aName object:(id)anObject userInfo:(NSDictionary *)userInfo
43 HRESULT notificationWithName([in] BSTR aName, [in] IUnknown* anObject, [in] IPropertyBag* userInfo);
56 - (NSDictionary *)userInfo
58 HRESULT userInfo([out, retval] IPropertyBag** result);
H A DIWebNotificationCenter.idl58 //- (void)postNotificationName:(NSString *)notificationName object:(id)anObject userInfo:(NSDictionary *)userInfo
59 HRESULT postNotificationName([in] BSTR notificationName, [in] IUnknown* anObject, [in] IPropertyBag* userInfo);
H A DIWebError.idl170 - (NSDictionary *)userInfo
172 HRESULT userInfo([out, retval] IPropertyBag** result);
/external/webkit/Source/WebKit2/Shared/mac/
H A DWebCoreArgumentCodersMac.mm131 NSDictionary* userInfo = [nsError userInfo];
132 for (NSString *key in userInfo) {
133 id value = [userInfo objectForKey:key];
142 id peerCertificateChain = [userInfo objectForKey:@"NSErrorPeerCertificateChainKey"];
178 NSMutableDictionary* userInfo = [NSMutableDictionary dictionaryWithCapacity:userInfoSize];
183 [userInfo setObject:nsString(it->second) forKey:nsString(it->first)];
186 [userInfo setObject:(NSArray *)certificate.certificateChain() forKey:@"NSErrorPeerCertificateChainKey"];
188 NSError *nsError = [[NSError alloc] initWithDomain:nsString(domain) code:code userInfo:userInfo];
[all...]
/external/webkit/Source/WebKit/mac/Storage/
H A DWebDatabaseTrackerClient.mm104 RetainPtr<NSDictionary> userInfo(AdoptNS, [[NSDictionary alloc]
109 userInfo:userInfo.get()];
/external/webkit/Tools/DumpRenderTree/mac/
H A DMockGeolocationProvider.mm57 _timer = [NSTimer scheduledTimerWithTimeInterval:0 target:self selector:@selector(timerFired) userInfo:0 repeats:NO];
71 _timer = [NSTimer scheduledTimerWithTimeInterval:0 target:self selector:@selector(timerFired) userInfo:0 repeats:NO];
79 _timer = [NSTimer scheduledTimerWithTimeInterval:0 target:self selector:@selector(timerFired) userInfo:0 repeats:NO];
/external/webkit/Source/WebKit/mac/WebView/
H A DWebScriptDebugDelegate.h129 - (void)setUserInfo:(id)userInfo;
132 - (id)userInfo;
H A DWebScriptDebugDelegate.mm149 - (void)setUserInfo:(id)userInfo
151 if (userInfo != _userInfo) {
153 _userInfo = [userInfo retain];
157 - (id)userInfo
/external/webkit/Source/WebKit2/WebProcess/WebPage/ca/mac/
H A DLayerTreeHostCAMac.mm119 [[NSNotificationCenter defaultCenter] postNotificationName:@"NSCAViewRenderDidPauseNotification" object:nil userInfo:[NSDictionary dictionaryWithObject:root forKey:@"layer"]];
126 [[NSNotificationCenter defaultCenter] postNotificationName:@"NSCAViewRenderDidResumeNotification" object:nil userInfo:[NSDictionary dictionaryWithObject:root forKey:@"layer"]];
/external/webkit/Tools/WebKitLauncher/
H A DWebKitNightlyEnabler.m58 static void myBundleDidLoad(CFNotificationCenterRef center, void *observer, CFStringRef name, const void *object, CFDictionaryRef userInfo)
85 static void myApplicationWillFinishLaunching(CFNotificationCenterRef center, void *observer, CFStringRef name, const void *object, CFDictionaryRef userInfo)
104 static void myApplicationWillTerminate(CFNotificationCenterRef center, void *observer, CFStringRef name, const void *object, CFDictionaryRef userInfo)

Completed in 292 milliseconds

123