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

1 2 3 4 5 6 7 8 91011>>

  /external/jline/src/src/main/java/jline/
ClassNameCompletor.java 38 Set urls = new HashSet(); local
47 urls.addAll(Arrays.asList(((URLClassLoader) loader).getURLs()));
65 urls.add(((JarURLConnection) uc).getJarFileURL());
72 for (Iterator i = urls.iterator(); i.hasNext();) {
  /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 */
smooth-gtk-thread.c 48 gint num_urls = 9; /* Just make sure this is less than urls[]*/
49 const char * const urls[]= { variable
82 urls[j]);
89 outfile = fopen(urls[j], "wb");
136 /* Make sure I don't create more threads than urls. */
145 fprintf(stderr, "Thread %d, gets %s\n", i, urls[i]);
  /external/google-benchmark/
mingw.py 44 urls = ( variable
55 def repository(urls = urls, log = EmptyLogger()):
63 for url in urls:
  /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) {
  /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) {
  /prebuilts/go/darwin-x86/doc/codewalk/
urlpoll.go 20 var urls = []string{ var
32 // StateMonitor maintains a map that stores the state of the URLs being
108 for _, url := range urls {
  /prebuilts/go/linux-x86/doc/codewalk/
urlpoll.go 20 var urls = []string{ var
32 // StateMonitor maintains a map that stores the state of the URLs being
108 for _, url := range urls {
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/
mingw.py 44 urls = ( variable
55 def repository(urls = urls, log = EmptyLogger()):
63 for url in 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/apache-harmony/support/src/test/resources/tests/resources/JarIndex/
hyts_13.jar 
hyts_33.jar 
hyts_23.jar 
  /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...]
  /libcore/luni/src/test/java/tests/java/security/
SecureClassLoaderTest.java 170 URL[] urls = new URL[] { new URL("http://localhost") }; local
171 URLClassLoader ucl = URLClassLoader.newInstance(urls);
  /libcore/support/src/test/java/tests/resources/JarIndex/
hyts_13.jar 
hyts_33.jar 
hyts_23.jar 
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
JarTestFinder.java 44 URL[] urls = { local
47 URLClassLoader cl = URLClassLoader.newInstance(urls, JarTestFinder.class.getClassLoader());
  /external/freetype/src/tools/docmaker/
sources.py 178 urls = r'(?:https?|telnet|gopher|file|wais|ftp)' variable
188 %(urls)s : # need resource and a colon
200 """ % {'urls' : urls,
  /frameworks/base/services/robotests/src/com/android/server/testing/
FrameworkRobolectricTestRunner.java 111 URL... urls) {
112 super(systemClassLoader, instrumentationConfig, urls);
141 Enumeration<URL> urls = getResources(resource); local
142 while (urls.hasMoreElements()) {
143 URL url = urls.nextElement();
178 InstrumentationConfiguration instrumentationConfig, URL... urls) {
183 urls);
  /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);
  /external/robolectric-shadows/robolectric/src/main/java/org/robolectric/internal/dependency/
MavenDependencyResolver.java 28 * Get an array of local artifact URLs for the given dependencies. The order of the URLs is guaranteed to be the
29 * same as the input order of dependencies, i.e., urls[i] is the local artifact URL for dependencies[i].
54 URL[] urls = new URL[dependencies.length]; local
55 for (int i = 0; i < urls.length; i++) {
57 urls[i] = Util.url(artifacts.get(key(dependencies[i])));
62 return urls;
67 URL[] urls = getLocalArtifactUrls(dependency); local
68 if (urls.length > 0) {
69 return urls[0]
    [all...]

Completed in 1416 milliseconds

1 2 3 4 5 6 7 8 91011>>