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

1 2 3 4 5 67 8 91011>>

  /external/webkit/Source/WebKit2/UIProcess/
WebIconDatabaseClient.cpp 34 void WebIconDatabaseClient::didChangeIconForPageURL(WebIconDatabase* iconDatabase, WebURL* url)
39 m_client.didChangeIconForPageURL(toAPI(iconDatabase), toAPI(url), m_client.clientInfo);
  /frameworks/base/core/java/android/webkit/
UrlInterceptHandler.java 32 * Given an URL, returns the CacheResult which contains the
36 * @param url URL string.
44 public CacheResult service(String url, Map<String, String> headers);
47 * Given an URL, returns the PluginData which contains the
51 * @param url URL string.
59 public PluginData getPluginData(String url, Map<String, String> headers);
JniUtil.java 109 private static synchronized long contentUrlSize(String url) {
111 if (url.startsWith(ANDROID_CONTENT)) {
114 // load Gmail attachments, because the URL being loaded doesn't
115 // exactly match the URL we have permission to read.
116 int mimeIndex = url.lastIndexOf('?');
118 url = url.substring(0, mimeIndex);
120 Uri uri = Uri.parse(url);
134 Log.e(LOGTAG, "Exception: " + url);
148 private static synchronized InputStream contentUrlStream(String url) {
    [all...]
  /external/chromium/chrome/common/net/
test_url_fetcher_factory.cc 14 const GURL& url,
17 : URLFetcher(url, request_type, d),
19 original_url_(url),
39 const GURL& url,
42 TestURLFetcher* fetcher = new TestURLFetcher(id, url, request_type, d);
61 // Normal URL fetcher constructor but also takes in a pre-baked response.
62 FakeURLFetcher(const GURL& url, RequestType request_type, Delegate* d,
64 : URLFetcher(url, request_type, d),
65 url_(url),
111 const GURL& url,
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebNavigationData.mm 31 NSString *url;
45 [url release];
58 - (id)initWithURLString:(NSString *)url title:(NSString *)title originalRequest:(NSURLRequest *)request response:(NSURLResponse *)response hasSubstituteData:(BOOL)hasSubstituteData clientRedirectSource:(NSString *)redirectSource
62 _private->url = [url retain];
72 - (NSString *)url
74 return _private->url;
  /external/chromium/chrome/browser/net/
resolve_proxy_msg_helper.h 42 void OnResolveProxy(const GURL& url, IPC::Message* reply_msg);
58 PendingRequest(const GURL& url, IPC::Message* reply_msg) :
59 url(url), reply_msg(reply_msg), pac_req(NULL) { }
61 // The URL of the request.
62 GURL url; member in struct:ResolveProxyMsgHelper::PendingRequest
cookie_policy_browsertest.cc 22 GetCookiesTask(const GURL& url,
26 : url_(url),
51 std::string GetCookies(const GURL& url) {
60 new GetCookiesTask(url, context_getter, &event, &cookies)));
76 GURL url(test_server()->GetURL("set-cookie?cookie1"));
78 std::string cookie = GetCookies(url);
81 ui_test_utils::NavigateToURL(browser(), url); local
83 cookie = GetCookies(url);
96 GURL url(test_server()->GetURL("server-redirect?"));
100 // third-party cookie blocking if the first party for cookies URL is no
    [all...]
  /external/chromium/chrome/browser/prerender/
prerender_observer.cc 23 void PrerenderObserver::ProvisionalChangeToMainFrameUrl(const GURL& url) {
27 MaybeUsePreloadedPage(url);
40 const GURL& url) {
62 bool PrerenderObserver::MaybeUsePreloadedPage(const GURL& url) {
64 if (pm && pm->MaybeUsePreloadedPage(tab_contents(), url))
prerender_resource_handler.cc 17 bool ShouldPrerenderURL(const GURL& url) {
18 if (!url.is_valid())
20 if (!url.SchemeIs("http")) {
63 if (!ShouldPrerenderURL(request.url()))
117 const GURL& url,
121 request_id, url, response, defer);
123 if (!ShouldPrerenderURL(url))
125 alias_urls_.push_back(url);
126 url_ = url;
151 const GURL& url,
    [all...]
  /external/chromium/chrome/browser/ui/search_engines/
keyword_editor_controller.h 30 // Returns the index of the added URL.
33 const std::string& url);
40 const std::string& url);
42 // Return true if the given |url| can be edited.
43 bool CanEdit(const TemplateURL* url) const;
45 // Return true if the given |url| can be made the default.
46 bool CanMakeDefault(const TemplateURL* url) const;
48 // Return true if the given |url| can be removed.
49 bool CanRemove(const TemplateURL* url) const;
  /external/chromium/net/proxy/
proxy_resolver_script_data.cc 28 const GURL& url) {
29 return new ProxyResolverScriptData(TYPE_SCRIPT_URL, url, string16());
43 const GURL& ProxyResolverScriptData::url() const { function in class:net::ProxyResolverScriptData
49 const GURL& url,
52 url_(url),
  /external/webkit/Source/WebCore/bindings/js/
ScriptSourceCode.h 45 ScriptSourceCode(const String& source, const KURL& url = KURL(), const TextPosition1& startPosition = TextPosition1::minimumPosition())
46 : m_provider(StringSourceProvider::create(source, url.isNull() ? String() : url.string(), startPosition))
48 , m_url(url)
66 const KURL& url() const { return m_url; } function in class:WebCore::ScriptSourceCode
  /external/webkit/Source/WebCore/bindings/v8/
ScriptSourceCode.h 44 ScriptSourceCode(const String& source, const KURL& url = KURL(), const TextPosition1& startPosition = TextPosition1::minimumPosition())
47 , m_url(url)
57 , m_url(ParsedURLString, cs->url())
66 const KURL& url() const function in class:WebCore::ScriptSourceCode
69 return m_cachedScript->response().url();
  /external/webkit/Source/WebCore/inspector/
InspectorWorkerResource.h 45 static PassRefPtr<InspectorWorkerResource> create(intptr_t id, const String& url, bool isSharedWorker)
47 return adoptRef(new InspectorWorkerResource(id, url, isSharedWorker));
51 const String& url() const { return m_url; } function in class:WebCore::InspectorWorkerResource
54 InspectorWorkerResource(intptr_t id, const String& url, bool isSharedWorker)
56 , m_url(url)
  /external/webkit/Source/WebCore/workers/
WorkerLocation.h 42 static PassRefPtr<WorkerLocation> create(const KURL& url)
44 return adoptRef(new WorkerLocation(url));
47 const KURL& url() const { return m_url; } function in class:WebCore::WorkerLocation
63 WorkerLocation(const KURL& url) : m_url(url) { }
  /external/webkit/Source/WebKit/chromium/src/
WebStorageAreaImpl.h 48 virtual void setItem(const WebString& key, const WebString& value, const WebURL& url, Result& result, WebString& oldValue, WebFrame*);
49 virtual void removeItem(const WebString& key, const WebURL& url, WebString& oldValue);
50 virtual void clear(const WebURL& url, bool& somethingCleared);
58 ScopedStorageEventURL(const WebURL& url)
63 storageEventURL = &url;
  /packages/apps/Browser/tests/src/com/android/browser/tests/
BookmarksTests.java 46 String url = "http://google.com/search?q=test"; local
47 c = Bookmarks.queryCombinedForUrl(cr, null, url);
50 assertEquals(url, c.getString(0));
54 url = "http://google.com/search";
55 c = Bookmarks.queryCombinedForUrl(cr, null, url);
  /external/chromium/googleurl/src/
gurl_unittest.cc 34 // Returns the canonicalized string for the given URL string for the
51 // In the reverse, known schemes should always trigger standard URL handling.
70 GURL url(WStringToUTF16(L"http://user:pass@google.com:99/foo;bar?q=a#ref"));
71 EXPECT_TRUE(url.is_valid());
72 EXPECT_TRUE(url.SchemeIs("http"));
73 EXPECT_FALSE(url.SchemeIsFile());
75 // This is the narrow version of the URL, which should match the wide input.
76 EXPECT_EQ("http://user:pass@google.com:99/foo;bar?q=a#ref", url.spec());
78 EXPECT_EQ("http", url.scheme());
79 EXPECT_EQ("user", url.username())
90 GURL url; local
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
html_page_screen.cc 42 const std::string& url)
43 : ViewScreen<HTMLPageView>(delegate), url_(url) {
56 GURL url(url_);
59 SiteInstance::CreateSiteInstanceForURL(profile, url));
61 view()->LoadURL(url);
71 std::string url = source->GetURL().spec(); local
72 if (url == kHTMLPageDoneUrl) {
76 VLOG(1) << "HTMLPageScreen::LoadingStateChanged: " << url;
107 void HTMLPageScreen::OnPageLoadFailed(const std::string& url) {
108 VLOG(1) << "HTMLPageScreen::OnPageLoadFailed: " << url;
    [all...]
  /external/chromium/chrome/browser/content_settings/
content_settings_pattern.cc 30 // - file:///tmp/test.html (a complete URL without a host)
39 const GURL& url) {
41 return ContentSettingsPattern(!url.has_host() || url.HostIsIPAddress() ?
42 net::GetHostOrSpecFromURL(url) :
43 std::string(kDomainWildcard) + url.host());
48 const GURL& url) {
49 return ContentSettingsPattern(net::GetHostOrSpecFromURL(url), url.scheme());
68 bool ContentSettingsPattern::Matches(const GURL& url) const
    [all...]
  /frameworks/base/core/java/android/net/http/
SslError.java 78 * The URL associated with the error set.
84 * The URL will be set to the empty string.
96 * The URL will be set to the empty string.
108 * URL.
111 * @param url The associated URL
113 public SslError(int error, SslCertificate certificate, String url) {
115 assert url != null;
118 mUrl = url;
123 * URL
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/
SuggestionProvider.java 63 public Cursor query(Uri url, String[] projectionIn, String selection,
65 int match = sURLMatcher.match(url);
68 String query = url.getLastPathSegment();
76 throw new IllegalArgumentException("Unknown URL: " + url);
86 public String getType(Uri url) {
87 int match = sURLMatcher.match(url);
92 throw new IllegalArgumentException("Unknown URL: " + url);
97 public int update(Uri url, ContentValues values, String where, String[] whereArgs)
    [all...]
  /external/chromium/chrome/browser/search_engines/
template_url_parser_unittest.cc 91 EXPECT_TRUE(template_url_.url() != NULL);
92 EXPECT_TRUE(template_url_.url()->SupportsReplacement());
93 EXPECT_EQ(template_url_.url()->url(),
105 EXPECT_TRUE(template_url_.url() != NULL);
106 EXPECT_TRUE(template_url_.url()->SupportsReplacement());
107 EXPECT_EQ(template_url_.url()->url(),
119 EXPECT_TRUE(template_url_.url() != NULL);
120 EXPECT_TRUE(template_url_.url()->SupportsReplacement())
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLAnchorElement.cpp 111 static void appendServerMapMousePosition(String& url, Event* event)
134 url += "?";
135 url += String::number(x);
136 url += ",";
137 url += String::number(y);
150 String url = stripLeadingAndTrailingHTMLSpaces(getAttribute(hrefAttr)); local
151 appendServerMapMousePosition(url, event);
152 handleLinkClick(event, document(), url, getAttribute(targetAttr), hasRel(RelationNoReferrer));
153 sendPings(document()->completeURL(url));
312 KURL url = href() local
322 const KURL& url = href(); local
394 KURL url = href(); local
416 KURL url = href(); local
439 KURL url = href(); local
465 KURL url = href(); local
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/file/
FileURLConnectionTest.java 20 import java.net.URL;
25 import libcore.net.url.FileURLConnection;
34 URL url = ClassLoader.getSystemClassLoader().getResource(resourceName); local
35 assertNotNull("Cannot find test resource " + resourceName, url);
36 return new FileURLConnection(url).getContentType();
53 URL url = ClassLoader.getSystemClassLoader().getResource(resourceName); local
54 URL anchorUrl = new URL(url,"#anchor")
70 URL url = ClassLoader.getSystemClassLoader().getResource(resourceName); local
91 URL url = ClassLoader.getSystemClassLoader().getResource(resourceName); local
    [all...]

Completed in 1002 milliseconds

1 2 3 4 5 67 8 91011>>