/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 …]
|
D | SipUri.java | 116 UserInfo userInfo = authority.getUserInfo(); in clearPassword() local 117 if (userInfo != null) in clearPassword() 118 userInfo.clearPassword(); in clearPassword()
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | 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 …ithName:(NSString *)@"ANTLRRuntimeException" reason:(NSString *)aReason userInfo:(NSDictionary *)n… 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 *)n… 87 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo [all …]
|
D | ANTLRRuntimeException.h | 39 + (ANTLRRuntimeException *) newException:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo; 42 + (ANTLRRuntimeException *) newException:(NSString *)aName reason:(NSString *)aReason userInfo:(NSD… 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 …]
|
D | AMutableArray.m | 108 userInfo:nil]; 123 …ionWithName:NSInvalidArgumentException reason:@"Attempt to insert nil objectAtIndex" userInfo:nil]; 126 …exceptionWithName:NSRangeException reason:@"Attempt to insertObjectAtIndex past end" userInfo:nil]; 144 …onWithName:NSRangeException reason:@"Attempt to insert removeObjectAtIndex past end" userInfo:nil]; 160 …tion exceptionWithName:NSRangeException reason:@"Attempt to removeLastObject from 0" userInfo:nil]; 172 …tion exceptionWithName:NSRangeException reason:@"Attempt to removeAllObjects from 0" userInfo:nil]; 192 …tion exceptionWithName:NSRangeException reason:@"Attempt to replace object past end" userInfo:nil];
|
D | ANTLRRecognitionException.m | 56 self = [super initWithName:@"Recognition Exception" reason:@"Recognition Exception" userInfo:nil]; 64 self = [super initWithName:NSStringFromClass([self class]) reason:aReason userInfo:nil]; 91 …self = [super initWithName:NSStringFromClass([self class]) reason:@"Runtime Exception" userInfo:ni… 97 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo 99 self = [super initWithName:aName reason:aReason userInfo:aUserInfo];
|
D | ANTLRUnbufferedCommonTreeNodeStream.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 | 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];
|
D | ANTLRRecognitionException.h | 57 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
|
D | ANTLRRewriteRuleElementStream.m | 200 …@throw [NSException exceptionWithName:@"RewriteEmptyStreamException" reason:nil userInfo:nil];// T… 206 …@throw [NSException exceptionWithName:@"RewriteCardinalityException" reason:nil userInfo:nil];// T…
|
/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/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/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
D | ANTLRRuntimeException.h | 42 …eption *) 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/Headers/ |
D | ANTLRRuntimeException.h | 42 …eption *) 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/ |
D | ANTLRRuntimeException.h | 42 …eption *) newANTLRRuntimeException:(NSString *)aName reason:(NSString *)aReason userInfo:aUserInfo; 48 - (id)initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
|
/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:@{
|
D | ARDCEODTURNClient.m | 56 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/webrtc/webrtc/examples/objc/AppRTCDemo/mac/ |
D | APPRTCViewController.m | 117 NSDictionary* userInfo = [notification userInfo]; 118 NSInteger textMovement = [userInfo[@"NSTextMovement"] intValue];
|
/external/skia/experimental/FileReaderApp/ |
D | FileReaderWindow.mm | 28 selector:@selector(redraw) userInfo:nil
|
/external/skia/src/views/mac/ |
D | SkEventNotifier.mm | 44 userInfo:nil repeats:NO];
|
/external/webrtc/talk/app/webrtc/objc/ |
D | RTCPeerConnection.mm | 79 userInfo:@{@"error" : str}]; 108 userInfo:@{@"error" : str}];
|