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

1 2

  /external/webkit/WebKit/win/
WebResource.cpp 41 WebResource::WebResource(IStream* data, const WebCore::KURL& url, const WebCore::String& mimeType, const WebCore::String& textEncodingName, const WebCore::String& frameName)
44 , m_url(url)
63 WebResource* instance = new WebResource(memoryStream.get(), response.url(), response.mimeType(), response.textEncodingName(), String());
102 /* [in] */ BSTR url,
108 m_url = MarshallingHelpers::BSTRToKURL(url);
123 HRESULT STDMETHODCALLTYPE WebResource::URL(
124 /* [retval][out] */ BSTR *url)
126 if (!url) {
131 *url = BString(String(m_url.string())).release();
WebURLResponse.cpp 169 result = LPCTSTR_UI_STRING("requested URL too long", "HTTP result code string");
294 /* [in] */ BSTR url,
299 m_response = ResourceResponse(MarshallingHelpers::BSTRToKURL(url), String(mimeType), expectedContentLength, String(textEncodingName), String());
324 if (m_response.url().isEmpty())
345 HRESULT STDMETHODCALLTYPE WebURLResponse::URL(
351 BString url(m_response.url().string());
352 *result = url.release();
353 if (!m_response.url().isEmpty() && !*result)
WebMutableURLRequest.cpp 195 /* [in] */ BSTR url,
199 m_request.setURL(MarshallingHelpers::BSTRToKURL(url));
220 HRESULT STDMETHODCALLTYPE WebMutableURLRequest::URL(
223 *result = MarshallingHelpers::KURLToBSTR(m_request.url());
330 /* [in] */ BSTR url)
332 m_request.setURL(MarshallingHelpers::BSTRToKURL(url));
348 ResourceHandle::setHostAllowsAnyHTTPSCertificate(m_request.url().host());
381 ResourceHandle::setClientCertificate(m_request.url().host(), certData.get());
DOMHTMLClasses.cpp 247 HRESULT STDMETHODCALLTYPE DOMHTMLDocument::URL(
253 *result = BString(static_cast<HTMLDocument*>(m_document)->url()).release();
    [all...]
  /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/WebKit/gtk/WebCoreSupport/
InspectorClientGtk.cpp 115 GOwnPtr<gchar> URL;
121 URL.set(g_filename_to_uri(fullPath.get(), NULL, NULL));
123 URL.set(g_filename_to_uri(DATA_DIR"/webkit-1.0/webinspector/localizedStrings.js", NULL, NULL));
126 return String::fromUTF8(URL.get());
  /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/webkit/WebKit/chromium/public/
WebInputElement.h 75 URL,
  /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 806 #define URL(val) { \
835 ATTRIBUTE(DOC_URL, URL("http://bellard.org/qemu/user-doc.html"))
911 ATTRIBUTE(DOC_URL, URL("http://bellard.org/qemu/user-doc.html"))
934 ATTRIBUTE(DOC_URL, URL("http://bellard.org/qemu/user-doc.html"))
  /external/webkit/WebCore/html/
HTMLInputElement.h 60 URL,
  /frameworks/base/core/java/android/provider/
Browser.java 62 * headers for the provided url. The keys can't be the standard HTTP headers
63 * as they are set by the WebView. The url's schema must be http(s).
71 BookmarkColumns._ID, BookmarkColumns.URL, BookmarkColumns.VISITS,
125 * and/or url, which can be edited by the user before saving.
128 * @param url Url for the bookmark. Can be null or empty string.
132 String url) {
135 i.putExtra("url", url);
191 new String[] { BookmarkColumns.URL },
448 String url = c.getString(HISTORY_PROJECTION_URL_INDEX); local
    [all...]
Calendar.java 65 * The content:// style URL for the top-level calendar authority
245 * The content:// style URL for this table
255 * The URL to the calendar
256 * <P>Type: TEXT (URL)</P>
258 public static final String URL = "url";
603 * The content:// style URL for this table
707 DatabaseUtils.cursorStringToContentValuesIfPresent(cursor, cv, Calendars.URL);
    [all...]
  /libcore/luni/src/main/java/java/net/
URL.java 30 * A URL instance specifies the location of a resource on the internet as
32 * which generates the output dynamically. A URL is divided in its parts
36 public final class URL implements java.io.Serializable {
47 * @serial the file of this URL
55 * @serial the protocol of this URL (http, file)
63 * @serial the host of this URL
71 * @serial the port of this URL
79 * @serial the authority of this URL
102 * @serial the reference of this URL
113 * The URL Stream (protocol) Handle
    [all...]
  /external/libxml2/
pattern.c 920 xmlChar *URL = NULL;
956 XML_PAT_COPY_NSNAME(ctxt, URL, XML_XML_NAMESPACE);
960 XML_PAT_COPY_NSNAME(ctxt, URL, ctxt->namespaces[2 * i])
976 PUSH(XML_OP_ATTR, NULL, URL);
984 PUSH(XML_OP_ATTR, token, URL);
991 if (URL != NULL)
992 XML_PAT_FREE_STRING(ctxt, URL)
1012 xmlChar *URL = NULL;
1077 XML_PAT_COPY_NSNAME(ctxt, URL, XML_XML_NAMESPACE)
1081 XML_PAT_COPY_NSNAME(ctxt, URL, ctxt->namespaces[2 * i]
    [all...]
schematron.c 181 const xmlChar *URL;
580 * @URL: the location of the schema
588 xmlSchematronNewParserCtxt(const char *URL)
592 if (URL == NULL)
606 ret->URL = xmlDictLookup(ret->dict, (const xmlChar *) URL, -1);
1090 if (ctxt->URL != NULL) {
1091 doc = xmlReadFile((const char *) ctxt->URL, NULL,
1097 ctxt->URL, NULL);
1111 doc->URL = xmlStrdup(BAD_CAST "in_memory_buffer")
    [all...]
xinclude.c 53 xmlChar *URI; /* the fully resolved resource URL */
76 xmlChar * url; /* the current URL processed */ member in struct:_xmlXIncludeCtxt
78 int urlMax; /* size of URL stack */
79 xmlChar * *urlTab; /* URL stack */
306 * @value: the url
308 * Pushes a new url on top of the url stack
327 xmlXIncludeErrMemory(ctxt, NULL, "adding URL");
338 xmlXIncludeErrMemory(ctxt, NULL, "adding URL");
    [all...]
catalog.c 137 xmlChar *URL; /* The expanded URL using the base */
271 const xmlChar *value, const xmlChar *URL, xmlCatalogPrefer prefer,
300 if (URL == NULL)
301 URL = value;
302 if (URL != NULL)
303 ret->URL = xmlStrdup(URL);
305 ret->URL = NULL;
349 if (ret->URL != NULL
    [all...]
parser.c 207 void *user_data, int depth, const xmlChar *URL,
    [all...]
relaxng.c 224 xmlChar *URL;
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
StkService.java 62 URL(0x31),
  /external/libxml2/include/libxml/
tree.h 353 const xmlChar *href; /* URL for the namespace */
538 const xmlChar *URL; /* The URI for that document */
    [all...]
  /external/webkit/WebCore/bindings/objc/
PublicDOMInterfaces.h 91 @property(readonly, copy) NSString *URL;
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldURLTest.java 36 import java.net.URL;
46 @TestTargetClass(URL.class)
60 * @tests java.net.URL#URL(java.lang.String, java.lang.String, int, java.lang.String)
65 method = "URL",
71 new URL("http", "apache.org", 123456789, "file");
73 new URL("http", "apache.org", -123, "file");
81 * @tests java.net.URL#URL(java.lang.String, java.lang.String,
87 method = "URL",
332 URL url = new URL("http:\/\/web2.javasoft.com\/some+file.html"); local
678 URL url = new URL("http:\/\/www.example.com"); local
698 URL url = new URL("ftp:\/\/myUser:password@host.dom\/etc\/motd"); local
717 URL url = new URL("http:\/\/www.java2s.com:8080"); local
1045 URL url = new URL(new URL(strURL), ref); local
1057 URL url = new URL(strURL); local
    [all...]
  /external/webkit/WebKit/android/nav/
WebView.cpp 910 void overrideUrlLoading(const WebCore::String& url)
913 jstring jName = env->NewString((jchar*) url.characters(), url.length());
    [all...]

Completed in 5624 milliseconds

1 2