Home
last modified time | relevance | path

Searched refs:URL (Results 1 – 25 of 1722) sorted by relevance

12345678910>>...69

/external/cldr/tools/scripts/web/
Dcheck_redirects.sh10 URL=http://www.unicode.org
15 echo "# Checking redirects on ${URL}"
16 ${CURL} -s "${URL}" >/dev/null || ( echo "Error: You don't seem to have a working ${CURL} command" …
17 echo "# ${CURL} ${URL} - OK."
29 VLATEST=`${CURL} -s "${URL}/repos/cldr/tags/latest/${DTDLOC}" | sh ${DTD2VERSION}`
30 VDEV=`${CURL} -s "${URL}/repos/cldr/trunk/${DTDLOC}" | sh ${DTD2VERSION}`
97 verify_redirect 302 "${URL}/Public/cldr/latest" "${URL}/Public/cldr/${VLATEST}"
98 verify_redirect 302 "${URL}/Public/cldr/latest/${SOMEFILE}" "${URL}/Public/cldr/${VLATEST}/${SOMEFI…
101 verify_redirect 302 "${URL}/cldr/charts/dev" "${URL}/cldr/charts/dev/"
102 verify_content 200 "${URL}/cldr/charts/${VDEV}/" "Version ${VDEV}"
[all …]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
DURLClassLoaderTest.java25 import java.net.URL;
64 public URL getResource(String res) { in getResource()
66 return new URL("http://test/BogusClassLoader"); in getResource()
75 public URLClassLoaderExt(URL[] urls) { in URLClassLoaderExt()
88 URL[] u = new URL[0]; in test_Constructor$Ljava_net_URL()
94 URLClassLoader loader = new URLClassLoader(new URL[] { null }); in test_Constructor$Ljava_net_URL()
109 URL[] u = new URL[0]; in test_Constructor$Ljava_net_URLLjava_lang_ClassLoader()
111 URL res = ucl.getResource("J"); in test_Constructor$Ljava_net_URLLjava_lang_ClassLoader()
122 URL[] urls = new URL[2]; in test_findResourcesLjava_lang_String()
123 urls[0] = new URL(serverURL); in test_findResourcesLjava_lang_String()
[all …]
DExcludedProxyTest.java27 import java.net.URL;
50 URL u1 = new URL("http://" + Support_Configuration.HomeAddress); in test_usingProxy()
57 URL u3 = new URL("http://localhost"); in test_usingProxy()
67 URL u2 = new URL("http://" in test_usingProxy()
89 URL u4 = new URL("http://" in test_usingProxy()
168 URL u = new URL("http://" in test_openConnectionLjava_net_Proxy()
192 URL httpUrl = new URL("http://abc.com"); in test_openConnectionLjava_net_Proxy()
193 URL jarUrl = new URL("jar:" in test_openConnectionLjava_net_Proxy()
195 URL ftpUrl = new URL("ftp://" + Support_Configuration.FTPTestAddress in test_openConnectionLjava_net_Proxy()
197 URL fileUrl = new URL("file://abc"); in test_openConnectionLjava_net_Proxy()
[all …]
/external/clang/lib/Basic/
DVersion.cpp32 StringRef URL(SVN_REPOSITORY); in getClangRepositoryPath()
34 StringRef URL(""); in getClangRepositoryPath()
40 if (URL.empty()) { in getClangRepositoryPath()
41 URL = SVNRepository.slice(SVNRepository.find(':'), in getClangRepositoryPath()
46 URL = URL.slice(0, URL.find("/src/tools/clang")); in getClangRepositoryPath()
49 size_t Start = URL.find("cfe/"); in getClangRepositoryPath()
51 URL = URL.substr(Start + 4); in getClangRepositoryPath()
53 return URL; in getClangRepositoryPath()
59 StringRef URL(LLVM_REPOSITORY); in getLLVMRepositoryPath() local
61 StringRef URL(""); in getLLVMRepositoryPath()
[all …]
/external/guava/android/guava-tests/test/com/google/common/reflect/
DClassPathTest.java41 import java.net.URL;
74 assertThat(ClassPath.Scanner.getClassPathEntries(new URLClassLoader(new URL[0], null)).keySet()) in testClassPathEntries_emptyURLClassLoader_noParent()
80 URL url1 = new URL("file:/a"); in testClassPathEntries_URLClassLoader_noParent()
81 URL url2 = new URL("file:/b"); in testClassPathEntries_URLClassLoader_noParent()
82 URLClassLoader classloader = new URLClassLoader(new URL[] {url1, url2}, null); in testClassPathEntries_URLClassLoader_noParent()
89 URL url1 = new URL("file:/a"); in testClassPathEntries_URLClassLoader_withParent()
90 URL url2 = new URL("file:/b"); in testClassPathEntries_URLClassLoader_withParent()
91 URLClassLoader parent = new URLClassLoader(new URL[] {url1}, null); in testClassPathEntries_URLClassLoader_withParent()
92 URLClassLoader child = new URLClassLoader(new URL[] {url2}, parent) {}; in testClassPathEntries_URLClassLoader_withParent()
100 URL url = new URL("file:/a"); in testClassPathEntries_duplicateUri_parentWins()
[all …]
/external/python/cpython3/Lib/test/
Dtest_webbrowser.py10 URL = 'http://www.example.com' variable
25 def _test(self, meth, *, args=[URL], kw={}, options, arguments):
56 arguments=[URL])
66 arguments=[URL])
76 arguments=[URL])
81 arguments=[URL])
86 arguments=[URL])
91 arguments=[URL])
101 arguments=[URL])
106 arguments=[URL])
[all …]
/external/guava/android/guava/src/com/google/common/io/
DResources.java29 import java.net.URL;
55 public static ByteSource asByteSource(URL url) { in asByteSource()
62 private final URL url;
64 private UrlByteSource(URL url) { in UrlByteSource()
84 public static CharSource asCharSource(URL url, Charset charset) { in asCharSource()
95 public static byte[] toByteArray(URL url) throws IOException { in toByteArray()
108 public static String toString(URL url, Charset charset) throws IOException { in toString()
124 public static <T> T readLines(URL url, Charset charset, LineProcessor<T> callback) in readLines()
142 public static List<String> readLines(URL url, Charset charset) throws IOException { in readLines()
171 public static void copy(URL from, OutputStream to) throws IOException { in copy()
[all …]
/external/guava/guava/src/com/google/common/io/
DResources.java29 import java.net.URL;
55 public static ByteSource asByteSource(URL url) { in asByteSource()
62 private final URL url;
64 private UrlByteSource(URL url) { in UrlByteSource()
84 public static CharSource asCharSource(URL url, Charset charset) { in asCharSource()
95 public static byte[] toByteArray(URL url) throws IOException { in toByteArray()
108 public static String toString(URL url, Charset charset) throws IOException { in toString()
124 public static <T> T readLines(URL url, Charset charset, LineProcessor<T> callback) in readLines()
142 public static List<String> readLines(URL url, Charset charset) throws IOException { in readLines()
171 public static void copy(URL from, OutputStream to) throws IOException { in copy()
[all …]
/external/openscreen/cast/cast_core/api/v2/
Durl_rewrite.proto37 // URL request rewrites to apply.
47 // Adds a set of headers to a URL request.
50 // Removes a header based on the presence of a pattern in the URL query.
53 // Substitutes a pattern in the URL query.
56 // Replaces a URL if the original URL ends with a pattern.
59 // Appends to the URL query.
70 // Adds `headers` to the URL request. If a header is already present in the
71 // original URL request, it will be overwritten.
81 // If `query_pattern` is in the URL query, removes `header_name` from the list
92 // If `pattern` is found in the URL request query, replaces it with
[all …]
/external/guava/guava-tests/test/com/google/common/reflect/
DClassPathTest.java48 import java.net.URL;
81 assertThat(ClassPath.Scanner.getClassPathEntries(new URLClassLoader(new URL[0], null)).keySet()) in testClassPathEntries_emptyURLClassLoader_noParent()
87 URL url1 = new URL("file:/a"); in testClassPathEntries_URLClassLoader_noParent()
88 URL url2 = new URL("file:/b"); in testClassPathEntries_URLClassLoader_noParent()
89 URLClassLoader classloader = new URLClassLoader(new URL[] {url1, url2}, null); in testClassPathEntries_URLClassLoader_noParent()
96 URL url1 = new URL("file:/a"); in testClassPathEntries_URLClassLoader_withParent()
97 URL url2 = new URL("file:/b"); in testClassPathEntries_URLClassLoader_withParent()
98 URLClassLoader parent = new URLClassLoader(new URL[] {url1}, null); in testClassPathEntries_URLClassLoader_withParent()
99 URLClassLoader child = new URLClassLoader(new URL[] {url2}, parent) {}; in testClassPathEntries_URLClassLoader_withParent()
107 URL url = new URL("file:/a"); in testClassPathEntries_duplicateUri_parentWins()
[all …]
/external/dokka/integration/src/main/kotlin/org/jetbrains/dokka/
Dconfiguration.kt7 import java.net.URL
10 class UrlSerializer : ValueSerializer<URL?> {
11 override fun fromJsonValue(jsonValue: Any?): URL? { in fromJsonValue()
14 return jsonValue?.let { URL(jsonValue) } in fromJsonValue()
17 override fun toJsonValue(value: URL?): Any? = value?.toExternalForm() in toJsonValue()
70 @CustomSerializer(UrlSerializer::class) val url: URL in toJsonValue()
71 @CustomSerializer(UrlSerializer::class) val packageListUrl: URL in toJsonValue()
73 open class Builder(open var url: URL? = null, in toJsonValue()
74 open var packageListUrl: URL? = null) { in toJsonValue()
76 …nstructor(root: String, packageList: String? = null) : this(URL(root), packageList?.let { URL(it) … in toJsonValue()
[all …]
/external/markdown/MarkdownTest/Tests_2007/
DLinks, inline style.text1 Just a [URL](/url/).
3 [URL and title](/url/ "title").
5 [URL and title](/url/ "title preceded by two spaces").
7 [URL and title](/url/ "title preceded by a tab").
9 [URL and title](/url/ "title has spaces afterward" ).
11 [URL wrapped in angle brackets](</url/>).
13 [URL w/ angle brackets + title](</url/> "Here's the title").
17 [With parens in the URL](http://en.wikipedia.org/wiki/WIMP_(computing))
22 [With parens in the URL](/foo(bar) "and a title")
/external/wayland/doc/doxygen/dot/
Dx-architecture.gv21 …c1 [label=<<TABLE STYLE="rounded" BGCOLOR="#ffbc00"><TR><TD>X Client</TD></TR></TABLE>>, URL="#c1"]
22 …c3 [label=<<TABLE STYLE="rounded" BGCOLOR="#ffbc00"><TR><TD>X Client</TD></TR></TABLE>>, URL="#c3"]
24 …c2 [label=<<TABLE STYLE="rounded" BGCOLOR="#ffbc00"><TR><TD>X Client</TD></TR></TABLE>>, URL="#c2"]
28 …YLE="rounded" BGCOLOR="#ffbc00"><TR><TD><BR/>X Server<BR/><BR/></TD></TR></TABLE>>, URL="#xserver"]
29 …TYLE="rounded" BGCOLOR="#ffbc00"><TR><TD><BR/>Compositor<BR/><BR/></TD></TR></TABLE>>, URL="#comp"]
32 …c00"><TR><TD>KMS</TD><TD>evdev</TD></TR><TR><TD COLSPAN="2">Kernel</TD></TR></TABLE>>, URL="#impl"]
34 c1 -> xserver [taillabel="③", labeldistance=2, URL="#step_3"];
38 xserver -> c1 [taillabel="②", labeldistance=2, URL="#step_2"];
42 xserver -> impl [taillabel="⑥", labeldistance=1.75, URL="#step_6"];
44 impl -> xserver [taillabel="①", labeldistance=1.75, URL="#step_1"];
[all …]
Dwayland-architecture.gv18 …bel=<<TABLE STYLE="rounded" BGCOLOR="#ffbc00"><TR><TD>Wayland Client</TD></TR></TABLE>>, URL="#c1"]
19 …bel=<<TABLE STYLE="rounded" BGCOLOR="#ffbc00"><TR><TD>Wayland Client</TD></TR></TABLE>>, URL="#c2"]
21 …d" BGCOLOR="#ffbc00"><TR><TD><BR/>Wayland<BR/>Compositor<BR/><BR/></TD></TR></TABLE>>, URL="#comp"]
23 …c00"><TR><TD>KMS</TD><TD>evdev</TD></TR><TR><TD COLSPAN="2">Kernel</TD></TR></TABLE>>, URL="#impl"]
25 c1 -> comp [taillabel="③", labeldistance=2.5, URL="#step_3"];
28 comp -> c1 [label="②", URL="#step_2"];
31 comp -> impl [xlabel = "④", URL="#step_4"];
33 impl -> comp [xlabel = "①", URL="#step_1"];
/external/mesa3d/doxygen/
Dgallium.doc191 1 [color="#ff0000", URL="\ref main", label="main\n100.00% (0.68%)\n0"];
193 2 [color="#fe0400", URL="\ref do_draw", label="do_draw\n99.32% (0.00%)\n1433"];
196 3 [color="#fa1201", URL="\ref execute_list", label="execute_list\n96.67% (0.00%)\n4299"];
198 4 [color="#fa1201", URL="\ref _mesa_CallList", label="_mesa_CallList\n96.67% (0.00%)\n4299"];
200 …5 [color="#f91301", URL="\ref vbo_save_playback_vertex_list", label="vbo_save_playback_vertex_list…
202 6 [color="#f91501", URL="\ref st_draw_vbo", label="st_draw_vbo\n96.09% (0.00%)\n17196"];
207 7 [color="#f71d01", URL="\ref draw_do_flush", label="draw_do_flush\n94.52% (0.20%)\n101744"];
211 8 [color="#f32702", URL="\ref clip_tri", label="clip_tri\n92.37% (0.49%)\n1261040"];
213 9 [color="#f32a02", URL="\ref cull_tri", label="cull_tri\n91.88% (0.20%)\n1261040"];
216 …10 [color="#ec3f03", URL="\ref softpipe_draw_arrays", label="softpipe_draw_arrays\n87.48% (0.00%)\…
[all …]
/external/slf4j/slf4j-api/src/main/java/org/slf4j/
DLoggerFactory.java28 import java.net.URL;
138 Set<URL> staticLoggerBinderPathSet = findPossibleStaticLoggerBinderPathSet(); in bind()
226 private static Set<URL> findPossibleStaticLoggerBinderPathSet() { in findPossibleStaticLoggerBinderPathSet()
229 Set<URL> staticLoggerBinderPathSet = new LinkedHashSet<URL>(); in findPossibleStaticLoggerBinderPathSet()
232 Enumeration<URL> paths; in findPossibleStaticLoggerBinderPathSet()
239 URL path = (URL) paths.nextElement(); in findPossibleStaticLoggerBinderPathSet()
248 … private static boolean isAmbiguousStaticLoggerBinderPathSet(Set<URL> staticLoggerBinderPathSet) { in isAmbiguousStaticLoggerBinderPathSet()
257 private static void reportMultipleBindingAmbiguity(Set<URL> staticLoggerBinderPathSet) { in reportMultipleBindingAmbiguity()
260 Iterator<URL> iterator = staticLoggerBinderPathSet.iterator(); in reportMultipleBindingAmbiguity()
262 URL path = (URL) iterator.next(); in reportMultipleBindingAmbiguity()
[all …]
/external/doclava/src/com/google/doclava/
DFederatedSite.java24 import java.net.URL;
33 private final URL baseUrl;
36 public FederatedSite(String name, URL baseUrl) throws ApiParseException { in FederatedSite()
41 URL xmlUrl = new URL(baseUrl + "/xml/current.xml"); in FederatedSite()
52 public FederatedSite(String name, URL baseUrl, String api) throws ApiParseException { in FederatedSite()
70 public URL baseUrl() { in baseUrl()
/external/mockito/src/test/java/org/mockitoutil/
DClassLoaders.java16 import java.net.URL;
183 private final ArrayList<URL> codeSourceUrls = new ArrayList<URL>();
215 codeSourceUrls.toArray(new URL[codeSourceUrls.size()]), in build()
227 URL[] urls, in LocalIsolatedURLClassLoader()
269 private final ArrayList<URL> codeSourceUrls = new ArrayList<URL>();
296 codeSourceUrls.toArray(new URL[codeSourceUrls.size()]), in build()
306 URL[] urls, in LocalExcludingURLClassLoader()
363 public Enumeration<URL> getResources(String ignored) throws IOException { in getResources()
367 private Enumeration<URL> inMemoryOnly() { in inMemoryOnly()
369 return new Enumeration<URL>() { in inMemoryOnly()
[all …]
/external/glide/library/src/main/java/com/bumptech/glide/load/model/
DGlideUrl.java7 import java.net.URL;
25 private final URL url;
28 private URL safeUrl;
30 public GlideUrl(URL url) { in GlideUrl()
47 public URL toURL() throws MalformedURLException { in toURL()
54 private URL getSafeUrl() throws MalformedURLException { in getSafeUrl()
61 safeUrl = new URL(safe); in getSafeUrl()
/external/tensorflow/tensorflow/lite/tools/cmake/modules/
DOverridableFetchContent.cmake83 # OUTPUT_VAR: Name of the variable to store the URL if successful. If
105 # Try to convert a Git repository to an archive URL.
107 # GIT_REPOSITORY: Repository URL to convert.
110 # OUTPUT_VAR: Name of the variable to store the URL if successful. If
125 "Unable to map ${GIT_REPOSITORY} / ${GIT_COMMIT} to an archive URL"
134 # GIT_REPOSITORY: Repository URL to convert.
137 # OUTPUT_VAR: Name of the variable to store the URL if successful. If
155 "Unable to map ${GIT_REPOSITORY} / ${GIT_COMMIT} / ${FILE_PATH} to a URL"
161 # Try to determine the license URL from a path within the content and
166 # OUTPUT_VAR: Name of variable to store / retrieve the license URL.
[all …]
/external/python/cpython2/Doc/library/
Durlparse.rst11 single: URL
12 pair: URL; parsing
13 pair: relative; URL
24 This module defines a standard interface to break Uniform Resource Locator (URL)
26 combine the components back into a URL string, and to convert a "relative URL"
27 to an absolute URL given a "base URL."
30 Resource Locators. It supports the following URL schemes: ``file``, ``ftp``,
44 Parse a URL into six components, returning a 6-tuple. This corresponds to the
45 general structure of a URL: ``scheme://netloc/path;parameters?query#fragment``.
67 input is presumed to be a relative URL and thus to start with
[all …]
/external/curl/tests/libtest/
Dlib661.c25 int test(char *URL) in test() argument
46 newURL = aprintf("%s/folderA/661", URL); in test()
54 newURL = aprintf("%s/folderB/661", URL); in test()
69 newURL = aprintf("%s/folderA/661", URL); in test()
78 newURL = aprintf("%s/folderB/661", URL); in test()
84 newURL = aprintf("%s/folderA/661", URL); in test()
106 test_setopt(curl, CURLOPT_URL, URL); in test()
123 test_setopt(curl, CURLOPT_URL, URL); in test()
134 test_setopt(curl, CURLOPT_URL, URL); in test()
/external/libabigail/doc/vizualization/graph/gv/
Dsa-base.gv7 …Node2 [label="A",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$struc…
9 …Node3 [label="D1",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$stru…
12 …Node4 [label="Dd1",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str…
14 …Node5 [label="Dd2",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str…
18 …Node6 [label="B",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$struc…
22 …Node7 [label="C1",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$stru…
24 …Node8 [label="D2",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$stru…
26 …Node9 [label="Dd3",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str…
29 …Node10 [label="D3",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str…
35 …Node11 [label="C2",height=0.2,width=0.4,color="black", fillcolor="white", style="filled",URL="$str…
[all …]
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/internal/dependency/
DCachedDependencyResolverTest.java12 import java.net.URL;
39 public boolean isValid(URL url) {
44 public boolean isValid(URL[] urls) {
49 private URL url;
59 url = new URL("http://localhost"); in setUp()
68 URL url = res.getLocalArtifactUrl(dependency); in getLocalArtifactUrl_shouldWriteLocalArtifactUrlWhenCacheMiss()
79 URL url = res.getLocalArtifactUrl(dependency); in getLocalArtifactUrl_shouldReadLocalArtifactUrlFromCacheIfExists()
89 when(failStrategy.isValid(any(URL.class))).thenReturn(false); in getLocalArtifactUrl_whenCacheInvalid_shouldFetchDependencyInformation()
99 private void assertCacheContents(URL url) { in assertCacheContents()
100 assertEquals(url, cache.load(CACHE_NAME, URL.class)); in assertCacheContents()
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/internal/dependency/
DCachedDependencyResolver.java12 import java.net.URL;
36 public URL getLocalArtifactUrl(DependencyJar dependency) { in getLocalArtifactUrl()
38 final URL urlFromCache = cache.load(cacheName, URL.class); in getLocalArtifactUrl()
44 final URL url = dependencyResolver.getLocalArtifactUrl(dependency); in getLocalArtifactUrl()
54 boolean isValid(URL url); in isValid()
56 boolean isValid(URL[] urls); in isValid()
61 public boolean isValid(URL url) { in isValid()
66 public boolean isValid(URL[] urls) { in isValid()
67 for (URL url : urls) { in isValid()

12345678910>>...69