Searched defs:url (Results 151 - 175 of 1265) sorted by relevance

1234567891011>>

/external/chromium/net/http/
H A Dhttp_auth_filter_unittest.cc31 GURL url; member in struct:net::__anon2913::UrlData
83 filter.IsValid(urls[i].url, urls[i].target))
84 << " " << i << ": " << urls[i].url;
99 EXPECT_EQ(urls[i].matches, filter.IsValid(urls[i].url, urls[i].target))
100 << " " << i << ": " << urls[i].url;
H A Dhttp_stream_factory_impl_request.h18 Request(const GURL& url,
25 const GURL& url() const { return url_; } function in class:net::HttpStreamFactoryImpl::Request
H A Durl_security_manager_unittest.cc18 const char* url; member in struct:net::__anon2985::TestData
56 GURL gurl(kTestDataList[i].url);
75 GURL gurl(kTestDataList[i].url);
89 GURL gurl(kTestDataList[i].url);
/external/chromium/net/proxy/
H A Dproxy_resolver_script_data.cc28 const GURL& url) {
29 return new ProxyResolverScriptData(TYPE_SCRIPT_URL, url, string16());
43 const GURL& ProxyResolverScriptData::url() const { function in class:net::ProxyResolverScriptData
49 const GURL& url,
52 url_(url),
27 FromURL( const GURL& url) argument
48 ProxyResolverScriptData(Type type, const GURL& url, const string16& utf16) argument
/external/chromium/net/socket_stream/
H A Dsocket_stream_job_manager.cc23 const GURL& url, SocketStream::Delegate* delegate) const {
24 // If url is invalid, create plain SocketStreamJob, which will close
26 if (!url.is_valid()) {
28 job->InitSocketStream(new SocketStream(url, delegate));
32 const std::string& scheme = url.scheme(); // already lowercase
37 SocketStreamJob* job = found->second(url, delegate);
42 job->InitSocketStream(new SocketStream(url, delegate));
22 CreateJob( const GURL& url, SocketStream::Delegate* delegate) const argument
/external/chromium/net/url_request/
H A Durl_request_data_job.cc28 const GURL& url = request_->url(); local
29 if (!url.is_valid())
31 return DataURL::Parse(url, mime_type, charset, data);
/external/chromium/webkit/glue/
H A Dalt_error_page_resource_fetcher.cc22 const GURL& url,
30 url, frame, WebURLRequest::TargetIsMainFrame, kDownloadTimeoutSec,
21 AltErrorPageResourceFetcher( const GURL& url, WebFrame* frame, const WebURLError& original_error, Callback* callback) argument
H A Dmimetype_unittest.cc21 void LoadURL(const GURL& url) { argument
22 test_shell_->LoadURL(url);
28 GURL url(test_server_.GetURL(path + mimetype));
29 LoadURL(url);
H A Dwebdropdata.h33 GURL url; member in struct:WebDropData
34 string16 url_title; // The title associated with |url|.
/external/chromium-trace/trace-viewer/third_party/closure_linter/
H A Dsetup.py28 url='http://code.google.com/p/closure-linter', variable
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/
H A Dsetup.py57 url='http://code.google.com/p/pywebsocket/', variable
/external/javasqlite/src/main/java/SQLite/
H A DJDBCDriver.java85 public boolean acceptsURL(String url) throws SQLException { argument
86 return url.startsWith("sqlite:/") ||
87 url.startsWith("jdbc:sqlite:/");
90 public Connection connect(String url, Properties info) argument
92 if (!acceptsURL(url)) {
96 args[0] = url;
127 public DriverPropertyInfo[] getPropertyInfo(String url, Properties info) argument
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
H A DUrlAssetInfo.java19 private URL url; field in class:UrlAssetInfo
22 public static UrlAssetInfo create(AssetManager assetManager, AssetKey key, URL url) throws IOException { argument
25 URLConnection conn = url.openConnection();
29 // For some reason url cannot be reached?
33 return new UrlAssetInfo(assetManager, key, url, in);
37 private UrlAssetInfo(AssetManager assetManager, AssetKey key, URL url, InputStream in) throws IOException { argument
39 this.url = url;
57 URLConnection conn = url.openConnection();
61 throw new AssetLoadException("Failed to read URL " + url, e
[all...]
/external/linux-tools-perf/util/
H A Dsetup.py23 url='http://perf.wiki.kernel.org', variable
/external/llvm/utils/lit/
H A Dsetup.py11 url = 'http://llvm.org', variable
/external/oauth/core/src/main/java/net/oauth/http/
H A DHttpResponseMessage.java31 protected HttpResponseMessage(String method, URL url) { argument
32 super(method, url);
/external/webkit/Source/WebCore/bindings/
H A DScriptControllerBase.cpp50 return executeScript(ScriptSourceCode(script, forceUserGesture ? KURL() : m_frame->document()->url()));
71 bool ScriptController::executeIfJavaScriptURL(const KURL& url, ShouldReplaceDocumentIfJavaScriptURL shouldReplaceDocumentIfJavaScriptURL) argument
73 if (!protocolIsJavaScript(url))
88 String decodedURL = decodeURLEscapeSequences(url.string());
/external/webkit/Source/WebCore/bindings/js/
H A DScriptSourceCode.h45 ScriptSourceCode(const String& source, const KURL& url = KURL(), const TextPosition1& startPosition = TextPosition1::minimumPosition())
46 : m_provider(StringSourceProvider::create(source, url.isNull() ? String() : url.string(), startPosition))
48 , m_url(url)
66 const KURL& url() const { return m_url; } function in class:WebCore::ScriptSourceCode
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptProfileNode.cpp46 String ScriptProfileNode::url() const function in class:WebCore::ScriptProfileNode
/external/webkit/Source/WebCore/dom/
H A DBeforeLoadEvent.h39 static PassRefPtr<BeforeLoadEvent> create(const String& url) argument
41 return adoptRef(new BeforeLoadEvent(url));
44 void initBeforeLoadEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& url) argument
51 m_url = url;
54 const String& url() const { return m_url; } function in class:WebCore::BeforeLoadEvent
57 BeforeLoadEvent(const String& url) argument
59 , m_url(url)
/external/webkit/Source/WebCore/fileapi/
H A DBlob.h59 const KURL& url() const { return m_internalURL; } function in class:WebCore::Blob
H A DFile.cpp56 File::File(const String& path, const KURL& url, const String& type) argument
57 : Blob(url, type, -1)
H A DThreadableBlobRegistry.cpp42 BlobRegistryContext(const KURL& url, PassOwnPtr<BlobData> blobData) argument
43 : url(url.copy())
49 BlobRegistryContext(const KURL& url, const KURL& srcURL) argument
50 : url(url.copy())
55 BlobRegistryContext(const KURL& url) argument
56 : url(url.copy())
60 KURL url; member in struct:WebCore::BlobRegistryContext
73 registerBlobURL(const KURL& url, PassOwnPtr<BlobData> blobData) argument
89 registerBlobURL(const KURL& url, const KURL& srcURL) argument
105 unregisterBlobURL(const KURL& url) argument
[all...]
/external/webkit/Source/WebCore/html/
H A DHTMLDocument.h38 static PassRefPtr<HTMLDocument> create(Frame* frame, const KURL& url) argument
40 return adoptRef(new HTMLDocument(frame, url));
H A DHTMLViewSourceDocument.h38 static PassRefPtr<HTMLViewSourceDocument> create(Frame* frame, const KURL& url, const String& mimeType) argument
40 return adoptRef(new HTMLViewSourceDocument(frame, url, mimeType));
61 PassRefPtr<Element> addLink(const AtomicString& url, bool isAnchor);

Completed in 418 milliseconds

1234567891011>>