Home | History | Annotate | Download | only in Misc

Lines Matching full:code

8  * 1.  Redistributions of source code must retain the above copyright
72 -(id)_webkit_initWithDomain:(NSString *)domain code:(int)code URL:(NSURL *)URL
79 localizedDesc = descriptionsDict ? [descriptionsDict objectForKey:[NSNumber numberWithInt:code]] : nil;
85 return [self initWithDomain:domain code:code userInfo:dict];
88 +(id)_webkit_errorWithDomain:(NSString *)domain code:(int)code URL:(NSURL *)URL
90 return [[[self alloc] _webkit_initWithDomain:domain code:code URL:URL] autorelease];
93 + (NSError *)_webKitErrorWithDomain:(NSString *)domain code:(int)code URL:(NSURL *)URL
96 return [self _webkit_errorWithDomain:domain code:code URL:URL];
99 + (NSError *)_webKitErrorWithCode:(int)code failingURL:(NSString *)URLString
101 return [self _webKitErrorWithDomain:WebKitErrorDomain code:code URL:[NSURL _web_URLWithUserTypedString:URLString]];
104 - (id)_initWithPluginErrorCode:(int)code
114 NSString *localizedDescription = [descriptionsForWebKitErrorDomain objectForKey:[NSNumber numberWithInt:code]];
137 NSError *error = [self initWithDomain:WebKitErrorDomain code:code userInfo:userInfoCopy];