Searched defs:url (Results 1 - 25 of 2522) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/Python/
H A Dez_setup.py113 url = download_base + egg_name variable
134 version, download_base, delay, url
136 log.warn("Downloading %s", url)
137 src = urllib2.urlopen(url)
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DURLConnectionTest.java49 public MockURLConnection(URL url) { argument
50 super(url);
82 URL url = ClassLoader.getSystemClassLoader().getResource(resourceName);
83 assertNotNull("Cannot find test resource " + resourceName, url);
84 return url.openConnection().getContentType();
87 URL url; field in class:URLConnectionTest
91 url = new URL("http://localhost/");
92 uc = url.openConnection();
514 URL url = new URL("http", "test", 80, "index.html", new NewHandler());
515 URLConnection urlCon = url
[all...]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DProtectionDomainTest.java40 private URL url = null; field in class:ProtectionDomainTest
56 url = new URL("http://localhost");
60 cs = new CodeSource(url, (java.security.cert.Certificate[]) null);
63 classldr = URLClassLoader.newInstance(new URL[] { url });
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DDriverManagerTest.java533 public boolean acceptsURL(String url) { argument
542 public boolean acceptsURL(String url) { argument
543 return url.equals(goodurl);
546 public Connection connect(String url, Properties info) { argument
550 public DriverPropertyInfo[] getPropertyInfo(String url, Properties info) { argument
H A DTestHelper_Driver1.java55 public boolean acceptsURL(String url) throws SQLException { argument
57 if (url == null) {
60 // Everything's fine if the quoted url starts with the base url for this
62 if (url.startsWith(baseURL)) {
76 public Connection connect(String url, Properties info) throws SQLException { argument
78 if (this.acceptsURL(url)) {
79 // The datasource name is the remainder of the url after the ":"
80 String datasource = url.substring(baseURL.length() + 1);
105 public DriverPropertyInfo[] getPropertyInfo(String url, Propertie argument
[all...]
H A DTestHelper_Driver4.java53 public boolean acceptsURL(String url) throws SQLException { argument
55 if (url == null) {
58 // Everything's fine if the quoted url starts with the base url for this
60 if (url.startsWith(baseURL)) {
74 public Connection connect(String url, Properties info) throws SQLException { argument
76 if (this.acceptsURL(url)) {
77 // The datasource name is the remainder of the url after the ":"
78 String datasource = url.substring(baseURL.length() + 1);
121 public DriverPropertyInfo[] getPropertyInfo(String url, Propertie argument
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_GetLocal.java37 public static File getLocalFile(String url) throws IOException, argument
39 url = Support_Resources.RESOURCE_PACKAGE + url;
40 File temp = cache.get(url);
42 InputStream in = Support_GetLocal.class.getResourceAsStream(url);
53 cache.put(url, temp);
58 public static File getExternalLocalFile(String url) throws IOException, argument
60 File temp = cache.get(url);
62 InputStream in = new URL(url).openStream();
73 cache.put(url, tem
78 getStream(String url) argument
[all...]
/external/apache-harmony/support/src/test/java/tests/support/resource/
H A DSupport_Resources.java52 URL url = null;
58 url = new URL("file:/" + resPath + "/" + fileName);
62 return url.toString();
118 public static File getExternalLocalFile(String url) throws IOException, MalformedURLException { argument
120 InputStream in = new URL(url).openStream();
151 URL url = ClassLoader.getSystemClassLoader().getResource(name);
152 if (url == null) {
157 return new File(url.toURI()).getAbsolutePath();
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
H A DHttpsURLConnectionTest.java107 public MyHttpsURLConnection(URL url) { argument
108 super(url);
/external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/ssl/
H A DHttpsURLConnection_ImplTest.java57 public MyHttpsURLConnection(URL url) { argument
58 super(url);
/external/apache-http/src/org/apache/commons/logging/
H A DLogFactory.java1363 private static Properties getProperties(final URL url) { argument
1368 InputStream stream = url.openStream();
1377 logDiagnostic("Unable to read URL " + url);
1420 URL url = (URL) urls.nextElement();
1422 Properties newProps = getProperties(url);
1425 propsUrl = url;
1435 "[LOOKUP] Properties file found at '" + url + "'"
1448 "[LOOKUP] Properties file at '" + url + "'"
1454 propsUrl = url;
1460 "[LOOKUP] Properties file at '" + url
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DStylesheetHandler.java222 * @param url URL string on which an equality test will be performed.
224 * @return true if the stack contains the url argument.
226 private boolean stackContains(Stack stack, String url) argument
236 if (url2.equals(url))
598 // url.equals(Constants.S_XSLNAMESPACEURL))
/external/apache-xml/src/main/java/org/apache/xpath/
H A DSourceTree.java38 * @param url The URI of the source tree.
40 public SourceTree(int root, String url) argument
43 m_url = url;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DPKIXNameConstraintValidator.java1425 private static String extractHostFromURL(String url) argument
1429 String sub = url.substring(url.indexOf(':') + 1);
/external/chromium-libpac/src/
H A Dproxy_resolver_v8.cc366 int ResolveProxy(const android::String16 url, const android::String16 host, argument
384 UTF16StringToV8String(isolate_, 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/python_gflags/
H A Dsetup.py40 url='http://code.google.com/p/python-gflags', variable
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/
H A Dsetup.py57 url='http://code.google.com/p/pywebsocket/', variable
/external/chromium_org/android_webview/browser/
H A Daw_content_browser_client.cc62 const base::string16& url,
102 const base::string16& url,
109 *ignore_navigation = client->ShouldOverrideUrlLoading(url);
111 LOG(WARNING) << "Failed to find the associated render view host for url: "
112 << url;
231 host->GetID(), url::kFileScheme);
296 bool AwContentBrowserClient::AllowGetCookie(const GURL& url, argument
302 return AwCookieAccessPolicy::GetInstance()->AllowGetCookie(url,
310 bool AwContentBrowserClient::AllowSetCookie(const GURL& url, argument
317 return AwCookieAccessPolicy::GetInstance()->AllowSetCookie(url,
100 OnShouldOverrideUrlLoading( int render_frame_id, const base::string16& url, bool* ignore_navigation) argument
326 AllowWorkerDatabase( const GURL& url, const base::string16& name, const base::string16& display_name, unsigned long estimated_size, content::ResourceContext* context, const std::vector<std::pair<int, int> >& render_frames) argument
337 AllowWorkerFileSystem( const GURL& url, content::ResourceContext* context, const std::vector<std::pair<int, int> >& render_frames, base::Callback<void(bool)> callback) argument
346 AllowWorkerIndexedDB( const GURL& url, const base::string16& name, content::ResourceContext* context, const std::vector<std::pair<int, int> >& render_frames) argument
555 AllowPepperSocketAPI( content::BrowserContext* browser_context, const GURL& url, bool private_api, const content::SocketPermissionRequest* params) argument
564 OverrideWebkitPrefs( content::RenderViewHost* rvh, const GURL& url, content::WebPreferences* web_prefs) argument
[all...]
H A Daw_cookie_access_policy.cc73 .AllowGet(request.url(), request.first_party_for_cookies());
82 .AllowSet(request.url(), request.first_party_for_cookies());
85 bool AwCookieAccessPolicy::AllowGetCookie(const GURL& url, argument
94 return AwStaticCookiePolicy(global, thirdParty).AllowGet(url, first_party);
97 bool AwCookieAccessPolicy::AllowSetCookie(const GURL& url, argument
107 return AwStaticCookiePolicy(global, thirdParty).AllowSet(url, first_party);
116 StaticCookiePolicy::Type AwStaticCookiePolicy::GetPolicy(const GURL& url)
122 bool isFile = url.SchemeIsFile();
132 bool AwStaticCookiePolicy::AllowSet(const GURL& url, argument
135 return StaticCookiePolicy(GetPolicy(url))
139 AllowGet(const GURL& url, const GURL& first_party) const argument
[all...]
H A Daw_resource_context.cc22 const GURL& url, const std::string& headers) {
24 if (!url.is_valid()) return;
27 extra_headers_[url.spec()] = headers;
29 extra_headers_.erase(url.spec());
32 std::string AwResourceContext::GetExtraHeaders(const GURL& url) { argument
34 if (!url.is_valid()) return std::string();
37 extra_headers_.find(url.spec());
21 SetExtraHeaders( const GURL& url, const std::string& headers) argument
H A Dicon_helper.cc99 const GURL& url,
98 DidStartNavigationToPendingEntry( const GURL& url, content::NavigationController::ReloadType reload_type) argument
/external/chromium_org/android_webview/browser/net/
H A Dandroid_stream_reader_url_request_job.cc112 const GURL& url,
118 scoped_ptr<InputStream> input_stream = delegate->OpenInputStream(env, url);
146 request()->url(),
109 OpenInputStreamOnWorkerThread( scoped_refptr<base::MessageLoopProxy> job_thread_proxy, scoped_ptr<AndroidStreamReaderURLRequestJob::Delegate> delegate, const GURL& url, OnInputStreamOpenedCallback callback) argument

Completed in 7824 milliseconds

1234567891011>>