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

<<21222324252627282930>>

  /libcore/luni/src/main/java/java/net/
Authenticator.java 55 private URL url; field in class:Authenticator
167 * the realm that the URL is pointing to requires authorization. If there is
263 * url of the connection that requests authentication.
272 String rPrompt, String rScheme, URL rURL,
289 thisAuthenticator.url = rURL;
299 * Returns the URL of the authentication request.
301 * @return authentication request url.
303 protected URL getRequestingURL() {
304 return url;
    [all...]
  /libcore/support/src/test/java/tests/util/
SerializationTester.java 29 import java.net.URL;
160 URL url = SerializationTester.class.getResource( local
162 if (null == url) {
168 input = url.openStream();
  /packages/apps/Browser/src/com/android/browser/
FetchUrlMimeType.java 35 * This class is used to pull down the http headers of a given URL so that
37 * the URL to the download manager. The ContentValues class holds the
113 String url = mValues.getAsString(Downloads.Impl.COLUMN_URI); local
118 MimeTypeMap.getFileExtensionFromUrl(url));
123 String filename = URLUtil.guessFileName(url,
  /packages/apps/Settings/src/com/android/settings/
SettingsSafetyLegalActivity.java 39 private static final String PROPERTY_LSAFETYLEGAL_URL = "ro.url.safetylegal";
68 public void onPageFinished(WebView view, String url) {
87 private void showErrorAndFinish(String url) {
90 .getString(R.string.settings_safetylegal_activity_unreachable, url))
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java 35 import java.net.URL;
132 // create url connection to be tested
133 URL url = new URL("https://localhost:" + ss.getLocalPort()); local
134 HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();
163 // create url connection to be tested
164 URL url = new URL("https://localhost:" + ss.getLocalPort()) local
203 URL url = new URL("https:\/\/localhost:" + ss.getLocalPort()); local
241 URL url = new URL("https:\/\/localhost:" + ss.getLocalPort()); local
276 URL url = new URL("https:\/\/localhost:55555"); local
319 URL url = new URL("https:\/\/localhost:" + ss.getLocalPort()); local
355 URL url = new URL("https:\/\/localhost:" + ss.getLocalPort()); local
384 URL url = new URL("https:\/\/requested.host:55556\/requested.data"); local
424 URL url = new URL("https:\/\/requested.host:55555\/requested.data"); local
458 URL url = new URL("https:\/\/requested.host:55555\/requested.data"); local
507 URL url = new URL("https:\/\/requested.host:55554\/requested.data"); local
538 URL url = new URL("https:\/\/requested.host:55555\/requested.data"); local
574 URL url = new URL("https:\/\/localhost:" + ss.getLocalPort()); local
    [all...]
  /external/webkit/WebKit/qt/QGVLauncher/
main.cpp 338 void load(const QString& url)
340 QUrl deducedUrl = urlFromUserInput(url);
342 deducedUrl = QUrl("http://" + url + "/");
377 QUrl url = scene->webView()->url(); local
378 urlEdit->setText(url.toString());
384 QString s = url.toString(opts);
392 void newWindow(const QString &url = QString())
395 mw->load(url);
432 void loadURL(const QUrl& url)
499 QString url = QString("file:\/\/%1\/%2").arg(QDir::homePath()).arg(QLatin1String("index.html")); local
    [all...]
  /external/webkit/WebCore/platform/mac/
ClipboardMac.mm 73 if (qType == "URL")
80 // special case because UTI doesn't work with Cocoa's URL type
180 NSURL *url = [NSURL fileURLWithPath:string];
181 [urls addObject:[url absoluteString]];
198 // Fallback to NSURLPboardType (which is a single URL)
200 if (NSURL *url = [NSURL URLFromPasteboard:pasteboard])
201 return [NSArray arrayWithObject:[url absoluteString]];
219 // "URL" and "text/url-list" both map to NSURLPboardType in cocoaTypeFromHTMLClipboardType(), "URL" only wants the first UR
    [all...]
  /external/bluetooth/glib/gio/win32/
gwinhttpfile.h 50 URL_COMPONENTS url; member in struct:_GWinHttpFile
  /external/bzip2/
bzip.css 28 background:#ffffff url("/images/hr_blue.png") repeat-x; }
41 list-style: url("/images/li-blue.png");
  /external/chromium/googleurl/src/
url_parse_file.cc 46 // guessing that it maps internally to the empty URL.
49 // When on a file: URL source page, this link will work. When over HTTP,
50 // the file: URL will appear in the status bar but the link will not work
166 // relative URL resolver when it determines there is an absolute URL, which
217 // file: URL with exactly 2 slashes is considered to have a host component.
235 void ParseFileURL(const char* url, int url_len, Parsed* parsed) {
236 DoParseFileURL(url, url_len, parsed);
239 void ParseFileURL(const char16* url, int url_len, Parsed* parsed) {
240 DoParseFileURL(url, url_len, parsed)
    [all...]
  /external/chromium/net/base/
static_cookie_policy_unittest.cc 21 int CanGetCookies(const GURL& url, const GURL& first_party) {
22 return policy_.CanGetCookies(url, first_party, NULL);
24 int CanSetCookie(const GURL& url, const GURL& first_party) {
25 return policy_.CanSetCookie(url, first_party, std::string(), NULL);
  /external/chromium/net/data/proxy_resolver_v8_unittest/
passthrough.js 4 function FindProxyForURL(url, host) {
10 return "PROXY " + makePseudoHost(url + "." + host);
  /external/chromium/net/proxy/
single_threaded_proxy_resolver.h 34 virtual int GetProxyForURL(const GURL& url,
  /external/chromium/net/url_request/
url_request_unittest.h 65 virtual int CanGetCookies(const GURL& url, const GURL& first_party,
71 &TestCookiePolicy::DoGetCookiesPolicy, url, first_party));
81 virtual int CanSetCookie(const GURL& url, const GURL& first_party,
88 &TestCookiePolicy::DoSetCookiePolicy, url, first_party,
100 void DoGetCookiesPolicy(const GURL& url, const GURL& first_party) {
101 int policy = CanGetCookies(url, first_party, NULL);
109 void DoSetCookiePolicy(const GURL& url, const GURL& first_party,
111 int policy = CanSetCookie(url, first_party, cookie_line, NULL);
176 TestURLRequest(const GURL& url, Delegate* delegate)
177 : URLRequest(url, delegate)
546 const GURL& url = TestServerPage(page_name); local
713 const GURL& url = TestServerPage(page_name); local
    [all...]
  /external/webkit/JavaScriptCore/profiler/
ProfileGenerator.cpp 79 CString url = callIdentifier.m_url.UTF8String(); local
80 JAVASCRIPTCORE_PROFILE_WILL_EXECUTE(m_profileGroup, const_cast<char*>(name.c_str()), const_cast<char*>(url.c_str()), callIdentifier.m_lineNumber);
94 CString url = callIdentifier.m_url.UTF8String(); local
95 JAVASCRIPTCORE_PROFILE_DID_EXECUTE(m_profileGroup, const_cast<char*>(name.c_str()), const_cast<char*>(url.c_str()), callIdentifier.m_lineNumber);
  /external/webkit/WebCore/accessibility/
AccessibilityImageMapLink.h 61 virtual KURL url() const;
  /external/webkit/WebCore/bindings/js/
CachedScriptSourceProvider.h 53 : ScriptSourceProvider(cachedScript->url())
  /external/webkit/WebCore/bindings/v8/
V8WorkerContextEventListener.h 53 virtual bool reportError(ScriptExecutionContext*, const String& message, const String& url, int lineNumber);
WorkerScriptController.cpp 77 ScriptValue result = m_proxy->evaluate(sourceCode.source(), sourceCode.url().string(), sourceCode.startLine() - 1, &state);
  /external/webkit/WebCore/html/
HTMLBaseElement.cpp 66 // Since the document doesn't have a base element, clear the base URL and target.
78 document()->setBaseElementURL(KURL(document()->url(), m_href));
83 // FIXME: Changing a document's base URL should probably automatically update the resolved relative URLs of all images, stylesheets, etc.
HTMLViewSourceDocument.h 59 PassRefPtr<Element> addLink(const String& url, bool isAnchor);
  /external/webkit/WebCore/inspector/front-end/
BreakpointsSidebarPane.js 108 if (currentBreak.url > breakpoint.url) {
111 } else if (currentBreak.url == breakpoint.url && currentBreak.line > breakpoint.line) {
audits.css 33 content: url(Images/resourcesTimeGraphIcon.png);
37 content: url(Images/resourceDocumentIcon.png);
50 -webkit-mask-image: url(Images/clearConsoleButtonGlyph.png);
80 content: url(Images/errorRedDot.png);
84 content: url(Images/successGreenDot.png);
138 content: url(Images/treeRightTriangleBlack.png);
142 content: url(Images/treeDownTriangleBlack.png);
270 background: url(Images/radioDot.png) center no-repeat,
  /external/webkit/WebCore/loader/
CachedFont.h 49 CachedFont(const String& url);
CrossOriginPreflightResultCache.cpp 146 void CrossOriginPreflightResultCache::appendEntry(const String& origin, const KURL& url, CrossOriginPreflightResultCacheItem* preflightResult)
149 m_preflightHashMap.set(std::make_pair(origin, url), preflightResult);
152 bool CrossOriginPreflightResultCache::canSkipPreflight(const String& origin, const KURL& url, bool includeCredentials, const String& method, const HTTPHeaderMap& requestHeaders)
155 CrossOriginPreflightResultHashMap::iterator cacheIt = m_preflightHashMap.find(std::make_pair(origin, url));

Completed in 2549 milliseconds

<<21222324252627282930>>