HomeSort by relevance Sort by last modified time
    Searched refs:urls (Results 1 - 25 of 621) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/server/
afe_urls_unittest.py 18 """Assert two URLs are equal.
29 urls = afe_urls.AfeUrls('http://localhost/afe/')
30 got = urls._geturl({'foo': 'bar', 'spam': 'eggs'})
35 urls = afe_urls.AfeUrls('http://localhost/afe/')
36 got = urls.get_host_url(42)
43 urls = afe_urls.AfeUrls('http://localhost/afe/')
44 self.assertEqual(urls.root_url, 'http://localhost/afe/')
54 urls = afe_urls.AfeUrls.from_hostname('sharanohiar')
55 self.assertEqual(urls.root_url, 'http://sharanohiar/afe/')
  /external/webrtc/webrtc/api/objctests/
RTCIceServerTest.mm 33 EXPECT_EQ((size_t)1, iceStruct.urls.size());
34 EXPECT_EQ("stun:stun1.example.net", iceStruct.urls.front());
44 EXPECT_EQ((size_t)2, iceStruct.urls.size());
45 EXPECT_EQ("turn1:turn1.example.net", iceStruct.urls.front());
46 EXPECT_EQ("turn2:turn2.example.net", iceStruct.urls.back());
57 EXPECT_EQ((size_t)1, iceStruct.urls.size());
58 EXPECT_EQ("turn1:turn1.example.net", iceStruct.urls.front());
  /external/curl/docs/examples/
multithread.c 34 List of URLs to fetch.
42 const char * const urls[NUMT]= { variable
81 (void *)urls[i]);
85 fprintf(stderr, "Thread %d, gets %s\n", i, urls[i]);
threaded-ssl.c 110 /* List of URLs to fetch.*/
111 const char * const urls[]= { variable
151 (void *)urls[i]);
155 fprintf(stderr, "Thread %d, gets %s\n", i, urls[i]);
10-at-a-time.c 37 static const char *urls[] = { variable
89 #define CNT sizeof(urls)/sizeof(char*) /* total number of transfers to do */
105 curl_easy_setopt(eh, CURLOPT_URL, urls[i]);
106 curl_easy_setopt(eh, CURLOPT_PRIVATE, urls[i]);
189 URLs to get */
  /external/apache-harmony/support/src/test/resources/tests/resources/JarIndex/
hyts_13.jar 
hyts_33.jar 
hyts_23.jar 
  /external/autotest/frontend/tko/
urls.py 1 from django.conf.urls import defaults
  /libcore/luni/src/test/java/libcore/java/net/
OldURLClassLoaderTest.java 51 URL [] urls = {new URL("http://foo.com/foo"), local
55 URLClassLoader ucl1 = new URLClassLoader(urls);
56 assertTrue(urls.length == ucl1.getURLs().length);
98 URL[] urls = new URL[2]; local
99 urls[0] = new URL("file://" + tmpDir.getAbsolutePath() + "/");
100 urls[1] = new URL("file://" + subDir.getAbsolutePath() + "/");
102 ucl = new URLClassLoader(urls);
118 URL [] urls = {new URL("http://foo.com/foo"), local
124 for(int i = 0; i < urls.length;) {
125 tucl.addURL(urls[i])
153 URL [] urls = {new URL("http:\/\/foo.com\/foo"), local
215 URL[] urls = { new URL("http:\/\/localhost:" + port + "\/") }; local
    [all...]
  /libcore/support/src/test/java/tests/resources/JarIndex/
hyts_13.jar 
hyts_33.jar 
hyts_23.jar 
  /external/toolchain-utils/automation/server/monitor/
urls.py 7 from django.conf.urls.defaults import patterns
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
URLClassLoaderTest.java 75 public URLClassLoaderExt(URL[] urls) {
76 super(urls);
122 URL[] urls = new URL[2]; local
123 urls[0] = new URL(serverURL);
124 urls[1] = new URL(serverURL + "/subdir1/");
125 ucl = new URLClassLoader(urls);
152 URL[] urls = new URL[4]; local
153 urls[0] = new URL("http://" + Support_Configuration.HomeAddress);
154 urls[1] = new URL("http://" + Support_Configuration.TestResources + "/");
155 urls[2] = new URL("ftp://" + Support_Configuration.TestResources + "/")
171 URL[] urls = new URL[1]; local
236 URL[] urls = new URL[1]; local
352 URL[] urls = new URL[2]; local
472 URL[] urls = new URL[urlVec.size()]; local
515 URL[] urls = new URL[1]; local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/provider/
SmsProviderTest.java 42 Uri[] urls = new Uri[10]; local
62 for (int i = 0; i < urls.length; i++) {
65 urls[i] = contentResolver.insert(Sms.Inbox.CONTENT_URI, map);
66 assertNotNull(urls[i]);
73 for (Uri url : urls) {
  /external/apache-harmony/luni/src/test/impl/common/org/apache/harmony/luni/tests/java/net/
URLClassLoaderImplTest.java 54 final URL[] urls = { base }; local
55 final URLClassLoader ucl = new URLClassLoader(urls, null, new TestFactory());
  /external/autotest/frontend/
urls.py 2 from django.conf.urls import defaults
17 (RE_PREFIX + r'admin/', defaults.include(admin.site.urls)),
18 (RE_PREFIX, defaults.include('frontend.afe.urls')),
19 (TKO_RE_PREFIX, defaults.include('frontend.tko.urls')),
urls_common.py 2 from django.conf.urls import defaults
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
StyleUtils.java 48 final URLSpan[] urls = input.getSpans(0, input.length(), URLSpan.class); local
50 for (URLSpan span : urls) {
  /system/extras/multinetwork/
quick_test.sh 43 urls=$(getUrls $host)
44 for url in $urls; do
  /external/autotest/frontend/afe/
urls.py 1 from django.conf.urls import defaults
  /test/vts/utils/python/reporting/
log_uploading_utils.py 75 """Save test logs and add log urls to report message"""
83 urls = self._report_file_util.SaveReportsFromDirectory(
86 if urls is None:
89 if urls and self.web and self.web.enabled:
90 self.web.AddLogUrls(urls)
  /external/webrtc/webrtc/tools/loopback_test/
adapter.js 33 if (pcConfig.iceServers[i].hasOwnProperty('urls')){
34 pcConfig.iceServers[i]['url'] = pcConfig.iceServers[i]['urls'];
35 delete pcConfig.iceServers[i]['urls'];
50 // .urls is not supported in FF yet.
96 createIceServers = function(urls, username, password) {
99 for (i = 0; i < urls.length; i++) {
100 var iceServer = createIceServer(urls[i],
158 // Creates iceServers from the urls for Chrome M34 and above.
159 createIceServers = function(urls, username, password) {
162 // .urls is supported since Chrome M34
163 iceServers = {'urls': urls, property in class:iceServers
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/util/
TestLoader.java 70 URL[] urls = new URL[dependentJars.size() + 1]; local
71 urls[0] = jarFile.toURI().toURL();
74 urls[i] = jarIter.next().toURI().toURL();
76 return new URLClassLoader(urls);

Completed in 438 milliseconds

1 2 3 4 5 6 7 8 91011>>