Searched defs:url (Results 251 - 275 of 1185) sorted by relevance

<<11121314151617181920>>

/external/chromium/chrome/browser/renderer_host/
H A Dsave_file_resource_handler.cc17 const GURL& url,
22 url_(url),
34 const GURL& url,
37 final_url_ = url;
46 info->url = url_;
64 const GURL& url,
15 SaveFileResourceHandler(int render_process_host_id, int render_view_id, const GURL& url, SaveFileManager* manager) argument
33 OnRequestRedirected(int request_id, const GURL& url, ResourceResponse* response, bool* defer) argument
63 OnWillStart(int request_id, const GURL& url, bool* defer) argument
/external/chromium/chrome/browser/
H A Dshell_integration.cc28 const GURL& url,
50 // the kApp switch (the launch url will be read from the extension app
55 // Use '--app=url' instead of just 'url' to launch the browser with minimal
58 new_cmd_line.AppendSwitchASCII(switches::kApp, url.spec());
27 CommandLineArgsForLauncher( const GURL& url, const std::string& extension_app_id) argument
/external/chromium/chrome/browser/ui/
H A Dbrowser_init.h30 // Adds a url to be opened during first run. This overrides the standard
32 void AddFirstRunTab(const GURL& url);
83 // The url to load.
84 GURL url; member in struct:BrowserInit::LaunchWithProfile::Tab
168 // Adds a Tab to |tabs| for each url in |urls| that doesn't already exist
/external/chromium/chrome/browser/ui/views/
H A Ddom_view.cc41 void DOMView::LoadURL(const GURL& url) { argument
43 tab_contents_->controller().LoadURL(url, GURL(), PageTransition::START_PAGE);
H A Dfind_bar_host_interactive_uitest.cc54 GURL url = test_server()->GetURL(kSimplePage); local
55 ui_test_utils::NavigateToURL(browser(), url); local
60 browser()->AddSelectedTabWithURL(url, PageTransition::TYPED);
88 GURL url = test_server()->GetURL("title1.html"); local
89 ui_test_utils::NavigateToURL(browser(), url); local
133 GURL url = test_server()->GetURL(kSimplePage); local
134 ui_test_utils::NavigateToURL(browser(), url); local
149 browser()->AddSelectedTabWithURL(url, PageTransition::TYPED);
197 GURL url = test_server()->GetURL(kSimplePage); local
198 ui_test_utils::NavigateToURL(browser(), url); local
[all...]
/external/chromium/chrome/browser/ui/views/tabs/
H A Dtab_renderer_data.h44 GURL url; member in struct:TabRendererData
/external/chromium/chrome/browser/webdata/
H A Dkeyword_table_unittest.cc36 static int64 GetID(const TemplateURL* url) { argument
37 return url->id();
40 static void SetID(int64 new_id, TemplateURL* url) { argument
41 url->set_id(new_id);
44 static void set_prepopulate_id(TemplateURL* url, int id) { argument
45 url->set_prepopulate_id(id);
48 static void set_logo_id(TemplateURL* url, int id) { argument
49 url->set_logo_id(id);
67 GURL favicon_url("http://favicon.url/");
70 template_url.SetURL("http://url/",
[all...]
H A Dlogins_table_unittest.cc177 static bool AddTimestampedLogin(WebDatabase* db, std::string url, argument
182 form.origin = GURL(url + std::string("/LoginAuth"));
187 form.signon_realm = url;
/external/chromium/chrome/common/extensions/
H A Dextension_file_util_unittest.cc199 const char* url; member in struct:TestCase
225 GURL url(test_cases[i].url);
233 extension_file_util::ExtensionURLToRelativeFilePath(url);
237 " For the path " << url;
/external/chromium/chrome/common/net/gaia/
H A Dgaia_auth_fetcher_unittest.h23 const GURL& url,
46 const GURL& url,
49 return new T(success_, url, results_, request_type, d);
45 CreateURLFetcher(int id, const GURL& url, URLFetcher::RequestType request_type, URLFetcher::Delegate* d) argument
/external/chromium/googleurl/src/
H A Durl_parse_file.cc235 void ParseFileURL(const char* url, int url_len, Parsed* parsed) { argument
236 DoParseFileURL(url, url_len, parsed);
239 void ParseFileURL(const char16* url, int url_len, Parsed* parsed) { argument
240 DoParseFileURL(url, url_len, parsed);
/external/chromium/net/base/
H A Dnet_util_win.cc25 bool FileURLToFilePath(const GURL& url, FilePath* file_path) { argument
30 if (!url.is_valid())
34 std::string host = url.host();
39 path = url.path();
48 path.append(url.path());
/external/chromium/net/http/
H A Dhttp_request_info.h33 GURL url; member in struct:net::HttpRequestInfo
/external/chromium/third_party/libjingle/source/talk/base/
H A Dautodetectproxy.h51 void set_server_url(const std::string& url) { argument
52 server_url_ = url;
/external/chromium/third_party/libjingle/source/talk/xmpp/
H A Dprexmppauth.h47 CaptchaChallenge(const std::string& token, const std::string& url) argument
48 : captcha_needed_(true), captcha_token_(token), captcha_image_url_(url) {
54 // This url is relative to the gaia server. Once we have better tools
/external/chromium/webkit/glue/
H A Dwebsocketstreamhandle_delegate.h22 const GURL& url) {}
21 WillOpenStream(WebKit::WebSocketStreamHandle* handle, const GURL& url) argument
/external/doclava/src/com/google/doclava/apicheck/
H A DApiCheck.java160 public ApiInfo parseApi(URL url) throws ApiParseException { argument
164 stream = url.openStream();
166 throw new ApiParseException("Could not open stream for parsing: " + url, e);
169 return ApiFile.parseApi(url.toString(), stream);
178 stream = url.openStream();
180 throw new ApiParseException("Could not open stream for parsing: " + url, e);
/external/guava/src/com/google/common/io/
H A DResources.java47 * @param url the URL to read from
51 final URL url) {
52 checkNotNull(url);
55 return url.openStream();
64 * @param url the URL to read from
69 URL url, Charset charset) {
70 return CharStreams.newReaderSupplier(newInputStreamSupplier(url), charset);
76 * @param url the URL to read from
80 public static byte[] toByteArray(URL url) throws IOException { argument
81 return ByteStreams.toByteArray(newInputStreamSupplier(url));
50 newInputStreamSupplier( final URL url) argument
68 newReaderSupplier( URL url, Charset charset) argument
93 toString(URL url, Charset charset) argument
107 readLines(URL url, Charset charset, LineProcessor<T> callback) argument
122 readLines(URL url, Charset charset) argument
[all...]
/external/oauth/core/src/main/java/net/oauth/
H A DOAuthAccessor.java71 public OAuthMessage newRequestMessage(String method, String url, argument
83 OAuthMessage message = new OAuthMessage(method, url, parameters);
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityImageMapLink.cpp91 KURL AccessibilityImageMapLink::url() const function in class:WebCore::AccessibilityImageMapLink
142 return url();
/external/webkit/Source/WebCore/bindings/js/
H A DStringSourceProvider.h40 static PassRefPtr<StringSourceProvider> create(const String& source, const String& url, const TextPosition1& startPosition = TextPosition1::minimumPosition()) argument
42 return adoptRef(new StringSourceProvider(source, url, startPosition));
52 StringSourceProvider(const String& source, const String& url, const TextPosition1& startPosition) argument
53 : ScriptSourceProvider(stringToUString(url))
63 inline JSC::SourceCode makeSource(const String& source, const String& url = String(), int firstLine = 1)
65 return JSC::SourceCode(StringSourceProvider::create(source, url), firstLine);
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptSourceCode.h44 ScriptSourceCode(const String& source, const KURL& url = KURL(), const TextPosition1& startPosition = TextPosition1::minimumPosition())
47 , m_url(url)
57 , m_url(ParsedURLString, cs->url())
66 const KURL& url() const function in class:WebCore::ScriptSourceCode
69 return m_cachedScript->response().url();
/external/webkit/Source/WebCore/css/
H A DCSSCursorImageValue.cpp40 static inline bool isSVGCursorIdentifier(const String& url) argument
42 KURL kurl(ParsedURLString, url);
56 CSSCursorImageValue::CSSCursorImageValue(const String& url, const IntPoint& hotSpot) argument
57 : CSSImageValue(url)
65 const String& url = getStringValue(); local
66 if (!isSVGCursorIdentifier(url))
75 if (SVGCursorElement* cursorElement = resourceReferencedByCursorElement(url, referencedElement->document()))
89 const String& url = getStringValue();
90 if (!isSVGCursorIdentifier(url))
93 if (SVGCursorElement* cursorElement = resourceReferencedByCursorElement(url, elemen
117 String url = getStringValue(); local
[all...]
/external/webkit/Source/WebCore/html/
H A DHTMLSourceElement.cpp71 void HTMLSourceElement::setSrc(const String& url) argument
73 setAttribute(srcAttr, url);
H A DPluginDocument.h36 static PassRefPtr<PluginDocument> create(Frame* frame, const KURL& url) argument
38 return adoptRef(new PluginDocument(frame, url));

Completed in 2689 milliseconds

<<11121314151617181920>>