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

1 2 3 4 5 6 7 8 91011>>

  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
app.yaml 7 - url: /auth
10 - url: /login
13 - url: /fetch_friend_updates
16 - url: /fetch_status
19 - url: /add_user
22 - url: /edit_user
25 - url: /users
28 - url: /delete_friend
31 - url: /edit_user
34 - url: /add_credential
    [all...]
  /external/webkit/WebCore/manual-tests/
mask-composite-missing-images.html 9 -webkit-mask-image: url(url-not-found), url(url-not-found), url(url-not-found), url(url-not-found), url(url-not-found), url(url-not-found), url(url-not-found), url(url-not-found), url(url-not-found)
    [all...]
  /external/webkit/WebCore/manual-tests/resources/
Default-port-frame-contents.html 1 My URL is: <script>document.write(document.URL);</script>
  /external/webkit/WebKitTools/QueueStatusServer/
cron.yaml 3 url: /gc
app.yaml 7 - url: /stylesheets
10 - url: /.*
  /dalvik/libcore-disabled/sound/src/main/java/com/android/internal/sound/sampled/
AndroidAudioInputStream.java 19 import java.net.URL;
27 * URL to the original audio data in it, so we can feed it into the Android
33 * Holds the URL to the MIDI data.
35 private URL url; field in class:AndroidAudioInputStream
40 * @param url The URL that points to the audio data.
42 public AndroidAudioInputStream(URL url) {
45 this.url = url
    [all...]
  /external/guava/src/com/google/common/io/
Resources.java 26 import java.net.URL;
32 * Note that even those these methods use {@link URL} parameters, they
45 * read from the given URL.
47 * @param url the URL to read from
51 final URL url) {
52 checkNotNull(url);
55 return url.openStream();
62 * {@link InputStreamReader} that read a URL using the given character set
    [all...]
  /external/webkit/WebCore/page/
Location.cpp 49 inline const KURL& Location::url() const function in class:WebCore::Location
53 const KURL& url = m_frame->loader()->url(); local
54 if (!url.isValid())
57 return url;
65 const KURL& url = this->url(); local
66 return url.hasPath() ? url.prettyURL() : url.prettyURL() + "/"
84 const KURL& url = this->url(); local
101 const KURL& url = this->url(); local
110 const KURL& url = this->url(); local
119 const KURL& url = this->url(); local
137 const KURL& url = this->url(); local
    [all...]
  /frameworks/base/core/java/android/webkit/
URLUtil.java 61 // bug 762454: strip period off end of url
71 Log.v(LOGTAG, "smartUrlFilter: failed to parse url = " + inUrl);
108 public static byte[] decode(byte[] url) throws IllegalArgumentException {
109 if (url.length == 0) {
114 byte[] tempData = new byte[url.length];
117 for (int i = 0; i < url.length; i++) {
118 byte b = url[i];
120 if (url.length - i > 2) {
121 b = (byte) (parseHex(url[i + 1]) * 16
122 + parseHex(url[i + 2]))
    [all...]
  /cts/tools/signature-tools/templates/
Link.st 1 <a class="$link_style; null="default"$" href="$url$">$name$</a
ClassChangedLink.st 1 $Link(url={$it.packageName$.$it.name$.html}, name={<tt>$it.name$</tt>})$
PackageChangedLink.st 1 $Link(url={changes/pkg_$it.name$.html}, name={<tt>$it.name$</tt>})
  /external/webkit/LayoutTests/http/tests/appcache/
main-resource-hash-expected.txt 1 Test that offline applications' main resources are not affected by URL hashes.
  /dalvik/libcore/luni/src/test/java/tests/api/java/net/
URLStreamHandlerTest.java 13 import java.net.URL;
27 args = {URL.class, URL.class}
31 URL url1 = new URL("ftp://test_url/test?a=b&c=%D0+%D1");
32 URL url2 = new URL("http://test_url/test?a=b&c=%D0+%D1");
35 URL url3 = new URL("http://test_url+/test?a=b&c=%D0+%D1");
63 args = {URL.class
157 URL url = new URL("http:\/\/test.org"); local
198 URL url = new URL("http:\/\/test.org"); local
219 URL url = new URL("http:\/\/test.org"); local
    [all...]
  /development/scripts/app_engine_server/
app.yaml 7 - url: /gae_shell/static
11 - url: /gae_shell/.*
15 - url: .*
  /dalvik/libcore-disabled/sound/src/main/java/com/android/internal/sound/midi/
AndroidSequence.java 19 import java.net.URL;
27 * URL to the original MIDI data in it, so we can feed it into the Android
33 * Holds the URL to the MIDI data.
35 private URL url; field in class:AndroidSequence
40 * @param url The URL that points to the MIDI data.
45 public AndroidSequence(URL url) throws InvalidMidiDataException {
48 this.url = url
    [all...]
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/file/
Handler.java 22 import java.net.URL;
35 * Returns a connection to the a file pointed by this <code>URL</code> in
38 * @return A connection to the resource pointed by this url.
39 * @param url
40 * URL The URL to which the connection is pointing to
44 public URLConnection openConnection(URL url) throws IOException {
45 return openConnection(url, null);
49 * The behaviour of this method is the same as openConnection(URL)
    [all...]
  /frameworks/base/awt/org/apache/harmony/awt/gl/image/
URLDecodingImageSource.java 30 import java.net.URL;
36 URL url; field in class:URLDecodingImageSource
38 public URLDecodingImageSource(URL url){
41 security.checkConnect(url.getHost(), url.getPort());
43 Permission p = url.openConnection().getPermission();
48 this.url = url;
    [all...]
  /dalvik/libcore/luni/src/main/java/java/net/
URLClassLoader.java 55 * URLs contained in the URL search list.
59 ArrayList<URL> originalUrls;
61 List<URL> searchList;
63 Map<URL, URLHandler> handlerMap = new HashMap<URL, URLHandler>();
73 SubURLClassLoader(URL[] urls) {
77 SubURLClassLoader(URL[] urls, ClassLoader parent) {
116 private HashMap<String, ArrayList<URL>> map;
120 static IndexFile readIndexFile(JarFile jf, JarEntry indexEntry, URL url) {
207 URL url; field in class:URLClassLoader.URLHandler
683 URL url = result.get(i); local
1185 URL url = new URL(new URL(file), element); local
    [all...]
  /external/webkit/WebCore/svg/
SVGURIReference.cpp 53 String SVGURIReference::getTarget(const String& url)
55 if (url.startsWith("url(")) { // URI References, ie. fill:url(#target)
56 unsigned int start = url.find('#') + 1;
57 unsigned int end = url.reverseFind(')');
59 return url.substring(start, end - start);
60 } else if (url.find('#') > -1) { // format is #target
61 unsigned int start = url.find('#') + 1;
62 return url.substring(start, url.length() - start)
    [all...]
  /packages/apps/Browser/src/com/android/browser/
LogTag.java 26 * @param url the url of the new bookmark.
29 public static void logBookmarkAdded(String url, String where) {
30 EventLog.writeEvent(EventLogTags.BROWSER_BOOKMARK_ADDED, url + "|"
41 * @param url the url of that page that finished loading.
44 public static void logPageFinishedLoading(String url, long duration) {
45 EventLog.writeEvent(EventLogTags.BROWSER_PAGE_LOADED, url + "|"
52 * @param url the url of the page that is being logged (old page)
    [all...]
  /build/tools/droiddoc/templates/
index.cs 3 <meta http-equiv="refresh" content="0;url=packages.html">
  /development/tools/idegen/
idegen.iml 4 <output url="file://$MODULE_DIR$/classes" />
5 <output-test url="file://$MODULE_DIR$/classes" />
7 <content url="file://$MODULE_DIR$">
8 <sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
  /external/expat/xmlwf/
xmlurl.h 8 const XML_Char *url,
  /external/webkit/LayoutTests/http/tests/appcache/resources/
local-content.manifest 4 file:/ # Should be ignored due to different URL scheme, but it doesn't hurt to try.

Completed in 2329 milliseconds

1 2 3 4 5 6 7 8 91011>>