/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];
|
D | ArrayIterator.m | 64 userInfo:nil]; 87 userInfo:nil]; 104 userInfo:nil];
|
D | AMutableDictionary.m | 108 userInfo:nil]; 139 userInfo:nil]; 152 …NSException exceptionWithName:NSInvalidArgumentException reason:@"key alreadyExists" userInfo:nil];
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowUserManager.java | 239 UserInfo userInfo = getUserInfo(UserHandle.myUserId()); in setIsDemoUser() local 241 userInfo.flags |= UserInfo.FLAG_DEMO; in setIsDemoUser() 243 userInfo.flags &= ~UserInfo.FLAG_DEMO; in setIsDemoUser() 260 UserInfo userInfo = getUserInfo(UserHandle.myUserId()); in setIsAdminUser() local 262 userInfo.flags |= UserInfo.FLAG_ADMIN; in setIsAdminUser() 264 userInfo.flags &= ~UserInfo.FLAG_ADMIN; in setIsAdminUser() 301 UserInfo userInfo = getUserInfo(UserHandle.myUserId()); in setIsPrimaryUser() local 303 userInfo.flags |= UserInfo.FLAG_PRIMARY; in setIsPrimaryUser() 305 userInfo.flags &= ~UserInfo.FLAG_PRIMARY; in setIsPrimaryUser() 326 UserInfo userInfo = getUserInfo(UserHandle.myUserId()); in setIsLinkedUser() local [all …]
|
/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
|
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/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/webrtc/webrtc/examples/objc/AppRTCDemo/ |
D | ARDAppClient.m | 76 userInfo:nil 407 NSDictionary *userInfo = @{ 413 userInfo:userInfo]; 436 NSDictionary *userInfo = @{ 442 userInfo:userInfo]; 686 userInfo:@{ 694 userInfo:@{ 711 userInfo:@{ 718 userInfo:@{ 725 userInfo:@{
|
/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/grpc-grpc/src/objective-c/RxLibrary/ |
D | GRXWriteable.m | 45 NSDictionary *userInfo = 59 [NSError errorWithDomain:kGRPCErrorDomain code:kGRPCErrorCodeInternal userInfo:userInfo]);
|
/external/google-breakpad/src/common/mac/testing/ |
D | GTMSenTestCase.m | 46 NSDictionary *userInfo = 54 userInfo:userInfo]; 265 NSDictionary *userInfo = [exception userInfo]; 266 NSString *filename = [userInfo objectForKey:SenTestFilenameKey]; 267 NSNumber *lineNumber = [userInfo objectForKey:SenTestLineNumberKey];
|
/external/grpc-grpc/examples/objective-c/auth_sample/ |
D | MakeRPCViewController.m | 38 // |userInfo[kGRPCHeadersKey]| is the dictionary of response headers. 39 NSString *challengeHeader = self.userInfo[kGRPCHeadersKey][@"www-authenticate"] ?: @"";
|
/external/webrtc/webrtc/examples/objc/AppRTCDemo/mac/ |
D | APPRTCViewController.m | 117 NSDictionary* userInfo = [notification userInfo]; 118 NSInteger textMovement = [userInfo[@"NSTextMovement"] intValue];
|
/external/grpc-grpc/src/objective-c/tests/ |
D | RxLibraryUnitTests.m | 86 NSError *anyError = [NSError errorWithDomain:@"domain" code:7 userInfo:nil]; 102 NSError *anyError = [NSError errorWithDomain:@"domain" code:7 userInfo:nil]; 182 NSError *anyError = [NSError errorWithDomain:@"domain" code:7 userInfo:nil];
|
/external/cldr/tools/java/org/unicode/cldr/test/ |
D | CheckCLDR.java | 179 UserInfo userInfo // can get voterInfo from this. in getShowRowAction() argument 197 …if (userInfo != null && userInfo.getVoterInfo().getLevel().compareTo(VoteResolver.Level.tc) >= 0) { in getShowRowAction() 253 UserInfo userInfo // can get voterInfo from this. in getAcceptNewItemAction() argument 260 if (userInfo == null) { in getAcceptNewItemAction() 270 if (userInfo.getVoterInfo().getLevel().compareTo(VoteResolver.Level.tc) >= 0) { in getAcceptNewItemAction()
|
/external/tensorflow/tensorflow/lite/experimental/objc/sources/ |
D | TFLErrorUtil.m | 32 userInfo:@{NSLocalizedDescriptionKey : description}];
|
/external/grpc-grpc/src/objective-c/GRPCClient/private/ |
D | NSError+GRPC.m | 36 userInfo:@{
|