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

1 2 3

  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
URLDecoderTest.java 41 final String URL = "http://" + Support_Configuration.HomeAddress;
45 URLEncoder.encode(URL)).equals(URL));
URLEncoderTest.java 34 final String URL = "http://" + Support_Configuration.HomeAddress;
39 URLEncoder.encode(URL)).equals(URL));
URLTest.java 31 import java.net.URL;
44 protected URLConnection openConnection(URL u)
50 URL u;
52 URL u1;
54 URL u2;
56 URL u3;
58 URL u4;
60 URL u5;
62 URL u6;
69 * @tests java.net.URL#URL(java.lang.String
798 URL url = new URL("jar:" + BASE + "!\/foo.jar!\/Bugs\/HelloWorld.class"); local
911 URL url = new URL("http", ipv6Host, -1, "myfile"); local
1189 URL url = new URL(strURL); local
1200 URL url = new URL(new URL(strURL), ref); local
1226 URL url = new URL(null, "foobar:\/\/example.com\/foobar", myHandler); local
1270 URL url = new URL("http:\/\/localhost"); local
    [all...]
  /external/chromium/chrome/browser/ui/touch/frame/
touch_browser_frame_view.h 35 URL,
  /external/webkit/Source/WebKit/win/
WebResource.cpp 38 WebResource::WebResource(IStream* data, const WebCore::KURL& url, const WTF::String& mimeType, const WTF::String& textEncodingName, const WTF::String& frameName)
41 , m_url(url)
60 WebResource* instance = new WebResource(memoryStream.get(), response.url(), response.mimeType(), response.textEncodingName(), String());
99 /* [in] */ BSTR url,
105 m_url = MarshallingHelpers::BSTRToKURL(url);
120 HRESULT STDMETHODCALLTYPE WebResource::URL(
121 /* [retval][out] */ BSTR *url)
123 if (!url) {
128 *url = BString(String(m_url.string())).release();
WebURLResponse.cpp 167 result = WEB_UI_STRING("requested URL too long", "HTTP result code string");
292 /* [in] */ BSTR url,
297 m_response = ResourceResponse(MarshallingHelpers::BSTRToKURL(url), String(mimeType), expectedContentLength, String(textEncodingName), String());
322 if (m_response.url().isEmpty())
343 HRESULT STDMETHODCALLTYPE WebURLResponse::URL(
349 BString url(m_response.url().string());
350 *result = url.release();
351 if (!m_response.url().isEmpty() && !*result)
WebMutableURLRequest.cpp 196 /* [in] */ BSTR url,
200 m_request.setURL(MarshallingHelpers::BSTRToKURL(url));
221 HRESULT STDMETHODCALLTYPE WebMutableURLRequest::URL(
224 *result = MarshallingHelpers::KURLToBSTR(m_request.url());
331 /* [in] */ BSTR url)
333 m_request.setURL(MarshallingHelpers::BSTRToKURL(url));
349 ResourceHandle::setHostAllowsAnyHTTPSCertificate(m_request.url().host());
362 ResourceHandle::setClientCertificate(m_request.url().host(), certData.get());
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
URLEncoderTest.java 34 final String URL = "http://" + Support_Configuration.HomeAddress;
39 URLEncoder.encode(URL)).equals(URL));
  /external/webkit/Source/WebCore/inspector/front-end/
InjectedFakeWorker.js 34 Worker = function(url)
36 var impl = new FakeWorker(this, url);
59 function FakeWorker(worker, url)
61 var scriptURL = this._expandURLAndCheckOrigin(document.baseURI, location.href, url);
69 InjectedScriptHost.didCreateWorker(this._id, scriptURL.url, false);
95 _buildWorker: function(url)
97 var code = this._loadScript(url.url);
102 iframeElement.onload = bind(this._onWorkerFrameLoaded, this, iframeElement, url, code);
105 this._attachWorkerFrameToDocument(iframeElement, url, code)
    [all...]
  /external/chromium/chrome/browser/ui/views/autocomplete/
autocomplete_result_view.h 33 URL,
  /external/jsilver/src/com/google/streamhtmlparser/util/
