/external/nist-sip/java/gov/nist/javax/sip/address/ |
D | Authority.java | 52 protected UserInfo userInfo; field in Authority 63 if (userInfo != null) { in encode() 64 userInfo.encode(buffer); in encode() 87 if (this.userInfo != null && otherAuth.userInfo != null) { in equals() 88 if (!this.userInfo.equals(otherAuth.userInfo)) { in equals() 108 return userInfo; in getUserInfo() 116 if (userInfo == null) in getPassword() 119 return userInfo.password; in getPassword() 127 return userInfo != null ? userInfo.user : null; in getUser() 164 if (userInfo == null) in setPassword() [all …]
|
/external/antlr/runtime/ObjC/Framework/ |
D | RuntimeException.m | 47 + (id) newException:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo 49 return [[RuntimeException alloc] init:aReason userInfo:aUserInfo]; 57 + (id) newException:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo; 59 return [[RuntimeException alloc] initWithName:aName reason:aReason userInfo:aUserInfo]; 65 self = [super initWithName:@"RuntimeException" reason:@"UnknownException" userInfo:nil]; 71 …self = [super initWithName:(NSString *)@"RuntimeException" reason:(NSString *)aReason userInfo:(NS… 75 - (id) init:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo 77 self = [super initWithName:@"RuntimeException" reason:aReason userInfo:aUserInfo]; 83 …self = [super initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)n… 87 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo [all …]
|
D | RuntimeException.h | 39 + (RuntimeException *) newException:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo; 42 + (RuntimeException *) newException:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictio… 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; 75 - (id) init:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo; 83 + (id) newException:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo; 87 - (id) init:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo; 96 + (id) newException:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo; [all …]
|
D | AMutableArray.m | 110 userInfo:nil]; 125 …ionWithName:NSInvalidArgumentException reason:@"Attempt to insert nil objectAtIndex" userInfo:nil]; 128 …exceptionWithName:NSRangeException reason:@"Attempt to insertObjectAtIndex past end" userInfo:nil]; 146 …onWithName:NSRangeException reason:@"Attempt to insert removeObjectAtIndex past end" userInfo:nil]; 162 …tion exceptionWithName:NSRangeException reason:@"Attempt to removeLastObject from 0" userInfo:nil]; 174 …tion exceptionWithName:NSRangeException reason:@"Attempt to removeAllObjects from 0" userInfo:nil]; 194 …tion exceptionWithName:NSRangeException reason:@"Attempt to replace object past end" userInfo:nil];
|
D | UnbufferedCommonTreeNodeStream.m | 114 …n" reason:@"-LT: looking back more than one node unsupported for unbuffered streams" userInfo:nil]; 161 …ame:@"ANTLRTreeException" reason:@"-nodeAtIndex: unsupported for unbuffered streams" userInfo:nil]; 166 …ithName:@"ANTLRTreeException" reason:@"-toString unsupported for unbuffered streams" userInfo:nil]; 171 …thName:@"ANTLRTreeException" reason:@"-toString: unsupported for unbuffered streams" userInfo:nil]; 176 …reeException" reason:@"-toStringFromNode:toNode: unsupported for unbuffered streams" userInfo:nil]; 254 …ithName:@"ANTLRTreeException" reason:@"-release: unsupported for unbuffered streams" userInfo:nil]; 260 …:@"ANTLRTreeException" reason:@"-seek: backwards unsupported for unbuffered streams" userInfo:nil];
|
D | RecognitionException.m | 61 self = [super initWithName:@"Recognition Exception" reason:@"Recognition Exception" userInfo:nil]; 69 self = [super initWithName:NSStringFromClass([self class]) reason:aReason userInfo:nil]; 96 …self = [super initWithName:NSStringFromClass([self class]) reason:@"Runtime Exception" userInfo:ni… 122 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo 124 self = [super initWithName:aName reason:aReason userInfo:aUserInfo];
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowUserManager.java | 150 UserInfo userInfo = new UserInfo(profileUserHandle, profileName, profileFlags); in addProfile() local 152 profiles.get(userHandle).add(userInfo); in addProfile() 153 userInfoMap.put(profileUserHandle, userInfo); in addProfile() 361 UserInfo userInfo = getUserInfo(UserHandle.myUserId()); in setIsDemoUser() local 363 userInfo.flags |= UserInfo.FLAG_DEMO; in setIsDemoUser() 365 userInfo.flags &= ~UserInfo.FLAG_DEMO; in setIsDemoUser() 382 UserInfo userInfo = getUserInfo(UserHandle.myUserId()); in setIsAdminUser() local 384 userInfo.flags |= UserInfo.FLAG_ADMIN; in setIsAdminUser() 386 userInfo.flags &= ~UserInfo.FLAG_ADMIN; in setIsAdminUser() 423 UserInfo userInfo = getUserInfo(UserHandle.myUserId()); in setIsPrimaryUser() local [all …]
|
/external/llvm-project/lldb/test/API/lang/objc/exceptions/ |
D | TestObjCExceptions.py | 84 userInfo = e1.GetChildMemberWithName("userInfo").dynamic 85 self.assertEqual(userInfo.summary, "1 key/value pair") 86 self.assertEqual(userInfo.GetChildAtIndex(0).GetChildAtIndex(0).description, "some_key") 87 self.assertEqual(userInfo.GetChildAtIndex(0).GetChildAtIndex(1).description, "some_value") 113 userInfo = e2.GetChildMemberWithName("userInfo").dynamic 114 self.assertEqual(userInfo.summary, "1 key/value pair") 115 self.assertEqual(userInfo.GetChildAtIndex(0).GetChildAtIndex(0).description, "some_key") 116 self.assertEqual(userInfo.GetChildAtIndex(0).GetChildAtIndex(1).description, "some_value")
|
D | main.mm | 16 … @throw [[NSException alloc] initWithName:@"ThrownException" reason:@"SomeReason" userInfo:info]; 18 …row [[MyCustomException alloc] initWithName:@"ThrownException" reason:@"SomeReason" userInfo:info]; 38 …ption *e1 = [[NSException alloc] initWithName:@"ExceptionName" reason:@"SomeReason" userInfo:info];
|
/external/llvm-project/clang/test/Analysis/ |
D | cfref_PR2519.c | 26 …CenterRef center, CFStringRef name, const void *object, CFDictionaryRef userInfo, Boolean deliverI… 36 …CFDictionaryRef userInfo = CFDictionaryCreate(kCFAllocatorDefault, (const void **)&_key, (const vo… in main() local 41 userInfo, 0); in main() 42 CFRelease(userInfo); // no-warning in main()
|
D | CheckNSError.m | 17 + (id)errorWithDomain:(NSString *)domain code:(NSInteger)code userInfo:(NSDictionary *)dict; 30 …*error = [NSError errorWithDomain:@"domain" code:1 userInfo:0]; // expected-warning {{Potential nu… 34 if (error) *error = [NSError errorWithDomain:@"domain" code:1 userInfo:0]; // no-warning 39 *error = [NSError errorWithDomain:@"domain" code:1 userInfo:0]; // no-warning 44 *error = [NSError errorWithDomain:@"domain" code:1 userInfo:0]; // no-warning
|
D | NoReturn.m | 35 …n *)exceptionWithName:(NSString *)name reason:(NSString *)reason userInfo:(NSDictionary *)userInfo; 73 …[[NSException exceptionWithName:@"My Exception" reason:@"Want to test exceptions." userInfo:0] rai…
|
/external/clang/test/Analysis/ |
D | cfref_PR2519.c | 26 …CenterRef center, CFStringRef name, const void *object, CFDictionaryRef userInfo, Boolean deliverI… 36 …CFDictionaryRef userInfo = CFDictionaryCreate(kCFAllocatorDefault, (const void **)&_key, (const vo… in main() local 41 userInfo, 0); in main() 42 CFRelease(userInfo); // no-warning in main()
|
D | 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 nu… 29 if (error) *error = [NSError errorWithDomain:@"domain" code:1 userInfo:0]; // no-warning
|
/external/OpenCL-CTS/test_common/harness/ |
D | ThreadPool.h | 40 void *userInfo); 45 cl_int ThreadPool_Do(TPFuncPtr func_ptr, cl_uint count, void *userInfo);
|
/external/walt/ios/WALT/ |
D | MIDIClient.m | 86 userInfo:nil]; 177 *error = [NSError errorWithDomain:NSOSStatusErrorDomain code:result userInfo:nil]; 199 *error = [NSError errorWithDomain:NSOSStatusErrorDomain code:result userInfo:nil]; 209 *error = [NSError errorWithDomain:NSOSStatusErrorDomain code:result userInfo:nil]; 225 *error = [NSError errorWithDomain:NSOSStatusErrorDomain code:result userInfo:nil]; 241 userInfo:@{NSLocalizedDescriptionKey: 254 userInfo:@{NSLocalizedDescriptionKey: 263 *error = [NSError errorWithDomain:NSOSStatusErrorDomain code:result userInfo:nil];
|
D | WALTClient.m | 207 userInfo:@{NSLocalizedDescriptionKey: 242 userInfo:@{NSLocalizedDescriptionKey: 300 userInfo:@{NSLocalizedDescriptionKey: 328 userInfo:@{NSLocalizedDescriptionKey: 370 userInfo:@{NSLocalizedDescriptionKey: 381 userInfo:@{NSLocalizedDescriptionKey: 417 userInfo:@{NSLocalizedDescriptionKey: 432 userInfo:@{NSLocalizedDescriptionKey: 542 userInfo:@{NSLocalizedDescriptionKey:
|
/external/clang/test/Rewriter/ |
D | rewrite-modern-throw.m | 78 …n *)exceptionWithName:(NSString *)name reason:(NSString *)reason userInfo:(NSDictionary *)userInfo; 88 …set expression; left subexpression not a set (lhs = %@ rhs = %@)", leftSet, rightSet] userInfo: 0];
|
/external/llvm-project/clang/test/Rewriter/ |
D | rewrite-modern-throw.m | 78 …n *)exceptionWithName:(NSString *)name reason:(NSString *)reason userInfo:(NSDictionary *)userInfo; 88 …set expression; left subexpression not a set (lhs = %@ rhs = %@)", leftSet, rightSet] userInfo: 0];
|
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/ |
D | objc-avoid-nserror-init.m | 10 …GES: :[[@LINE-1]]:22: warning: use errorWithDomain:code:userInfo: or initWithDomain:code:userInfo:…
|
/external/llvm-project/lldb/test/API/commands/expression/namespace_local_var_same_name_obj_c/ |
D | util.mm | 14 NSError* error = [NSError errorWithDomain:NSURLErrorDomain code:-1 userInfo:nil]; 19 NSError* error = [NSError errorWithDomain:NSURLErrorDomain code:-1 userInfo:nil];
|
/external/grpc-grpc/src/objective-c/GRPCClient/ |
D | GRPCCall.m | 237 userInfo:@{NSLocalizedDescriptionKey : @"Canceled by app"}]]; 303 userInfo:@{ 431 NSMutableDictionary *userInfo = [NSMutableDictionary dictionary]; 432 if (error.userInfo) { 433 [userInfo addEntriesFromDictionary:error.userInfo]; 435 userInfo[kGRPCTrailersKey] = strongSelf.responseTrailers; 442 userInfo[kGRPCHeadersKey] = strongSelf.responseHeaders; 444 error = [NSError errorWithDomain:error.domain code:error.code userInfo:userInfo]; 546 userInfo:@{
|
/external/google-breakpad/src/common/mac/testing/ |
D | GTMSenTestCase.m | 42 NSDictionary *userInfo = 50 userInfo:userInfo]; 261 NSDictionary *userInfo = [exception userInfo]; 262 NSString *filename = [userInfo objectForKey:SenTestFilenameKey]; 263 NSNumber *lineNumber = [userInfo objectForKey:SenTestLineNumberKey];
|
/external/grpc-grpc/src/objective-c/RxLibrary/ |
D | GRXWriteable.m | 45 NSDictionary *userInfo = 59 [NSError errorWithDomain:kGRPCErrorDomain code:kGRPCErrorCodeInternal userInfo:userInfo]);
|
/external/webrtc/examples/objc/AppRTCMobile/ |
D | ARDAppClient.m | 91 userInfo:nil 462 NSDictionary *userInfo = @{ 468 userInfo:userInfo]; 492 NSDictionary *userInfo = @{ 498 userInfo:userInfo]; 834 userInfo:@{ 842 userInfo:@{ 859 userInfo:@{ 866 userInfo:@{ 873 userInfo:@{
|