HomeSort by relevance Sort by last modified time
    Searched full:geturl (Results 1 - 25 of 598) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/refactorings/core/
RenameResourceXmlTextActionTest.java 34 checkWord(" @string/nam^e ", getUrl(ResourceType.STRING, "name"));
35 checkWord("@string/nam^e ", getUrl(ResourceType.STRING, "name"));
36 checkWord("\"^@string/name ", getUrl(ResourceType.STRING, "name"));
37 checkWord("^@string/name ", getUrl(ResourceType.STRING, "name"));
38 checkWord("\n^@string/name ", getUrl(ResourceType.STRING, "name"));
39 checkWord("\n^@string/name(", getUrl(ResourceType.STRING, "name"));
40 checkWord("\n^@string/name;", getUrl(ResourceType.STRING, "name"));
41 checkWord("\n^@string/name5", getUrl(ResourceType.STRING, "name5"));
42 checkWord("\n@string/name5^", getUrl(ResourceType.STRING, "name5"));
43 checkWord("\n@string/name5^(", getUrl(ResourceType.STRING, "name5"))
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowURLSpan.java 17 public String getURL() {
  /external/okhttp/okhttp-urlconnection/src/test/java/com/squareup/okhttp/
OkUrlFactoryTest.java 48 HttpURLConnection conn = factory.open(server.getUrl("/"));
59 HttpURLConnection connection = factory.open(server.getUrl("/"));
67 HttpURLConnection connection = factory.open(server.getUrl("/"));
78 HttpURLConnection connection1 = factory.open(server.getUrl("/"));
82 HttpURLConnection connection2 = factory.open(server.getUrl("/"));
94 HttpURLConnection connection1 = factory.open(server.getUrl("/"));
98 HttpURLConnection connection2 = factory.open(server.getUrl("/"));
108 HttpURLConnection connection1 = factory.open(server.getUrl("/"));
112 HttpURLConnection connection2 = factory.open(server.getUrl("/"));
120 HttpURLConnection connection1 = factory.open(server.getUrl("/"));
    [all...]
UrlConnectionCacheTest.java 181 URL url = server.getUrl("/");
223 HttpURLConnection urlConnection = client.open(server.getUrl("/"));
233 urlConnection = client.open(server.getUrl("/")); // cached!
254 HttpsURLConnection c1 = (HttpsURLConnection) client.open(server.getUrl("/"));
266 HttpsURLConnection c2 = (HttpsURLConnection) client.open(server.getUrl("/")); // cached!
292 HttpURLConnection connection = client.open(server.getUrl("/"));
295 connection = client.open(server.getUrl("/")); // cached!
309 assertEquals("ABC", readAscii(client.open(server.getUrl("/foo"))));
314 assertEquals("ABC", readAscii(client.open(server.getUrl("/bar"))));
320 assertEquals("DEF", readAscii(client.open(server.getUrl("/baz"))))
    [all...]
  /cts/tests/tests/text/src/android/text/util/cts/
LinkifyTest.java 94 assertEquals("http://www.google.com", spans[0].getURL());
95 assertEquals("http://www.google.com/language_tools?hl=en", spans[1].getURL());
96 assertEquals("http://a.bd", spans[2].getURL());
97 assertEquals("http://h." + longGTLD, spans[3].getURL());
102 assertEquals("mailto:name@gmail.com", spans[0].getURL());
122 assertEquals("http://www.google.com", spans[0].getURL());
129 assertEquals("mailto:name@gmail.com", spans[0].getURL());
149 assertEquals("test:Alan", spans[0].getURL());
150 assertEquals("test:Charlie", spans[1].getURL());
157 assertEquals("test:google.pattern", spans[0].getURL());
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
URLConnectionTest.java 133 connection = client.open(server.getUrl("/"));
192 connection = client.open(server.getUrl("/"));
205 connection = client.open(server.getUrl("/"));
234 connection = client.open(server.getUrl("/"));
245 connection = client.open(server.getUrl("/"));
256 connection = client.open(server.getUrl("/"));
267 connection = client.open(server.getUrl("/"));
276 URL url = server.getUrl("/foo");
308 connection = client.open(server.getUrl("/def"));
319 connection = client.open(server.getUrl("/"));
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
HttpOverSpdyTest.java 100 connection = client.open(server.getUrl("/foo"));
114 connection = client.open(server.getUrl("/foo"));
123 connection = client.open(server.getUrl("/foo"));
138 connection = client.open(server.getUrl("/foo"));
153 connection = client.open(server.getUrl("/foo"));
170 connection = client.open(server.getUrl("/foo"));
186 HttpURLConnection connection1 = client.open(server.getUrl("/r1"));
187 HttpURLConnection connection2 = client.open(server.getUrl("/r2"));
212 assertContent("ABCABCABC", client.open(server.getUrl("/r1")), Integer.MAX_VALUE);
222 connection = client.open(server.getUrl("/"));
    [all...]
  /frameworks/volley/src/main/java/com/android/volley/toolbox/
HttpClientStack.java 103 HttpPost postRequest = new HttpPost(request.getUrl());
110 return new HttpGet(request.getUrl());
114 return new HttpGet(request.getUrl());
116 return new HttpDelete(request.getUrl());
118 HttpPost postRequest = new HttpPost(request.getUrl());
124 HttpPut putRequest = new HttpPut(request.getUrl());
130 return new HttpHead(request.getUrl());
132 return new HttpOptions(request.getUrl());
134 return new HttpTrace(request.getUrl());
136 HttpPatch patchRequest = new HttpPatch(request.getUrl());
    [all...]
  /external/okhttp/okhttp-apache/src/test/java/com/squareup/okhttp/apache/
OkApacheClientTest.java 50 HttpGet request = new HttpGet(server.getUrl("/").toURI());
60 HttpGet request = new HttpGet(server.getUrl("/").toURI());
69 HttpGet request = new HttpGet(server.getUrl("/").toURI());
78 HttpGet request1 = new HttpGet(server.getUrl("/").toURI());
84 HttpGet request2 = new HttpGet(server.getUrl("/").toURI());
95 final HttpPost post = new HttpPost(server.getUrl("/").toURI());
108 final HttpPost post = new HttpPost(server.getUrl("/").toURI());
119 final HttpPost post = new HttpPost(server.getUrl("/").toURI());
128 final HttpPut put = new HttpPut(server.getUrl("/").toURI());
140 httpPost.setURI(server.getUrl("/").toURI())
    [all...]
  /external/okhttp/mockwebserver/src/test/java/com/squareup/okhttp/mockwebserver/
MockWebServerTest.java 84 URL url = server.getUrl("/");
100 .addHeader("Location: " + server.getUrl("/new-path"))
104 URLConnection connection = server.getUrl("/").openConnection();
130 URLConnection connection = server.getUrl("/").openConnection();
142 URLConnection connection = server.getUrl("/").openConnection();
158 URLConnection urlConnection = server.getUrl("/").openConnection();
170 URLConnection urlConnection2 = server.getUrl("/").openConnection();
186 server.getUrl("/a").openConnection().getInputStream();
189 server.getUrl("/b").openConnection().getInputStream(); // Should succeed.
201 URLConnection connection = server.getUrl("/").openConnection()
    [all...]
  /external/okhttp/okhttp-android-support/src/test/java/com/squareup/okhttp/internal/huc/
ResponseCacheTest.java 198 URL url = server.getUrl("/");
239 HttpURLConnection urlConnection = openConnection(server.getUrl("/"));
247 urlConnection = openConnection(server.getUrl("/")); // cached!
265 HttpsURLConnection c1 = (HttpsURLConnection) openConnection(server.getUrl("/"));
277 HttpsURLConnection c2 = (HttpsURLConnection) openConnection(server.getUrl("/")); // cached!
302 HttpURLConnection connection = openConnection(server.getUrl("/"));
305 connection = openConnection(server.getUrl("/")); // cached!
319 assertEquals("ABC", readAscii(openConnection(server.getUrl("/foo"))));
324 assertEquals("ABC", readAscii(openConnection(server.getUrl("/bar"))));
330 assertEquals("DEF", readAscii(openConnection(server.getUrl("/baz"))))
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/Explorer/
URL_Suite.py 19 def GetURL(self, _object, _attributes={}, **_arguments):
20 """GetURL: Open the URL (and optionally save it to disk)
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/Netscape/
Standard_URL_suite.py 23 def GetURL(self, _object, _attributes={}, **_arguments):
24 """GetURL: Loads the URL (optionally to disk)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Explorer/
URL_Suite.py 19 def GetURL(self, _object, _attributes={}, **_arguments):
20 """GetURL: Open the URL (and optionally save it to disk)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Netscape/
Standard_URL_suite.py 23 def GetURL(self, _object, _attributes={}, **_arguments):
24 """GetURL: Loads the URL (optionally to disk)
  /external/mockwebserver/src/test/java/com/google/mockwebserver/
MockWebServerTest.java 104 URL url = server.getUrl("/");
121 .addHeader("Location: " + server.getUrl("/new-path"))
125 URLConnection connection = server.getUrl("/").openConnection();
153 URLConnection connection = server.getUrl("/").openConnection();
166 URLConnection connection = server.getUrl("/").openConnection();
184 URLConnection urlConnection = server.getUrl("/").openConnection();
196 URLConnection urlConnection2 = server.getUrl("/").openConnection();
213 server.getUrl("/a").openConnection().getInputStream();
217 server.getUrl("/b").openConnection().getInputStream(); // Should succeed.
225 InputStream in = server.getUrl("/").openConnection().getInputStream()
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
URLConnectionTest.java 213 HttpURLConnection urlConnection = (HttpURLConnection) server.getUrl("/").openConnection();
274 HttpURLConnection urlConnection = (HttpURLConnection) server.getUrl("/").openConnection();
289 HttpURLConnection urlConnection = (HttpURLConnection) server.getUrl("/").openConnection();
318 HttpURLConnection connection = (HttpURLConnection) server.getUrl("/").openConnection();
325 HttpURLConnection connection = (HttpURLConnection) server.getUrl("/").openConnection();
339 assertContent("ABCDE", server.getUrl("/").openConnection(), 5);
340 assertContent("ABCDE", server.getUrl("/").openConnection(), 5);
358 assertContent("ABCDEFGHIJKLMNOPQR", server.getUrl("/foo").openConnection());
360 assertContent("ABCDEFGHIJKLMNOPQR", server.getUrl("/bar?baz=quux").openConnection());
362 assertContent("ABCDEFGHIJKLMNOPQR", server.getUrl("/z").openConnection())
    [all...]
  /external/autotest/site_utils/rpm_control_system/
dli_urllib.py 15 def geturl(self,url='index.htm') : member in class:Powerswitch
  /external/oauth/core/src/main/java/net/oauth/
ConsumerProperties.java 101 OAuthServiceProvider serviceProvider = new OAuthServiceProvider(getURL(
102 baseURL, name + ".serviceProvider.requestTokenURL"), getURL(
104 getURL(baseURL, name + ".serviceProvider.accessTokenURL"));
123 private String getURL(URL base, String name) throws MalformedURLException {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
JarInputStreamTest.java 51 jarName = Support_Resources.getURL("morestuff/hyts_patch.jar");
52 jarName2 = Support_Resources.getURL("morestuff/hyts_patch2.jar");
158 String intJarName = Support_Resources.getURL("Integrate.jar");
174 String modJarName = Support_Resources.getURL("Modified_Class.jar");
201 String modJarName = Support_Resources.getURL("Modified_Manifest_MainAttributes.jar");
222 .getURL("Modified_Manifest_EntryAttributes.jar");
249 .getURL("Modified_SF_EntryAttributes.jar");
274 String modJarName = Support_Resources.getURL("Modified_Class.jar");
303 String intJarName = Support_Resources.getURL("Integrate.jar");
326 .getURL("Modified_Manifest_MainAttributes.jar")
    [all...]
  /cts/tests/tests/net/src/android/net/http/cts/
SslErrorTest.java 73 assertEquals(error.getUrl(), "foo");
78 assertEquals(error.getUrl(), "");
  /external/clang/test/CodeGenObjCXX/
property-dot-reference.mm 5 void GetURL() const;
16 self.node.GetURL();
  /external/guice/extensions/multibindings/src/com/google/inject/multibindings/
ProvidesIntoOptional.java 36 * String provideFooUrl(FooManager fm) { returm fm.getUrl(); }
40 * String provideBarUrl(BarManager bm) { return bm.getUrl(); }
ProvidesIntoSet.java 36 * String provideFooUrl(FooManager fm) { returm fm.getUrl(); }
40 * String provideBarUrl(BarManager bm) { return bm.getUrl(); }
  /frameworks/base/core/java/android/text/style/
URLSpan.java 64 public String getURL() {
70 Uri uri = Uri.parse(getURL());

Completed in 1472 milliseconds

1 2 3 4 5 6 7 8 91011>>