Lines Matching refs:url
1106 - (WebDownload *)_downloadURL:(NSURL *)URL
1108 ASSERT(URL);
1110 NSURLRequest *request = [[NSURLRequest alloc] initWithURL:URL];
1526 NSString *scheme = [[request URL] scheme];
1528 // Representations for URL schemes work at the top level.
1673 - (NSCachedURLResponse *)_cachedResponseForURL:(NSURL *)URL
1675 NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:URL];
1676 [request _web_setHTTPUserAgent:[self userAgentForURL:URL]];
1688 URL:linkURL ? linkURL : (NSURL *)[element objectForKey:WebElementImageURLKey]
2236 + (void)_addUserScriptToGroup:(NSString *)groupName world:(WebScriptWorld *)world source:(NSString *)source url:(NSURL *)url
2247 pageGroup->addUserScriptToWorld(core(world), source, url, toStringVector(whitelist), toStringVector(blacklist),
2251 + (void)_addUserStyleSheetToGroup:(NSString *)groupName world:(WebScriptWorld *)world source:(NSString *)source url:(NSURL *)url
2262 pageGroup->addUserStyleSheetToWorld(core(world), source, url, toStringVector(whitelist), toStringVector(blacklist));
2265 + (void)_removeUserScriptFromGroup:(NSString *)groupName world:(WebScriptWorld *)world url:(NSURL *)url
2275 pageGroup->removeUserScriptFromWorld(core(world), url);
2278 + (void)_removeUserStyleSheetFromGroup:(NSString *)groupName world:(WebScriptWorld *)world url:(NSURL *)url
2288 pageGroup->removeUserStyleSheetFromWorld(core(world), url);
3274 // Get the appropriate user-agent string for a particular URL.
3275 - (NSString *)userAgentForURL:(NSURL *)url
3613 return [[[ds request] URL] _web_originalDataAsString];
4323 while (NSString *url = [enumerator nextObject]) {
4324 size_t length = [url length];
4325 const UChar* characters = CFStringGetCharactersPtr(reinterpret_cast<CFStringRef>(url));
4330 [url getCharacters:buffer.data()];
5346 // Get the URL for this notification
5352 // If that URL matches the current main frame, dispatch the delegate call, which will also unregister
5377 Image* image = iconDatabase()->iconForPageURL(core(webFrame)->loader()->url().string(), IntSize(16, 16));