/development/samples/training/threadsample/src/com/example/android/threadsample/ |
PhotoView.java | 31 import java.net.URL; 61 // The URL that points to the source of the image for this ImageView 62 private URL mImageURL; 144 * Returns the URL of the picture associated with this ImageView 145 * @return a URL 147 final URL getLocation() { 180 // Clears out the image drawable, turns off the cache, disconnects the view from a URL 205 * already drawn, and its URL isn't null, it invokes a Thread to download the image. Otherwise, 210 // If the image isn't already drawn, and the URL is set 278 * Attempts to set the picture URL for this ImageView and then download the picture [all...] |
/external/guava/guava-tests/test/com/google/common/io/ |
IoTestCase.java | 28 import java.net.URL; 71 URL testFileUrl = IoTestCase.class.getResource("testdata/i18n.txt"); 101 URL resourceUrl = IoTestCase.class.getResource("testdata/" + name); 163 private static void copy(URL url, File file) throws IOException { 164 InputStream in = url.openStream();
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
ICUData.java | 17 import java.net.URL; 95 URL i = null; 97 i = AccessController.doPrivileged(new PrivilegedAction<URL>() { 99 public URL run() {
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
ICUData.java | 16 import java.net.URL; 93 URL i = null; 95 i = AccessController.doPrivileged(new PrivilegedAction<URL>() { 97 public URL run() {
|
/external/libmojo/device/bluetooth/bluez/ |
bluetooth_service_attribute_value_bluez.h | 29 enum Type { NULLTYPE = 0, UINT, INT, UUID, STRING, BOOL, SEQUENCE, URL };
|
/external/libxml2/python/tests/ |
resolver.py | 14 def myResolver(URL, ID, ctxt):
|
/external/oauth/core/src/main/java/net/oauth/http/ |
HttpMessage.java | 21 import java.net.URL; 44 public HttpMessage(String method, URL url) 46 this(method, url, null); 49 public HttpMessage(String method, URL url, InputStream body) 52 this.url = url; 57 public URL url; field in class:HttpMessage [all...] |
/external/universal-tween-engine/java/applets/src/aurelienribon/utils/swing/ |
ImagePanel.java | 11 import java.net.URL; 26 public void setBackground(URL bgURL) { 48 public void setImage(URL imgUrl) { 68 public void setImage(URL imgUrl, int x, int y, int width, int height) {
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
ComprehensionTlvTag.java | 47 URL(0x31),
|
/packages/providers/PartnerBookmarksProvider/src/com/android/providers/partnerbookmarks/ |
PartnerBookmarksContract.java | 133 * <p>Type: TEXT (URL)</p> 135 public static final String URL = "url";
|
/prebuilts/go/darwin-x86/doc/articles/wiki/ |
final-noerror.go | 34 title := r.URL.Path[len("/edit/"):] 44 title := r.URL.Path[len("/view/"):]
|
notemplate.go | 34 title := r.URL.Path[len("/view/"):] 40 title := r.URL.Path[len("/edit/"):]
|
part3.go | 39 title := r.URL.Path[len("/view/"):] 45 title := r.URL.Path[len("/edit/"):]
|
/prebuilts/go/darwin-x86/src/net/http/cgi/ |
child.go | 19 "net/url" 111 // Hostname is provided, so we can reasonably construct a URL. 118 url, err := url.Parse(rawurl) 120 return nil, errors.New("cgi: failed to parse host and REQUEST_URI into a URL: " + rawurl) 122 r.URL = url 124 // Fallback logic if we don't have a Host header or the URL 126 if r.URL == nil { 127 url, err := url.Parse(uriStr [all...] |
/prebuilts/go/darwin-x86/src/sync/ |
example_test.go | 14 func (httpPkg) Get(url string) {} 27 for _, url := range urls { 30 // Launch a goroutine to fetch the URL. 31 go func(url string) { 34 // Fetch the URL. 35 http.Get(url) 36 }(url)
|
/prebuilts/go/linux-x86/doc/articles/wiki/ |
final-noerror.go | 34 title := r.URL.Path[len("/edit/"):] 44 title := r.URL.Path[len("/view/"):]
|
notemplate.go | 34 title := r.URL.Path[len("/view/"):] 40 title := r.URL.Path[len("/edit/"):]
|
part3.go | 39 title := r.URL.Path[len("/view/"):] 45 title := r.URL.Path[len("/edit/"):]
|
/prebuilts/go/linux-x86/src/net/http/cgi/ |
child.go | 19 "net/url" 111 // Hostname is provided, so we can reasonably construct a URL. 118 url, err := url.Parse(rawurl) 120 return nil, errors.New("cgi: failed to parse host and REQUEST_URI into a URL: " + rawurl) 122 r.URL = url 124 // Fallback logic if we don't have a Host header or the URL 126 if r.URL == nil { 127 url, err := url.Parse(uriStr [all...] |
/prebuilts/go/linux-x86/src/sync/ |
example_test.go | 14 func (httpPkg) Get(url string) {} 27 for _, url := range urls { 30 // Launch a goroutine to fetch the URL. 31 go func(url string) { 34 // Fetch the URL. 35 http.Get(url) 36 }(url)
|
/tools/tradefederation/core/tests/src/com/android/tradefed/result/ |
XmlResultReporterTest.java | 34 private static final String URL = "url"; 44 return new LogFile(PATH, URL, dataType); 49 return new LogFile(PATH, URL, type); 54 return new LogFile(PATH, URL, LogDataType.DIR);
|
/tools/tradefederation/core/src/com/android/tradefed/util/net/ |
HttpHelper.java | 33 import java.net.URL; 99 public String doGet(String url) throws IOException, DataSizeException { 100 CLog.d("Performing GET request for %s", url); 106 remote = getRemoteUrlStream(new URL(url)); 130 public void doGet(String url, OutputStream outputStream) throws IOException { 131 CLog.d("Performing GET download request for %s", url); 134 remote = getRemoteUrlStream(new URL(url)); 145 public void doGetIgnore(String url) throws IOException [all...] |
/art/test/155-java-set-resolved-type/src/ |
Main.java | 79 String url = "file://" + location + (ex ? "/classes-ex/" : "/classes/"); local 81 new java.net.URL[] { new java.net.URL(url) }, parent);
|
/external/curl/tests/libtest/ |
lib1502.c | 40 int test(char *URL) 71 easy_setopt(easy, CURLOPT_URL, URL);
|
lib1506.c | 32 int test(char *URL) 45 (void)URL; 86 fprintf(stderr, "Start at URL 0\n");
|