HtmlUtils.java 54 * <li>{@code NONE} if it does not contain a URL in the expected format.
55 * <li>{@code URL_START} if it contains a URL but hasn't seen any of
57 * <li>{@code URL} if it contains a URL and has seen at least some of
64 URL
69 * that contains a URL. Used by {@link #parseContentAttributeForUrl}.
72 "^\\s*\\d*\\s*;\\s*URL\\s*=\\s*[\'\"]?";
354 * Parses the given {@code String} to determine if it contains a URL in the
363 * a URL.
369 * value contains a URL and whether we are at the start of the URL or pas
    [all...]
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssContentProvider.java 46 // Set up our URL matchers to help us determine what an
60 public static final String URL = "url";
76 URL + " TEXT," +
  /external/chromium/chrome/browser/autocomplete/
autocomplete_match.h 48 URL = 1 << 0, // A URL
68 URL_WHAT_YOU_TYPED = 0, // The input as a URL.
69 HISTORY_URL, // A past page whose URL contains the input.
73 NAVSUGGEST, // A suggested URL.
80 EXTENSION_APP, // An Extension App with a title/url that contains
146 // by pressing the arrow keys. This may be different than a URL, for example,
155 // The URL to actually load when the autocomplete item is selected. This URL
184 // True if the user has starred the destination URL
    [all...]
autocomplete.h 93 // URL input type:
138 // Extension App (exact match on title only, not url) | 1425
141 // Extension App (inexact match on title only, not url) | 1175*~
151 // is a keyword with no replacement string, that is, a shortcut for a URL.)
165 // on how many times the URL for the Extension App has been typed and how
188 // cannot be opened as a URL, so it is marked as a QUERY; yet the user
189 // probably intends to type more and have it eventually become a URL, so we
195 // treat as an URL by specifying a desired_tld
196 URL, // Input autodetected as a URL
    [all...]
  /external/webkit/Tools/DumpRenderTree/chromium/
TestNavigationController.h 73 void setURL(const WebKit::WebURL& url) { m_url = url; }
74 const WebKit::WebURL& URL() const { return m_url; }
  /frameworks/base/telephony/java/com/android/internal/telephony/cat/
ComprehensionTlvTag.java 47 URL(0x31),
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
ConvertSwitchDialog.java 39 import java.net.URL;
47 /** URL containing more info */
48 private static final String URL = "http://tools.android.com/tips/non-constant-fields"; //$NON-NLS-1$
81 "For more information, see <a href=\"" + URL + "\">" + URL + "</a>",
114 browser.openURL(new URL(URL));
117 URL);
  /external/webkit/Source/WebKit/android/nav/
CachedInput.h 51 URL = 7
  /libcore/luni/src/main/java/java/net/
URL.java 29 import libcore.net.url.FileHandler;
30 import libcore.net.url.FtpHandler;
31 import libcore.net.url.JarHandler;
32 import libcore.net.url.UrlUtils;
39 * <h3>Parts of a URL</h3>
40 * A URL is composed of many parts. This class can both parse URL strings into
41 * parts and compose URL strings from parts. For example, consider the parts of
42 * this URL:
77 public final class URL implements Serializable
    [all...]
  /packages/apps/Browser/src/com/android/browser/provider/
SnapshotProvider.java 51 public static final String URL = "url";
91 Snapshots.URL + " TEXT NOT NULL," +
187 throw new UnsupportedOperationException("Unknown URL " + uri.toString());
  /external/chromium/chrome/browser/bookmarks/
bookmark_model.h 42 // BookmarkNode contains information about a starred entry: title, URL, favicon,
50 URL,
55 // Creates a new node with the specified url and id of 0
56 explicit BookmarkNode(const GURL& url);
57 // Creates a new node with the specified url and id.
58 BookmarkNode(int64 id, const GURL& url);
61 // Returns the URL.
63 // Sets the URL to the given value.
64 void SetURL(const GURL& url) { url_ = url; }
    [all...]
  /external/oauth/core/src/main/java/net/oauth/
OAuthMessage.java 49 public OAuthMessage(String method, String URL,
52 this.URL = URL;
65 public String URL;
73 return "OAuthMessage(" + method + ", " + URL + ", " + parameters + ")";
213 into.put("URL", URL);
  /external/qemu/hw/
bt-sdp.c 805 #define URL(val) { \
834 ATTRIBUTE(DOC_URL, URL("http://bellard.org/qemu/user-doc.html"))
910 ATTRIBUTE(DOC_URL, URL("http://bellard.org/qemu/user-doc.html"))
933 ATTRIBUTE(DOC_URL, URL("http://bellard.org/qemu/user-doc.html"))
  /frameworks/base/core/java/android/provider/
Browser.java 70 * headers for the provided url. The keys can't be the standard HTTP headers
71 * as they are set by the WebView. The url's schema must be http(s).
80 BookmarkColumns.URL, // 1
152 * and/or a url, both of which can be edited by the user before saving.
156 * @param url Url for the bookmark. Can be null or empty string.
160 String url) {
163 i.putExtra("url", url);
230 * column, {@link BookmarkColumns#URL}
    [all...]
BrowserContract.java 147 * The URL of the bookmark.
148 * <P>Type: TEXT (URL)</P>
150 public static final String URL = "url";
477 * The URL the images came from.
478 * <P>Type: TEXT (URL)</P>
480 public static final String URL = "url_key";

Completed in 794 milliseconds

1 2 3