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

1 2 3

  /external/webkit/WebKit/mac/Misc/
WebNSNotificationCenterExtras.m 35 [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...]
WebNSNotificationCenterExtras.h 34 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo;
35 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo waitUntilDone:(BOOL)wait;
WebKitErrors.m 85 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 count] > 0 ? [[NSDictionary alloc] initWithDictionary:userInfo] : nil
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/address/
Authority.java 50 /** userInfo field
52 protected UserInfo userInfo;
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
    [all...]
  /external/webkit/WebCore/platform/network/mac/
ResourceErrorMac.mm 47 NSString* failingURLString = [[m_platformError.get() userInfo] valueForKey:@"NSErrorFailingURLStringKey"];
49 failingURLString = [[[m_platformError.get() userInfo] valueForKey:@"NSErrorFailingURLKey"] absoluteString];
73 RetainPtr<NSMutableDictionary> userInfo(AdoptNS, [[NSMutableDictionary alloc] init]);
76 [userInfo.get() setValue:m_localizedDescription forKey:NSLocalizedDescriptionKey];
80 [userInfo.get() setValue:m_failingURL forKey:@"NSErrorFailingURLStringKey"];
81 [userInfo.get() setValue:cocoaURL forKey:@"NSErrorFailingURLKey"];
84 m_platformError.adoptNS([[NSError alloc] initWithDomain:m_domain code:m_errorCode userInfo:userInfo.get()]);
  /external/webkit/WebKit/win/
WebNotification.h 34 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(
WebNotification.cpp 35 WebNotification::WebNotification(BSTR name, IUnknown* anObject, IPropertyBag* userInfo)
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(
WebError.h 40 static WebError* createInstance(const WebCore::ResourceError&, IPropertyBag* userInfo = 0);
43 WebError(const WebCore::ResourceError&, IPropertyBag* userInfo);
79 virtual HRESULT STDMETHODCALLTYPE userInfo(
WebError.cpp 43 WebError::WebError(const ResourceError& error, IPropertyBag* userInfo)
46 , m_userInfo(userInfo)
58 WebError* WebError::createInstance(const ResourceError& error, IPropertyBag* userInfo)
60 WebError* instance = new WebError(error, userInfo);
179 HRESULT STDMETHODCALLTYPE WebError::userInfo(
222 // copy userinfo from CFErrorRef
WebNotificationCenter.h 63 /* [optional][in] */ IPropertyBag *userInfo);
WebHistory.cpp 147 HRESULT WebHistory::postNotification(NotificationType notifyType, IPropertyBag* userInfo /*=0*/)
150 HRESULT hr = nc->postNotificationName(getNotificationString(notifyType), static_cast<IWebHistory*>(this), userInfo);
258 COMPtr<CFDictionaryPropertyBag> userInfo = createUserInfoFromArray(getNotificationString(kWebHistoryItemsDiscardedWhileLoadingNotification), discardedItems.get());
259 hr = postNotification(kWebHistoryItemsDiscardedWhileLoadingNotification, userInfo.get());
458 COMPtr<CFDictionaryPropertyBag> userInfo = createUserInfoFromArray(getNotificationString(kWebHistoryAllItemsRemovedNotification), allItems.get());
459 return postNotification(kWebHistoryAllItemsRemovedNotification, userInfo.get());
637 COMPtr<CFDictionaryPropertyBag> userInfo = createUserInfoFromHistoryItem(
639 hr = postNotification(kWebHistoryItemsRemovedNotification, userInfo.get());
687 COMPtr<CFDictionaryPropertyBag> userInfo = createUserInfoFromHistoryItem(
689 hr = postNotification(kWebHistoryItemsAddedNotification, userInfo.get())
    [all...]
  /external/webkit/WebCore/platform/network/cf/
ResourceErrorCF.cpp 88 RetainPtr<CFDictionaryRef> userInfo(AdoptCF, CFErrorCopyUserInfo(m_platformError.get()));
89 if (userInfo.get()) {
90 CFStringRef failingURLString = (CFStringRef) CFDictionaryGetValue(userInfo.get(), failingURLStringKey);
94 CFURLRef failingURL = (CFURLRef) CFDictionaryGetValue(userInfo.get(), failingURLKey);
103 m_localizedDescription = (CFStringRef) CFDictionaryGetValue(userInfo.get(), kCFErrorLocalizedDescriptionKey);
122 RetainPtr<CFMutableDictionaryRef> userInfo(AdoptCF, CFDictionaryCreateMutable(0, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks));
126 CFDictionarySetValue(userInfo.get(), kCFErrorLocalizedDescriptionKey, localizedDescriptionString.get());
131 CFDictionarySetValue(userInfo.get(), failingURLStringKey, failingURLString.get());
133 CFDictionarySetValue(userInfo.get(), failingURLKey, url.get());
137 m_platformError.adoptCF(CFErrorCreate(0, domainString.get(), m_errorCode, userInfo.get()))
    [all...]
  /external/webkit/WebKit/mac/Storage/
WebDatabaseTrackerClient.mm 65 RetainPtr<NSDictionary> userInfo(AdoptNS, [[NSDictionary alloc]
70 userInfo:userInfo.get()];
  /external/webkit/WebCore/bindings/objc/
ExceptionHandlers.mm 69 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/webkit/WebKit/win/Interfaces/
IWebNotification.idl 41 + (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);
IWebNotificationCenter.idl 58 //- (void)postNotificationName:(NSString *)notificationName object:(id)anObject userInfo:(NSDictionary *)userInfo
59 HRESULT postNotificationName([in] BSTR notificationName, [in] IUnknown* anObject, [in] IPropertyBag* userInfo);
IWebError.idl 170 - (NSDictionary *)userInfo
172 HRESULT userInfo([out, retval] IPropertyBag** result);
  /libcore/luni/src/main/java/java/net/
URI.java 48 private transient String userInfo;
121 * @param userInfo
139 public URI(String scheme, String userInfo, String host, int port,
143 if (scheme == null && userInfo == null && host == null && path == null
160 if (userInfo != null || host != null || port != -1) {
164 if (userInfo != null) {
165 // QUOTE ILLEGAL CHARACTERS in userInfo
166 uri.append(quoteComponent(userInfo, SOME_LEGAL));
517 // fill in the userInfo, host and port fields
518 userInfo = tempUserInfo
    [all...]
URLStreamHandler.java 112 String userInfo = u.getUserInfo();
136 userInfo = parseString.substring(hostIdx, userIdx);
232 setURL(u, u.getProtocol(), host, port, authority, userInfo, file,
278 * @param userInfo
288 String authority, String userInfo, String file, String query,
293 u.set(protocol, host, port, authority, userInfo, file, query, ref);
URL.java 85 * The receiver's userInfo.
87 private transient String userInfo = null;
432 userInfo = host.substring(0, index);
435 userInfo = null;
752 userInfo = authority.substring(0, index);
861 return userInfo;
886 * @param userInfo
896 String authority, String userInfo, String path, String query,
908 this.userInfo = userInfo;
    [all...]
  /external/webkit/WebKit/mac/WebView/
WebScriptDebugDelegate.h 121 - (void)setUserInfo:(id)userInfo;
124 - (id)userInfo;
WebScriptDebugDelegate.mm 149 - (void)setUserInfo:(id)userInfo
151 if (userInfo != _userInfo) {
153 _userInfo = [userInfo retain];
157 - (id)userInfo
  /external/webkit/WebKitTools/WebKitLauncher/
WebKitNightlyEnabler.m 58 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)
  /packages/apps/Email/src/com/android/email/mail/store/
ExchangeStore.java 220 final String userInfo = uri.getUserInfo();
221 if (userInfo == null) {
224 final String[] uinfo = userInfo.split(":", 2);
  /hardware/ti/omap3/dspbridge/libbridge/
DSPStrm.c 118 struct DSP_STREAMINFO userInfo;
141 strmInfo.pUser = &userInfo;
195 struct DSP_STREAMINFO userInfo;
209 strmInfo.pUser = &userInfo;
283 struct DSP_STREAMINFO userInfo;
304 strmInfo.pUser = &userInfo; /* need valid user info ptr */

Completed in 3390 milliseconds

1 2 3