/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRRuntimeException.m | 47 + (id) newException:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo 49 return [[ANTLRRuntimeException alloc] init:aReason userInfo:aUserInfo]; 57 + (id) newException:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo; 59 return [[ANTLRRuntimeException alloc] initWithName:aName reason:aReason userInfo:aUserInfo]; 65 self = [super initWithName:@"ANTLRRuntimeException" reason:@"UnknownException" userInfo:nil]; 71 self = [super initWithName:(NSString *)@"ANTLRRuntimeException" reason:(NSString *)aReason userInfo:(NSDictionary *)nil]; 75 - (id) init:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo 77 self = [super initWithName:@"ANTLRRuntimeException" reason:aReason userInfo:aUserInfo]; 83 self = [super initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)nil]; 87 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInf [all...] |
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/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/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...] |
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...] |
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;
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
UserManagerTest.java | 23 import android.content.pm.UserInfo; 57 UserInfo userInfo = mUserManager.createUser("Guest 1", UserInfo.FLAG_GUEST); 58 assertTrue(userInfo != null); 60 List<UserInfo> list = mUserManager.getUsers(); 62 for (UserInfo user : list) { 63 if (user.id == userInfo.id && user.name.equals("Guest 1") 74 removeUser(userInfo.id); 78 UserInfo user1 = mUserManager.createUser("Guest 1", UserInfo.FLAG_GUEST) [all...] |
/frameworks/base/core/java/android/content/pm/ |
UserInfo.java | 27 public class UserInfo implements Parcelable { 77 public UserInfo(int id, String name, int flags) { 81 public UserInfo(int id, String name, String iconPath, int flags) { 104 public UserInfo() { 107 public UserInfo(UserInfo orig) { 124 return "UserInfo{" + id + ":" + name + ":" + Integer.toHexString(flags) + "}"; 142 public static final Parcelable.Creator<UserInfo> CREATOR 143 = new Parcelable.Creator<UserInfo>() { 144 public UserInfo createFromParcel(Parcel source) [all...] |
UserInfo.aidl | 20 parcelable UserInfo;
|
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/ |
KeyguardMultiUserSelectorView.java | 21 import android.content.pm.UserInfo; 69 public void addUsers(Collection<UserInfo> userList) { 70 UserInfo activeUser; 77 ArrayList<UserInfo> users = new ArrayList<UserInfo>(userList); 80 for (UserInfo user: users) { 108 Comparator<UserInfo> mOrderAddedComparator = new Comparator<UserInfo>() { 110 public int compare(UserInfo lhs, UserInfo rhs) [all...] |
/frameworks/base/core/java/android/os/ |
IUserManager.aidl | 22 import android.content.pm.UserInfo; 30 UserInfo createUser(in String name, int flags); 35 List<UserInfo> getUsers(boolean excludeDying); 36 UserInfo getUserInfo(int userHandle);
|
/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);
|
/frameworks/base/services/java/com/android/server/pm/ |
UserManagerService.java | 31 import android.content.pm.UserInfo; 121 private final SparseArray<UserInfo> mUsers = new SparseArray<UserInfo>(); 189 ArrayList<UserInfo> partials = new ArrayList<UserInfo>(); 191 UserInfo ui = mUsers.valueAt(i); 197 UserInfo ui = partials.get(i); 208 public List<UserInfo> getUsers(boolean excludeDying) { 211 ArrayList<UserInfo> users = new ArrayList<UserInfo>(mUsers.size()) [all...] |
/external/chromium/chrome/browser/ui/cocoa/ |
tracking_area.mm | 73 userInfo:(NSDictionary*)userInfo { 79 userInfo:userInfo]))) { 88 userInfo:(NSDictionary*)userInfo {
|
/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/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
|
CheckNSError.m | 14 + (id)errorWithDomain:(NSString *)domain code:(NSInteger)code userInfo:(NSDictionary *)dict; 25 *error = [NSError errorWithDomain:@"domain" code:1 userInfo:0]; // expected-warning {{Potential null dereference}} 29 if (error) *error = [NSError errorWithDomain:@"domain" code:1 userInfo:0]; // no-warning
|
/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(
|
/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...] |
/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/clang/test/Rewriter/ |
rewrite-modern-throw.m | 78 + (NSException *)exceptionWithName:(NSString *)name reason:(NSString *)reason userInfo:(NSDictionary *)userInfo; 88 @throw [NSException exceptionWithName: *_imp__NSInvalidArgumentException reason: [NSString stringWithFormat: @"Can't evaluate set expression; left subexpression not a set (lhs = %@ rhs = %@)", leftSet, rightSet] userInfo: 0];
|
/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/chromium/chrome/browser/resources/ |
host_registration_page.html | 54 function setUserInfo(userInfo) { 58 payload: userInfo
|
/packages/apps/Settings/src/com/android/settings/users/ |
UserUtils.java | 19 import android.content.pm.UserInfo; 27 public static Drawable getUserIcon(UserManager um, UserInfo user, Resources res) {
|
/external/webkit/Source/WebKit/mac/Storage/ |
WebDatabaseTrackerClient.mm | 104 RetainPtr<NSDictionary> userInfo(AdoptNS, [[NSDictionary alloc] 109 userInfo:userInfo.get()];
|