HomeSort by relevance Sort by last modified time
    Searched refs:URL (Results 176 - 200 of 908) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/jmonkeyengine/engine/src/core/com/jme3/system/
JmeSystemDelegate.java 39 import java.net.URL;
76 public URL getResource(String name) {
99 public abstract AssetManager newAssetManager(URL configFile);
  /external/jmonkeyengine/engine/src/test/jme3test/awt/
AppHarness.java 45 import java.net.URL;
59 private URL appCfg = null;
115 appCfg = new URL(getParameter("AppSettingsURL"));
  /external/mockwebserver/src/test/java/com/google/mockwebserver/
CustomDispatcherTest.java 22 import java.net.URL;
49 final URL url = mockWebServer.getUrl("/"); local
50 final HttpURLConnection conn = (HttpURLConnection) url.openConnection();
89 final URL url = mockWebServer.getUrl(path);
92 conn = (HttpURLConnection) url.openConnection();
  /external/replicaisland/src/com/replica/replicaisland/
EventReporter.java 4 import java.net.URL;
81 URL serverAddress = null;
86 serverAddress = new URL(REPORT_SERVER + "?"
  /libcore/luni/src/main/java/java/net/
Authenticator.java 42 private URL url; field in class:Authenticator
145 * the realm that the URL is pointing to requires authorization.
223 * url of the connection that requests authentication.
229 String rPrompt, String rScheme, URL rURL,
242 thisAuthenticator.url = rURL;
252 * Returns the URL of the authentication request.
254 * @return authentication request url.
256 protected URL getRequestingURL() {
257 return url;
    [all...]
  /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/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
HttpURLConnectionTest.java 34 import java.net.URL;
341 conn = (HttpURLConnection) new URL("http://localhost:" + port
354 conn = (HttpURLConnection) new URL("http://localhost:" + port
376 conn = (HttpURLConnection) new URL("http://localhost:" + port
429 URL url = new URL(jettyURL);
430 HttpURLConnection httpURLConnect = (HttpURLConnection) url
463 // @tests the url with space
467 HttpURLConnection httpURLConnect = (HttpURLConnection) new URL(
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/applescript/
tab_applescript.h 18 // Contains the temporary URL when a user creates a new folder/item with
19 // url specified like
20 // |make new tab with properties {url:"http://google.com"}|.
35 // Return the URL currently visible to the user in the location bar.
36 - (NSString*)URL;
38 // Sets the URL, returns an error if it is invalid.
  /external/chromium_org/chrome/browser/history/android/
android_history_types_unittest.cc 14 EXPECT_EQ(HistoryAndBookmarkRow::URL,
15 HistoryAndBookmarkRow::GetColumnID("url"));
  /external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_links/
send_links.js 10 // Return an anchor's href attribute, stripping any URL fragment (hash '#').
12 // URL.
  /external/chromium_org/chrome/third_party/chromevox/extensions/searchvox/
abstract_result.js 36 * Extracts the wikipedia URL from knowledge panel.
38 * @return {?string} URL.
  /external/chromium_org/native_client_sdk/src/examples/api/url_loader/
example.js 24 // Find the first line break. This separates the URL data from the
27 var url = message_event.data;
31 url = message_event.data.substring(0, eolPos);
36 logEl.textContent += 'FULLY QUALIFIED URL: ' + url + '\n';
  /external/chromium_org/native_client_sdk/src/tools/tests/
chrome_mock.py 16 parser = optparse.OptionParser(usage='%prog [options] <URL to load>')
17 parser.add_option('--post', help='POST to URL.', dest='post',
19 parser.add_option('--get', help='GET to URL.', dest='get',
22 help='Number of seconds to sleep after reading URL',
29 parser.error('Expected URL to load.')
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLObjectElement.idl 29 [Reflect, URL] attribute DOMString codeBase;
31 [Reflect, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString data;
HTMLButtonElement.idl 25 [Reflect, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString formAction;
  /external/doclava/src/com/google/doclava/
FederationTagger.java 20 import java.net.URL;
32 private final Map<String, URL> federatedUrls = new HashMap<String, URL>();
37 * Adds a Doclava documentation site for federation. Accepts the base URL of
40 public void addSiteUrl(String name, URL site) {
  /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/okhttp/android/main/java/com/squareup/okhttp/
HttpsHandler.java 22 import java.net.URL;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
ComprehensionTlvTag.java 47 URL(0x31),
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
Uploader.java 42 import java.net.URL;
58 private final URL mUrl;
69 URL url = null; local
71 url = new URL(urlString);
73 Log.e(TAG, "Bad URL for uploading", e);
75 mUrl = url;
  /packages/providers/PartnerBookmarksProvider/src/com/android/providers/partnerbookmarks/
PartnerBookmarksContract.java 133 * <p>Type: TEXT (URL)</p>
135 public static final String URL = "url";
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/testtype/
JarHostTestTest.java 26 import java.net.URL;
49 Class<?> loadClass(String className, URL[] urls) throws ClassNotFoundException {
  /external/chromium/chrome/browser/autocomplete/
builtin_provider.cc 43 ACMatchClassification::MATCH | ACMatchClassification::URL));
47 ACMatchClassification::URL));
  /external/chromium_org/chrome/common/extensions/docs/examples/tutorials/getstarted/
popup.js 15 * Flickr URL that will give us lots and lots of whatever we're looking for.
18 * details about the construction of this URL.
64 * Given a photo, construct a URL using the method outlined at
68 * @return {string} The kitten's URL.
  /external/chromium_org/remoting/webapp/
plugin_settings.js 29 /** @type {string} Base URL for OAuth2 authentication. */
31 /** @type {string} Base URL for the OAuth2 API. */
33 /** @type {string} Base URL for the Remoting Directory REST API. */
35 /** @type {string} URL for the talk gadget web service. */

Completed in 3800 milliseconds

1 2 3 4 5 6 78 91011>>