HomeSort by relevance Sort by last modified time
    Searched refs:URL (Results 226 - 250 of 1264) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/curl/docs/cmdline-opts/
data-urlencode.d 3 Help: HTTP POST data url encoded
9 that this performs URL-encoding.
16 This will make curl URL-encode the content and pass that on. Just be careful
20 This will make curl URL-encode the content and pass that on. The preceding =
23 This will make curl URL-encode the content part and pass that on. Note that
24 the name part is expected to be URL-encoded already.
27 URL-encode that data and pass it on in the POST.
30 URL-encode that data and pass it on in the POST. The name part gets an equal
32 name is expected to be URL-encoded already.
ciphers.d 7 specify valid ciphers. Read up on SSL cipher list details on this URL:
remote-name-all.d 7 specific URL after --remote-name-all has been used, you must use "-o -" or
request-target.d 7 provided in the URL. Particularly useful when wanting to issue HTTP requests
8 without leading slash or other data that doesn't follow the regular URL
use-ascii.d 6 Enable ASCII transfer. For FTP, this can also be enforced by using a URL that
  /external/curl/tests/libtest/
first.c 134 char *URL;
157 fprintf(stderr, "Pass URL as argument please\n");
170 URL = argv[1]; /* provide this to the rest */
172 fprintf(stderr, "URL: %s\n", URL);
174 result = test(URL);
lib1515.c 54 static int do_one_request(CURLM *m, char *URL, char *resolve)
67 easy_setopt(curls, CURLOPT_URL, URL);
115 int test(char *URL)
121 char *path = URL;
  /external/google-breakpad/src/common/mac/
HTTPMultipartUpload.h 39 NSURL *url_; // The destination URL (STRONG)
46 - (id)initWithURL:(NSURL *)url;
48 - (NSURL *)URL;
  /external/guava/guava-tests/test/com/google/common/base/
