HomeSort by relevance Sort by last modified time
    Searched refs:url (Results 151 - 175 of 1269) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/webkit/WebCore/page/
UserScript.h 39 UserScript(const String& source, const KURL& url,
43 , m_url(url)
51 const KURL& url() const { return m_url; } function in class:WebCore::UserScript
UserStyleSheet.h 39 UserStyleSheet(const String& source, const KURL& url,
42 , m_url(url)
49 const KURL& url() const { return m_url; } function in class:WebCore::UserStyleSheet
History.h 56 void stateObjectAdded(PassRefPtr<SerializedScriptValue>, const String& title, const String& url, StateObjectType, ExceptionCode&);
61 KURL urlForState(const String& url);
  /external/webkit/WebCore/websockets/
ThreadableWebSocketChannel.cpp 53 PassRefPtr<ThreadableWebSocketChannel> ThreadableWebSocketChannel::create(ScriptExecutionContext* context, WebSocketChannelClient* client, const KURL& url, const String& protocol)
64 return WorkerThreadableWebSocketChannel::create(workerContext, client, mode, url, protocol);
69 return WebSocketChannel::create(context, client, url, protocol);
  /external/webkit/WebKit/chromium/src/
WebPageSerializer.cpp 66 WebString WebPageSerializer::generateMarkOfTheWebDeclaration(const WebURL& url)
68 return String::format("\n<!-- saved from url=(%04d)%s -->\n",
69 static_cast<int>(url.spec().length()),
70 url.spec().data());
  /external/webkit/WebKit/qt/docs/webkitsnippets/webpage/
main.cpp 30 Thumbnailer(const QUrl &url);
57 Thumbnailer::Thumbnailer(const QUrl &url)
59 page.mainFrame()->load(url);
  /external/webkit/WebKitTools/QtLauncher/
mainwindow.cpp 38 MainWindow::MainWindow(const QString& url)
100 void MainWindow::setAddressUrl(const QString& url)
102 urlEdit->setText(url);
105 void MainWindow::addCompleterEntry(const QUrl& url)
111 QString s = url.toString(opts);
121 void MainWindow::load(const QString& url)
123 QUrl qurl = urlFromUserInput(url);
125 qurl = QUrl("http://" + url + "/");
129 void MainWindow::load(const QUrl& url)
131 if (!url.isValid()
    [all...]
urlloader.cpp 46 QUrl url(qstr, QUrl::StrictMode);
47 if (url.isValid()) {
49 m_frame->load(url);
  /frameworks/base/core/java/android/service/urlrenderer/
UrlRenderer.java 38 * method for each url. A null result means that there was a server
39 * error or a problem rendering the url.
40 * @param url The url that has been rendered.
46 public void complete(String url, ParcelFileDescriptor result);
66 public void complete(String url, ParcelFileDescriptor result) {
67 mCallback.complete(url, result);
77 * @param callback An instance of {@link Callback} invoked for each url.
  /packages/apps/Browser/src/com/android/browser/
AddNewBookmark.java 47 mUrlText = (TextView) findViewById(R.id.url);
52 * Set the new url for the bookmark item.
53 * @param url The new url for the bookmark item.
55 /* package */ void setUrl(String url) {
56 mUrlText.setText(url);
  /packages/apps/Browser/tests/src/com/android/browser/
TestWebChromeClient.java 66 public void onReceivedTouchIconUrl(WebView view, String url,
68 mWrappedClient.onReceivedTouchIconUrl(view, url, precomposed);
104 public boolean onJsAlert(WebView view, String url, String message,
106 return mWrappedClient.onJsAlert(view, url, message, result);
111 public boolean onJsConfirm(WebView view, String url, String message,
113 return mWrappedClient.onJsConfirm(view, url, message, result);
118 public boolean onJsPrompt(WebView view, String url, String message,
120 return mWrappedClient.onJsPrompt(view, url, message, defaultValue, result);
125 public boolean onJsBeforeUnload(WebView view, String url, String message,
127 return mWrappedClient.onJsBeforeUnload(view, url, message, result)
    [all...]
  /external/chromium/net/http/
http_transaction_unittest.cc 112 mock_transactions[GURL(trans->url).spec()] = trans;
116 mock_transactions.erase(GURL(trans->url).spec());
119 const MockTransaction* FindMockTransaction(const GURL& url) {
121 MockTransactionMap::const_iterator it = mock_transactions.find(url.spec());
127 if (url == GURL(kBuiltinMockTransactions[i]->url))
  /external/webkit/WebCore/bindings/generic/
BindingDOMWindow.h 51 const String& url,
64 const String& url,
87 // FIXME: It's much better for client API if a new window starts with a URL,
88 // here where we know what URL we are going to open. Unfortunately, this
89 // code passes the empty string for the URL, but there's a reason for that.
91 // and dialogArguments values. Also, to decide whether to use the URL
94 // issues to pass the URL instead of "".
110 if (!protocolIsJavaScript(url) || BindingSecurity<Binding>::canAccessFrame(state, newFrame, true)) {
112 url.isEmpty() ? KURL(ParsedURLString, "") : completeURL(url);
    [all...]
  /external/webkit/WebCore/platform/network/soup/
CookieJarSoup.cpp 58 void setCookies(Document* document, const KURL& url, const String& value)
64 GOwnPtr<SoupURI> origin(soup_uri_new(url.string().utf8().data()));
80 String cookies(const Document* /*document*/, const KURL& url)
86 SoupURI* uri = soup_uri_new(url.string().utf8().data());
96 String cookieRequestHeaderFieldValue(const Document* /*document*/, const KURL& url)
102 SoupURI* uri = soup_uri_new(url.string().utf8().data());
  /frameworks/base/core/java/android/webkit/
WebChromeClient.java 49 * Notify the host application of the url for an apple-touch-icon.
51 * @param url The icon url.
52 * @param precomposed True if the url is for a precomposed touch icon.
54 public void onReceivedTouchIconUrl(WebView view, String url,
131 * @param url The url of the page requesting the dialog.
136 public boolean onJsAlert(WebView view, String url, String message,
148 * @param url The url of the page requesting the dialog
    [all...]
  /libcore/luni/src/main/java/java/net/
JarURLConnection.java 28 * This class establishes a connection to a {@code jar:} URL using the {@code
31 * as follows: <i>jar:{archive-url}!/{entry}</i> where "!/" is called a
45 * The location part of the represented URL.
51 private URL fileURL;
53 // the file component of the URL
58 * specified URL.
60 * @param url
61 * the URL that contains the location to connect to.
63 * if an invalid URL has been entered.
65 protected JarURLConnection(URL url) throws MalformedURLException
    [all...]
URLClassLoader.java 53 * URLs contained in the URL search list.
57 ArrayList<URL> originalUrls;
59 List<URL> searchList;
61 Map<URL, URLHandler> handlerMap = new HashMap<URL, URLHandler>();
71 SubURLClassLoader(URL[] urls) {
75 SubURLClassLoader(URL[] urls, ClassLoader parent) {
114 private HashMap<String, ArrayList<URL>> map;
118 static IndexFile readIndexFile(JarFile jf, JarEntry indexEntry, URL url) {
205 URL url; field in class:URLClassLoader.URLHandler
680 URL url = result.get(i); local
1182 URL url = new URL(new URL(file), element); local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/jar/
Handler.java 22 import java.net.URL;
29 * Returns a connection to the jar file pointed by this <code>URL</code>
33 * this url.
35 * java.net.URL The URL to which the connection is pointing to
42 protected URLConnection openConnection(URL u) throws IOException {
48 * @param url
49 * URL the context URL
58 protected void parseURL(URL url, String spec, int start, int limit)
    [all...]
  /external/chromium/net/base/
mime_sniffer_unittest.cc 18 std::string url; member in struct:SnifferTest
29 GURL(tests[i].url),
39 const std::string& url,
42 net::SniffMimeType(content.data(), content.size(), GURL(url),
55 GURL url; local
57 net::SniffMimeType(buf, 0, url, type_hint, &mime_type);
59 net::SniffMimeType(buf, 1, url, type_hint, &mime_type);
61 net::SniffMimeType(buf, 2, url, type_hint, &mime_type);
130 "invalid-url",
static_cookie_policy.h 45 // whether the URL's cookies can be read.
46 virtual int CanGetCookies(const GURL& url,
51 // whether the URL's cookies can be set.
52 virtual int CanSetCookie(const GURL& url,
  /external/chromium/net/data/proxy_resolver_v8_unittest/
side_effects.js 7 function FindProxyForURL(url, host) {
  /external/oauth/core/src/main/java/net/oauth/http/
HttpResponseMessage.java 20 import java.net.URL;
31 protected HttpResponseMessage(String method, URL url) {
32 super(method, url);
  /external/webkit/WebCore/editing/
CreateLinkCommand.cpp 35 CreateLinkCommand::CreateLinkCommand(Document* document, const String& url)
38 m_url = url;
  /external/webkit/WebCore/loader/
MainResourceLoader.cpp 161 // Update cookie policy base URL as URL changes, except for subframes, which use the
162 // URL of the main frame which doesn't change when we redirect.
164 newRequest.setFirstPartyForCookies(newRequest.url());
180 frameLoader()->checkIfDisplayInsecureContent(top->document()->securityOrigin(), newRequest.url());
192 static bool shouldLoadAsEmptyDocument(const KURL& url)
195 return url.isEmpty() || (url.protocolIs("about") && equalIgnoringRef(url, blankURL()));
197 return url.isEmpty() || url.protocolIs("about")
203 KURL url = request().url(); local
464 KURL url = m_substituteData.responseURL(); local
509 const KURL& url = r.url(); local
    [all...]
  /external/webkit/WebCore/platform/
CrossThreadCopier.cpp 43 CrossThreadCopierBase<false, false, KURL>::Type CrossThreadCopierBase<false, false, KURL>::copy(const KURL& url)
45 return url.copy();

Completed in 2046 milliseconds

1 2 3 4 5 67 8 91011>>