HomeSort by relevance Sort by last modified time
    Searched refs:url (Results 1076 - 1100 of 2774) sorted by null

<<41424344454647484950>>

  /external/oauth/core/src/main/java/net/oauth/client/
OAuthClient.java 23 import java.net.URL;
57 * HttpResponseMessage.LOCATION = the redirect URL. Such a redirect can't be
90 * the URL (determined by the service provider) for getting a
107 * the URL (determined by the service provider) for getting a
126 * the URL (determined by the service provider) for getting a
172 * URL (determined by the service provider) for getting an access
210 * the given url isn't valid syntactically
215 String url, Collection<? extends Map.Entry> parameters)
220 OAuthMessage request = accessor.newRequestMessage(httpMethod, url,
245 * the given url isn't valid syntacticall
271 String url = request.URL; local
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
NetworkManager.js 58 NetworkAgent.getResourceContent(resource.frameId, resource.url, base64Encode, callbackWrapper);
61 inflightResourceForURL: function(url)
63 return this._dispatcher._inflightResourcesByURL[url];
131 resource = this._appendRedirect(identifier, time, request.url);
133 resource = this._createResource(identifier, frameId, loaderId, request.url, documentURL, stackTrace);
217 var resource = this._createResource("cached:" + ++this._lastIdentifierForCachedResource, frameId, loaderId, cachedResource.url, documentURL);
307 this._inflightResourcesByURL[resource.url] = resource;
322 delete this._inflightResourcesByURL[resource.url];
330 _createResource: function(identifier, frameId, loaderId, url, documentURL, stackTrace)
332 var resource = new WebInspector.Resource(identifier, url);
    [all...]
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/
browser_harness.rb 77 def launch_browser(args, url)
87 pids = launch_mac_browser(args, url)
89 pids = launch_posix_browser(args, url)
100 def launch_posix_browser(args, url)
104 args = args + [url]
127 def launch_mac_browser(args, url)
138 command = "open -a \"#{browser}\" \"#{url}\""
182 msg("Unable to parse url in #{value}")
200 def save_testcase(url, case_type=nil)
201 msg("Saving testcase: #{url}")
    [all...]
  /frameworks/base/media/libstagefright/httplive/
M3UParser.cpp 90 static bool MakeURL(const char *baseURL, const char *url, AString *out) {
96 // Base URL must be absolute
100 if (!strncasecmp("http://", url, 7) || !strncasecmp("https://", url, 8)) {
101 // "url" is already an absolute URL, ignore base URL.
102 out->setTo(url);
104 LOGV("base:'%s', url:'%s' => '%s'", baseURL, url, out->c_str())
    [all...]
  /libcore/luni/src/main/java/java/net/
URLConnection.java 31 * A connection to a URL for reading or writing. For HTTP connections, see
36 * URL url = new URL("ftp://mirror.csclub.uwaterloo.ca/index.html");
37 * URLConnection urlConnection = url.openConnection();
66 * usernames and passwords in the URL: {@code
76 * Use {@link URL#setURLStreamHandlerFactory} to register handlers for other
82 * The URL which represents the remote target of this {@code URLConnection}.
84 protected URL url; field in class:URLConnection
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_model.cc 38 BookmarkNode::BookmarkNode(const GURL& url)
39 : url_(url) {
43 BookmarkNode::BookmarkNode(int64 id, const GURL& url)
44 : url_(url) {
55 type_ = !url_.is_empty() ? URL : BOOKMARK_BAR;
65 DCHECK(entry.type != history::StarredEntry::URL || entry.url == url_);
69 case history::StarredEntry::URL:
70 type_ = BookmarkNode::URL;
280 void BookmarkModel::SetURL(const BookmarkNode* node, const GURL& url) {
351 const GURL* url = &((*i)->GetURL()); local
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_service_browsertest.cc 46 // Called on the IO thread to check if the given URL is safe or not. If we
47 // can synchronously determine that the URL is safe, CheckUrl returns true,
49 virtual bool ContainsBrowseUrl(const GURL& url,
54 std::vector<GURL> urls(1, url);
73 virtual bool ContainsCsdWhitelistedUrl(const GURL& url) {
96 // Fill up the database with test URL.
97 void AddUrl(const GURL& url,
101 badurls_[url.spec()].list_name = list_name;
102 badurls_[url.spec()].prefix_hits = prefix_hits;
103 badurls_[url.spec()].full_hits = full_hits
125 const GURL& url = urls[i]; local
380 GURL url = test_server()->GetURL(kEmptyPage); local
389 ui_test_utils::NavigateToURL(browser(), url); local
398 GURL url = test_server()->GetURL(kPrefetchMalwarePage); local
423 ui_test_utils::NavigateToURL(browser(), url); local
    [all...]
safe_browsing_service.h 52 BINARY_MALWARE_URL, // Binary url leads to a malware.
62 GURL url; member in struct:SafeBrowsingService::UnsafeResource
72 // Bundle of SafeBrowsing state for one URL or hash prefix check.
85 bool is_download; // If this check for download url or hash.
112 // Called when the result of checking a browse URL is known.
113 virtual void OnBrowseUrlCheckResult(const GURL& url,
116 // Called when the result of checking a download URL is known.
141 // Returns true if the url's scheme can be checked.
142 bool CanCheckUrl(const GURL& url) const;
152 // Called on the IO thread to check if the given url is safe or not. If w
279 GURL url; member in struct:SafeBrowsingService::QueuedCheck
    [all...]
  /external/chromium/net/proxy/
proxy_service.cc 107 virtual int GetProxyForURL(const GURL& url,
131 // |pac_string| for every single URL.
138 virtual int GetProxyForURL(const GURL& url,
261 const GURL& url,
270 url_(url),
520 GURL url = SimplifyUrlForRequest(raw_url); local
524 int rv = TryToCompleteSynchronously(url, result);
529 new PacRequest(this, url, result, callback, net_log));
552 int ProxyService::TryToCompleteSynchronously(const GURL& url,
565 config_.proxy_rules().Apply(url, result)
    [all...]
  /external/webkit/Source/WebCore/loader/
HistoryController.cpp 58 static inline void addVisitedLink(Page* page, const KURL& url)
61 platformStrategies()->visitedLinkStrategy()->addVisitedLink(page, visitedLinkHash(url.string().characters(), url.string().length()));
63 page->group().addVisitedLink(url);
279 // When traversing history, we may end up redirecting to a different URL
298 // When reloading the page, we may end up redirecting to a different URL
311 LOG(History, "WebCoreHistory: Updating History for Standard Load in frame %s", m_frame->loader()->documentLoader()->url().string().ascii().data());
341 if (!frameLoader->documentLoader()->didCreateGlobalHistoryEntry() && frameLoader->documentLoader()->unreachableURL().isEmpty() && !m_frame->document()->url().isEmpty())
383 if (!m_frame->loader()->documentLoader()->didCreateGlobalHistoryEntry() && m_frame->loader()->documentLoader()->unreachableURL().isEmpty() && !m_frame->document()->url().isEmpty())
396 // webcore has closed the URL and saved away the form state
561 KURL url; local
    [all...]
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
FrameLoaderClientHaiku.cpp 186 message.AddString("url", m_frame->loader()->documentLoader()->request().url().string());
235 message.AddString("url", m_frame->loader()->provisionalDocumentLoader()->request().url().string());
255 message.AddString("url", m_frame->loader()->documentLoader()->request().url().string());
264 message.AddString("url", m_frame->document()->url().string());
326 message.AddString("url", m_frame->document()->url().string())
    [all...]
  /external/chromium/chrome/browser/
session_history_uitest.cc 36 GURL url("javascript:clickLink('" + node_id + "')");
37 ASSERT_TRUE(tab_->NavigateToURL(url));
43 GURL url("javascript:fillForm('" + node_id + "', '" + value + "')");
47 ASSERT_TRUE(tab_->NavigateToURLAsync(url));
53 GURL url("javascript:submitForm('" + node_id + "')");
54 ASSERT_TRUE(tab_->NavigateToURL(url));
59 GURL url("javascript:history.go('" + distance + "')");
60 ASSERT_TRUE(tab_->NavigateToURL(url));
70 GURL url; local
71 EXPECT_TRUE(tab_->GetCurrentURL(&url));
    [all...]
content_setting_bubble_model_unittest.cc 109 GURL url = contents()->GetURL(); local
110 map->AddExceptionForURL(url,
114 map->AddExceptionForURL(url,
137 map->GetContentSetting(url,
141 map->GetContentSetting(url,
148 map->GetContentSetting(url,
152 map->GetContentSetting(url,
external_tab_container_win.cc 64 const GURL& url,
67 : PageInfoBubbleView(parent_window, profile, url, ssl, show_history),
76 GURL url = google_util::AppendGoogleLocaleParam( local
78 container_->OpenURLFromTab(container_->tab_contents(), url, GURL(),
184 // Start loading initial URL
322 const GURL& url,
330 url_request.url = url;
347 url, referrer,
355 params.url = url
    [all...]
external_tab_container_win.h 114 const GURL& url,
131 virtual void UpdateTargetURL(TabContents* source, const GURL& url);
150 const GURL& url,
163 // delegate who knows how to display the dialog (which file URL and JSON
228 void Navigate(const GURL& url, const GURL& referrer);
242 // browser sends over the ack, we receive a top level URL navigation for the
247 GURL url; member in struct:ExternalTabContainer::PendingTopLevelNavigation
260 // Sends over pending Open URL requests to the external host.
290 // If all the url requests for this tab are to be loaded via automation.
293 // whether top level URL requests are to be handled by the automation client
    [all...]
  /external/chromium/chrome/browser/sessions/
session_restore_uitest.cc 61 GURL url; local
62 AssertWindowHasOneTab(0, &url);
65 void AssertWindowHasOneTab(int window_index, GURL* url) {
83 ASSERT_TRUE(tab_proxy->GetCurrentURL(url));
184 GURL url; local
185 ASSERT_TRUE(tab_proxy->GetCurrentURL(&url));
186 ASSERT_EQ(cross_site_url, url);
189 ASSERT_TRUE(tab_proxy->GetCurrentURL(&url));
190 ASSERT_EQ(url1_, url);
193 ASSERT_TRUE(tab_proxy->GetCurrentURL(&url));
    [all...]
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
NotificationPresenterClientQt.cpp 124 QUrl url; local
129 url = static_cast<Document*>(notification->scriptExecutionContext())->page()->mainFrame()->document()->url();
132 return url;
198 message = notification->url().string();
244 printf("DESKTOP NOTIFICATION CLOSED: %s\n", QString(notification->url().string()).toUtf8().constData());
284 notificationTitle = notification->url().string();
397 if (existingNotification->replaceId() == notification->replaceId() && existingNotification->url().protocol() == notification->url().protocol() && existingNotification->url().host() == notification->url().host())
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
DownloadCache.java 37 import java.net.URL;
116 public Entry lookup(URL url) {
118 String stringUrl = url.toString();
141 public Entry download(JobContext jc, URL url) {
144 String stringUrl = url.toString();
193 String url = cursor.getString(FREESPACE_INDEX_CONTENT_URL); local
198 containsKey = mEntryMap.containsKey(url);
215 private synchronized long insertEntry(String url, File file)
349 URL url = new URL(mUrl); local
    [all...]
  /external/webkit/Source/WebCore/platform/win/
ClipboardWin.cpp 68 // We provide the IE clipboard types (URL and Text), and the clipboard types specified in the WHATWG Web Applications 1.0 draft
80 if (qType == "url" || qType == "text/uri-list")
118 static String filesystemPathFromUrlOrTitle(const String& url, const String& title, const UChar* extension, bool isLink)
139 KURL kurl(ParsedURLString, url);
141 // The filename for any content based drag or file url should be the last element of
143 // we just use the entire url.
150 len = min<DWORD>(fsPathMaxLengthExcludingExtension, url.length());
151 CopyMemory(fsPathBuffer, url.characters(), len * sizeof(UChar));
186 static HGLOBAL createGlobalHDropContent(const KURL& url, String& fileName, SharedBuffer* data)
193 if (url.isLocalFile())
721 String url = kurl.string(); local
    [all...]
  /external/webkit/Source/WebCore/platform/network/qt/
QNetworkReplyHandler.cpp 436 QUrl url = m_replyWrapper->reply()->url(); local
440 ResourceError error("HTTP", httpStatusCode, url.toString(), m_replyWrapper->reply()->attribute(QNetworkRequest::HttpReasonPhraseAttribute).toString());
443 ResourceError error("QtNetwork", m_replyWrapper->reply()->error(), url.toString(), m_replyWrapper->reply()->errorString());
466 mimeType = MIMETypeRegistry::getMIMETypeForPath(m_replyWrapper->reply()->url().path());
469 KURL url(m_replyWrapper->reply()->url());
470 ResourceResponse response(url, mimeType.lower(),
474 if (url.isLocalFile()) {
482 if (url.protocolInHTTPFamily())
589 const QUrl url = m_request.url(); local
    [all...]
  /packages/apps/Browser/src/com/android/browser/
SuggestionsAdapter.java 45 * adapter to wrap multiple cursors for url/search completions
60 OmniboxSuggestions.URL,
65 "(url LIKE ? OR url LIKE ? OR url LIKE ? OR url LIKE ? OR title LIKE ?)";
183 if (TextUtils.isEmpty(item.url)) {
188 tv2.setText(item.url);
277 return sitem.url;
404 public String url; field in class:SuggestionsAdapter.SuggestItem
448 String url = mCursor.getString(2); local
530 String url = mCursor.getString( local
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
TelephonyProvider.java 424 public Cursor query(Uri url, String[] projectionIn, String selection,
429 int match = s_urlMatcher.match(url);
445 qb.appendWhere("_id = " + url.getPathSegments().get(1));
462 ret.setNotificationUri(getContext().getContentResolver(), url); local
467 public String getType(Uri url)
469 switch (s_urlMatcher.match(url)) {
481 throw new IllegalArgumentException("Unknown URL " + url);
486 public Uri insert(Uri url, ContentValues initialValues)
493 int match = s_urlMatcher.match(url);
    [all...]
  /external/chromium/build/util/
lastchange.py 17 def __init__(self, url, root, revision):
18 self.url = url
53 url = attrs['URL']
59 return VersionInfo(url, root, revision)
125 Fetch URL of SVN repository bound to git.
130 SVN URL.
133 proc = RunGitCommand(directory, ['svn', 'info', '--url'])
153 git_command = ['config', '--get-regexp', '^svn-remote.svn.url$'
    [all...]
  /external/chromium/chrome/browser/net/
resolve_proxy_msg_helper_unittest.cc 14 // This ProxyConfigService always returns "http://pac" as the PAC url to use.
105 EXPECT_EQ(url1, resolver_->pending_requests()[0]->url());
117 EXPECT_EQ(url2, resolver_->pending_requests()[0]->url());
129 EXPECT_EQ(url3, resolver_->pending_requests()[0]->url());
163 EXPECT_EQ(url1, resolver_->pending_requests()[0]->url());
174 EXPECT_EQ(url2, resolver_->pending_requests()[0]->url());
185 EXPECT_EQ(url3, resolver_->pending_requests()[0]->url());
221 EXPECT_EQ(url1, resolver_->pending_requests()[0]->url());
  /external/chromium/chrome/browser/ui/
browser_init.cc 440 tab.url = urls[i];
493 if (extension_service->IsInstalledApp(autolaunch_tabs.at(i).url)) {
510 void BrowserInit::AddFirstRunTab(const GURL& url) {
511 first_run_tabs_.push_back(url);
767 // to look at the app URL. OpenApplicationWindow() will open app url
795 // Open an URL to the gallery page of the extension id?
821 GURL url(url_string);
824 if (!url.is_empty() && url.is_valid())
1273 GURL url; local
    [all...]

Completed in 1318 milliseconds

<<41424344454647484950>>