FinalizableReferenceQueueTest.java 26 import java.net.URL;
114 URLClassLoader newLoader(URL base) {
115 return new DecoupledClassLoader(new URL[] { base });
129 public DecoupledClassLoader(URL[] urls) {
  /external/libxml2/include/libxml/
HTMLparser.h 198 const char *URL,
202 htmlReadFile (const char *URL,
208 const char *URL,
213 const char *URL,
220 const char *URL,
226 const char *URL,
238 const char *URL,
244 const char *URL,
252 const char *URL,
  /external/objenesis/tck/src/main/java/org/objenesis/tck/search/
ClassEnumerator.java 20 import java.net.URL;
54 private static void processJarfile(URL resource, String pkgname, SortedSet<String> classes) {
114 Enumeration<URL> resources;
122 URL resource = resources.nextElement();
  /external/okhttp/android/main/java/com/squareup/okhttp/
HttpHandler.java 26 import java.net.URL;
43 @Override protected URLConnection openConnection(URL url) throws IOException {
44 return newOkUrlFactory(null /* proxy */).open(url);
47 @Override protected URLConnection openConnection(URL url, Proxy proxy) throws IOException {
48 if (url == null || proxy == null) {
49 throw new IllegalArgumentException("url == null || proxy == null");
51 return newOkUrlFactory(proxy).open(url);
60 // For HttpURLConnections created through java.net.URL Android uses a connection pool tha
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/internal/dependency/
CachedDependencyResolverFileCacheTest.java 14 import java.net.URL;
77 URL[] urls = { new URL("http://localhost") };
83 assertArrayEquals(urls, (URL[]) actual);
  /external/sl4a/Common/src/com/googlecode/android_scripting/
FeaturedInterpreters.java 22 import java.net.URL;
68 public static URL getUrlForName(String name) {
110 private final URL mmUrl;
112 private FeaturedInterpreter(String name, String extension, String url)
116 mmUrl = new URL(url);
  /external/python/cpython3/Lib/urllib/
parse.py 8 RFC 2732 : "Format for Literal IPv6 Addresses in URL's by R.Hinden, B.Carpenter
14 RFC 2368: "The mailto URL scheme", by P.Hoffman , L Masinter, J. Zawinski, July 1998.
19 RFC 1738: "Uniform Resource Locators (URL)" by T. Berners-Lee, L. Masinter, M.
227 _DefragResultBase = namedtuple('DefragResult', 'url fragment')
234 DefragResult(url, fragment)
236 A 2-tuple that contains the url without fragment identifier and the fragment
240 _DefragResultBase.url.__doc__ = """The URL with no fragment identifier."""
243 Fragment identifier separated from URL, that allows indirect identification of a
251 A 5-tuple that contains the different components of a URL. Similar t
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
JarInputStreamTest.java 23 import java.net.URL;
57 InputStream is = new URL(jarName).openConnection().getInputStream();
97 InputStream is = new URL(jarName).openConnection().getInputStream();
131 InputStream is = new URL(jarName2).openConnection().getInputStream();
136 is = new URL(jarName).openConnection().getInputStream();
146 InputStream is = new URL(jarName).openConnection().getInputStream();
159 InputStream is = new URL(intJarName).openConnection()
175 InputStream is = new URL(modJarName).openConnection()
202 InputStream is = new URL(modJarName).openConnection()
223 InputStream is = new URL(modJarName).openConnection(
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
FtpURLConnectionTest.java 39 import java.net.URL;
91 URL fileUrl = getFileUrlWithCredentials(VALID_USER, VALID_PASSWORD, FILE_PATH);
102 URL noPasswordUrl = getFileUrlWithCredentials(VALID_USER, null, FILE_PATH);
113 URL fileUrl = getFileUrlWithCredentials(user, password, FILE_PATH);
125 addFileEntry("test/output-url/existing file.txt", fileContents);
127 String filePath = "test/output-url/file that is newly created.txt";
128 URL fileUrl = getFileUrlWithCredentials(VALID_USER, VALID_PASSWORD, filePath);
141 URL fileUrl = addFileEntry(FILE_PATH, fileContents);
171 * Tests that a HTTP proxy explicitly passed to {@link URL#openConnection(Proxy)}
177 URL fileUrl = addFileEntry(FILE_PATH, fileContents)
225 URL url = addFileEntry("file with spaces.txt", fileContents); local
233 URL url = addFileEntry("binaryfile.dat", data.clone()); local
244 URL url = addFileEntry("file with spaces.txt", fileContents); local
    [all...]
  /external/emma/core/java12/com/vladium/emma/rt/
InstrClassLoader.java 16 import java.net.URL;
159 public final URL getResource (final String name)
165 final URL result = super.getResource (name);
186 URL classURL = null;
196 classURL = new URL (entry.m_srcURL);
342 private Class defineClass (final String className, final byte [] bytes, final int length, final URL srcURL)
372 private static URL [] filesToURLs (final File [] classpath)
378 final URL [] result = new URL [classpath.length];
460 private static final URL [] EMPTY_URL_ARRAY = new URL [0]
    [all...]
  /art/test/138-duplicate-classes-check2/src/
Main.java 38 new java.net.URL[] { new java.net.URL("file://" + location + "/classes-ex/") });
  /art/test/164-resolution-trampoline-dex-cache/src/
Main.java 52 String url = "file://" + location + (ex ? "/classes-ex/" : "/classes/"); local
54 new java.net.URL[] { new java.net.URL(url) }, parent);
  /art/test/934-load-transform/src/
Main.java 68 new java.net.URL[] { new java.net.URL("file://" + location + "/classes-ex/") });
  /art/test/935-non-retransformable/src/
Main.java 74 new java.net.URL[] { new java.net.URL("file://" + location + "/classes-ex/") });
  /art/test/938-load-transform-bcp/src/
Main.java 95 new java.net.URL[] { new java.net.URL("file://" + location + "/classes-ex/") });
  /external/apache-harmony/support/src/test/java/tests/support/
Support_URLConnector.java 24 import java.net.URL;
29 * URL's
40 instance = new URL(address).openConnection();
  /external/caliper/caliper/src/main/java/com/google/caliper/platform/jvm/
EffectiveClassPath.java 25 import java.net.URL;
61 for (URL url : urlClassLoader.getURLs()) {
63 files.add(new File(url.toURI()));

Completed in 560 milliseconds

1 2 3 4 5 6 7 8 91011>>