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

1 2 3 4

  /external/webkit/Source/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/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRRuntimeException.h 39 + (ANTLRRuntimeException *) newException:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
42 + (ANTLRRuntimeException *) newException:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
46 - (id) init:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
48 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
60 + (id) newException:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
64 - (id)init:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
73 + (id) newException:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
77 - (id)init:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
86 + (id) newException:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
90 - (id) init:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo
    [all...]
  /external/webkit/Source/WebCore/platform/network/mac/
ResourceErrorMac.mm 62 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/
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 36 static WebError* createInstance(const WebCore::ResourceError&, IPropertyBag* userInfo = 0);
39 WebError(const WebCore::ResourceError&, IPropertyBag* userInfo);
75 virtual HRESULT STDMETHODCALLTYPE userInfo(
WebError.cpp 41 WebError::WebError(const ResourceError& error, IPropertyBag* userInfo)
44 , m_userInfo(userInfo)
56 WebError* WebError::createInstance(const ResourceError& error, IPropertyBag* userInfo)
58 WebError* instance = new WebError(error, userInfo);
177 HRESULT STDMETHODCALLTYPE WebError::userInfo(
220 // copy userinfo from CFErrorRef
  /external/webkit/Source/WebCore/platform/network/cf/
ResourceErrorCF.cpp 90 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.get(), failingURLKey, url.get())
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/
UserManagerTest.java 21 import android.content.pm.UserInfo;
41 List<UserInfo> users = mUserManager.getUsers();
43 for (UserInfo user : users) {
57 UserInfo userInfo = details.createUser("Guest 1", UserInfo.FLAG_GUEST);
58 assertTrue(userInfo != null);
60 List<UserInfo> list = details.getUsers();
62 for (UserInfo user : list) {
63 if (user.id == userInfo.id && user.name.equals("Guest 1"
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
tracking_area.h 33 userInfo:(NSDictionary*)userInfo;
  /external/webkit/Source/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/clang/test/Analysis/
cfref_PR2519.c 26 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);
41 userInfo, 0);
42 CFRelease(userInfo); // no-warning
  /external/webkit/Source/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);
  /external/webkit/Source/WebKit2/Shared/mac/
WebCoreArgumentCodersMac.mm 131 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/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRRuntimeException.h 42 + (ANTLRRuntimeException *) newANTLRRuntimeException:(NSString *)aName reason:(NSString *)aReason userInfo:aUserInfo;
48 - (id)initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRRuntimeException.h 42 + (ANTLRRuntimeException *) newANTLRRuntimeException:(NSString *)aName reason:(NSString *)aReason userInfo:aUserInfo;
48 - (id)initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRRuntimeException.h 42 + (ANTLRRuntimeException *) newANTLRRuntimeException:(NSString *)aName reason:(NSString *)aReason userInfo:aUserInfo;
48 - (id)initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
  /external/webkit/Source/WebKit/mac/Storage/
WebDatabaseTrackerClient.mm 104 RetainPtr<NSDictionary> userInfo(AdoptNS, [[NSDictionary alloc]
109 userInfo:userInfo.get()];
  /external/webkit/Tools/DumpRenderTree/mac/
MockGeolocationProvider.mm 57 _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];
  /libcore/luni/src/main/java/java/net/
URI.java 184 private transient String userInfo;
235 public URI(String scheme, String userInfo, String host, int port, String path, String query,
237 if (scheme == null && userInfo == null && host == null && path == null
253 if (userInfo != null || host != null || port != -1) {
257 if (userInfo != null) {
258 USER_INFO_ENCODER.appendEncoded(uri, userInfo);
496 // fill in the userInfo, host and port fields
497 userInfo = tempUserInfo;
503 private void validateUserInfo(String uri, String userInfo, int index)
505 for (int i = 0; i < userInfo.length(); i++)
    [all...]
URLStreamHandler.java 95 String userInfo;
109 userInfo = spec.substring(authorityStart, userInfoEnd);
112 userInfo = null;
146 userInfo = url.getUserInfo();
192 setURL(url, url.getProtocol(), host, port, authority, userInfo, path, query, ref);
242 String authority, String userInfo, String path, String query,
247 u.set(protocol, host, port, authority, userInfo, path, query, ref);
  /frameworks/base/services/java/com/android/server/pm/
UserManager.java 24 import android.content.pm.UserInfo;
62 private SparseArray<UserInfo> mUsers = new SparseArray<UserInfo>();
94 public List<UserInfo> getUsers() {
96 ArrayList<UserInfo> users = new ArrayList<UserInfo>(mUsers.size());
104 public UserInfo getUser(int userId) {
106 UserInfo info = mUsers.get(userId);
119 UserInfo info = mUsers.get(userId);
167 UserInfo user = readUser(Integer.parseInt(id))
    [all...]

Completed in 1042 milliseconds

1 2 3 4