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

<<11121314151617181920>>

  /external/webkit/WebCore/loader/
DocumentLoader.cpp 139 const KURL& DocumentLoader::url() const function in class:WebCore::DocumentLoader
141 return request().url();
144 void DocumentLoader::replaceRequestURLForSameDocumentNavigation(const KURL& url)
146 m_originalRequestCopy.setURL(url);
147 m_request.setURL(url);
152 // Replacing an unreachable URL with alternate content looks like a server-side
162 // source is committed, except in the unreachable URL case. It
166 KURL oldURL = m_request.url();
169 // Only send webView:didReceiveServerRedirectForProvisionalLoadForFrame: if URL changed.
171 if (!handlingUnreachableURL && oldURL != req.url())
    [all...]
CachedScript.cpp 37 CachedScript::CachedScript(const String& url, const String& charset)
38 : CachedResource(url, Script)
CachedXBLDocument.cpp 39 CachedXBLDocument::CachedXBLDocument(const String &url)
40 : CachedResource(url, XBL), m_document(0)
HistoryController.h 79 void pushState(PassRefPtr<SerializedScriptValue>, const String& title, const String& url);
80 void replaceState(PassRefPtr<SerializedScriptValue>, const String& title, const String& url);
  /packages/apps/Browser/src/com/android/browser/
Tab.java 120 // Keep the original url around to avoid killing the old WebView if the url
283 // If there is only one base URL, use it. If there are
285 // URL corresponding to the index.
348 * the same base url
352 * The last url provided by voice search. Used for comparison to see if
460 public void onPageStarted(WebView view, String url, Bitmap favicon) {
464 && !url.equals(mVoiceSearchData.mLastVoiceSearchUrl)) {
482 // create a new one when the touch icon url is known.
499 .getContentResolver(), null, url, favicon)
    [all...]
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssService.java 33 import java.net.URL;
148 // Get the URL for the feed from the cursor.
149 int urlColumnIndex = mCur.getColumnIndex(RssContentProvider.URL);
150 String url = mCur.getString(urlColumnIndex); local
151 queryItem(url);
162 private boolean queryItem(String url) {
164 URL wrappedUrl = new URL(url);
166 mLogger.info("RSS Feed " + url + ":\n " + rssFeed)
    [all...]
  /external/chromium/net/data/proxy_resolver_v8_unittest/
ends_with_comment.js 1 function FindProxyForURL(url, host) {
  /external/junit/src/junit/awtui/
Logo.java 10 import java.net.URL;
41 URL url= BaseTestRunner.class.getResource(name); local
42 return toolkit.createImage((ImageProducer) url.getContent());
  /external/nist-sip/java/gov/nist/javax/sip/parser/
RequestLineParser.java 60 GenericURI url = urlParser.uriReference(true); local
62 retval.setUri(url);
URLParser.java 39 * Parser For SIP and Tel URLs. Other kinds of URL's are handled by the
40 * J2SE 1.4 URL class.
49 public URLParser(String url) {
50 this.lexer = new Lexer("sip_urlLexer", url);
330 * Parse and return a structure for a generic URL.
332 * @return URI is a URL structure for a SIP url.
587 * Parse and return a structure for a Tel URL.
588 * @return a parsed tel url structure.
601 * Parse and return a structure for a SIP URL
    [all...]
  /external/oauth/core/src/main/java/net/oauth/
OAuthAccessor.java 71 public OAuthMessage newRequestMessage(String method, String url,
83 OAuthMessage message = new OAuthMessage(method, url, parameters);
  /external/webkit/JavaScriptCore/parser/
SourceCode.h 85 inline SourceCode makeSource(const UString& source, const UString& url = UString(), int firstLine = 1)
87 return SourceCode(UStringSourceProvider::create(source, url), firstLine);
  /external/webkit/JavaScriptCore/profiler/
CallIdentifier.h 45 CallIdentifier(const UString& name, const UString& url, int lineNumber)
47 , m_url(url)
  /external/webkit/WebCore/bindings/js/
JSEventSourceConstructor.cpp 64 UString url = args.at(0).toString(exec);
74 RefPtr<EventSource> eventSource = EventSource::create(url, context, ec);
  /external/webkit/WebCore/html/
HTMLSourceElement.cpp 69 void HTMLSourceElement::setSrc(const String& url)
71 setAttribute(srcAttr, url);
  /external/webkit/WebCore/page/
Navigator.h 79 void registerProtocolHandler(const String& scheme, const String& url, const String& title, ExceptionCode& ec);
80 void registerContentHandler(const String& mimeType, const String& url, const String& title, ExceptionCode& ec);
  /external/webkit/WebCore/platform/graphics/wince/
MediaPlayerPrivateWince.h 52 void load(const String& url);
95 void setPoster(const String& url);
  /external/webkit/WebCore/platform/network/
HTTPParsers.cpp 58 bool parseHTTPRefresh(const String& refresh, bool fromHttpEquivMeta, double& delay, String& url)
69 if (pos == len) { // no URL
70 url = String();
83 if (refresh.find("url", urlStartPos, false) == urlStartPos) {
90 urlStartPos = pos; // e.g. "Refresh: 0; url.html"
105 // Sometimes there is no closing quote for the end of the URL even though there was an opening quote.
106 // If we looped over the entire alleged URL string back to the opening quote, just go ahead and use everything
112 url = refresh.substring(urlStartPos, urlEndPos - urlStartPos).stripWhiteSpace();
SocketStreamHandleBase.cpp 41 SocketStreamHandleBase::SocketStreamHandleBase(const KURL& url, SocketStreamHandleClient* client)
42 : m_url(url)
  /external/webkit/WebCore/platform/network/cf/
SocketStreamHandle.h 47 static PassRefPtr<SocketStreamHandle> create(const KURL& url, SocketStreamHandleClient* client) { return adoptRef(new SocketStreamHandle(url, client)); }
  /external/webkit/WebCore/platform/win/
ClipboardUtilitiesWin.h 40 HGLOBAL createGlobalData(const KURL& url, const String& title);
53 String urlToMarkup(const KURL& url, const String& title);
  /external/webkit/WebCore/platform/wince/
PasteboardWince.cpp 118 markupToCF_HTML(createMarkup(selectedRange, 0, AnnotateForInterchange), selectedRange->startContainer(ec)->document()->url(), data);
160 void Pasteboard::writeURL(const KURL& url, const String& titleStr, Frame* frame)
162 ASSERT(!url.isEmpty());
168 title = url.lastPathComponent();
170 title = url.host();
175 HGLOBAL cbData = createGlobalData(url, title);
184 markupToCF_HTML(urlToMarkup(url, title), "", data);
193 HGLOBAL cbData = createGlobalData(url.string());
  /external/webkit/WebCore/platform/wx/
ClipboardWx.cpp 120 void ClipboardWx::writeURL(const KURL& url, const String& string, Frame* frame)
122 Pasteboard::generalPasteboard()->writeURL(url, string, frame);
PasteboardWx.cpp 100 void Pasteboard::writeURL(const KURL& url, const String&, Frame*)
103 wxTheClipboard->SetData( new wxTextDataObject( url.string() ) );
  /external/webkit/WebCore/websockets/
WebSocketChannel.h 51 static PassRefPtr<WebSocketChannel> create(ScriptExecutionContext* context, WebSocketChannelClient* client, const KURL& url, const String& protocol) { return adoptRef(new WebSocketChannel(context, client, url, protocol)); }

Completed in 777 milliseconds

<<11121314151617181920>>