/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/ |
Find.cpp | 70 WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("find", "html")); 71 WKPageLoadURL(webView.page(), url.get());
|
FrameMIMETypeHTML.cpp | 72 WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("simple", "html")); 73 WKPageLoadURL(webView.page(), url.get());
|
FrameMIMETypePNG.cpp | 72 WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("icon", "png")); 73 WKPageLoadURL(webView.page(), url.get());
|
InjectedBundleBasic.cpp | 73 WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("simple", "html")); 74 WKPageLoadURL(webView.page(), url.get());
|
PageLoadDidChangeLocationWithinPageForFrame.cpp | 71 WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("file-with-anchor", "html")); 72 WKPageLoadURL(webView.page(), url.get());
|
SpacebarScrolling.cpp | 67 WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("spacebar-scrolling", "html")); 68 WKPageLoadURL(webView.page(), url.get());
|
/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/win/ |
HideFindIndicator.cpp | 66 WKRetainPtr<WKURLRef> url = adoptWK(Util::createURLForResource("find", "html")); local 67 WKPageLoadURL(webView.page(), url.get());
|
/external/webkit/Tools/iExploder/iexploder-1.3.2/htdocs/ |
iexploder.cgi | 35 ie.url=ENV['SCRIPT_NAME'] || '?'
|
/frameworks/base/core/java/android/text/style/ |
URLSpan.java | 32 public URLSpan(String url) { 33 mURL = url;
|
/frameworks/base/core/java/android/webkit/ |
FileLoader.java | 52 * Construct a FileLoader with the file URL specified as the content 55 * @param url Full file url pointing to content to be loaded 57 * @param asset true if url points to an asset. 61 FileLoader(String url, LoadListener loadListener, int type, 67 // clean the Url 68 int index = url.indexOf('?'); 71 url.substring(URLUtil.ASSET_BASE.length(), index)) : 72 URLUtil.stripAnchor(url.substring( 76 url.substring(URLUtil.RESOURCE_BASE.length(), index)) [all...] |
/frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/ |
PowerTestActivity.java | 37 public static final String PARAM_URL = "URL"; 42 public static final String MSG_NAV_URL = "url"; 115 private void navigate(String url, int timeout) { 116 if(url == null) { 117 Log.v(LOGTAG, "URL is null, cancelling..."); 125 Log.v(LOGTAG, "Navigating to URL: " + url); 126 webView.loadUrl(url); 207 + ", url=" + failingUrl); 211 public void onPageStarted(WebView view, String url, Bitmap favicon) [all...] |
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/ |
TestShellActivity.java | 60 import java.net.URL; 248 String url = null; local 250 url = mTestListReader.readLine(); 256 if (url == null) { 277 intent.putExtra(TestShellActivity.TEST_URL, FsUtils.getTestUrl(url)); 380 String url = mWebView.getUrl(); local 381 Log.v(LOGTAG, "dumpAsText called: "+url); 389 String url = mWebView.getUrl(); local 390 Log.v(LOGTAG, "dumpChildFramesAsText called: "+url); 396 String url = mWebView.getUrl() local 401 String url = mWebView.getUrl(); local [all...] |
/frameworks/media/libvideoeditor/osal/inc/ |
M4OSA_FileCommon_priv.h | 49 /** The name of the URL */ 79 M4OSA_Char* URL, 89 M4OSA_Char** url); 91 M4OSA_ERR M4OSA_fileCommonGetFilename(M4OSA_Char* url,
|
/libcore/luni/src/main/java/javax/net/ssl/ |
HttpsURLConnection.java | 21 import java.net.URL; 53 * URL url = new URL("https://www.example.com/"); 54 * HttpsURLConnection urlConnection = (HttpsURLConnection) url.openConnection(); 86 * URL url = new URL("https://www.example.com/"); 87 * HttpsURLConnection urlConnection = (HttpsURLConnection) url.openConnection(); 170 * Creates a new {@code HttpsURLConnection} with the specified {@code URL} [all...] |
/packages/apps/Browser/src/com/android/browser/ |
UiController.java | 51 Tab openTab(String url, boolean incognito, boolean setActive, 98 void loadUrl(Tab tab, String url);
|
/packages/apps/Browser/tests/src/com/android/browser/tests/utils/ |
BP2TestCaseHelper.java | 146 public Uri insertBookmark(String url, String title) { 149 values.put(BrowserContract.Bookmarks.URL, url); 162 public boolean updateBookmark(Uri uri, String url, String title) { 165 values.put(BrowserContract.Bookmarks.URL, url); 183 public Uri insertHistory(String url, String title) { 186 values.put(BrowserContract.History.URL, url); 194 public boolean updateHistory(Uri uri, String url, String title) [all...] |
/external/chromium/chrome/browser/accessibility/ |
renderer_accessibility_browsertest.cc | 95 // Create a data url and load it. 102 GURL url(url_str); 103 browser()->OpenURL(url, GURL(), CURRENT_TAB, PageTransition::TYPED); 157 // Create a data url and load it. 164 GURL url(url_str); 165 browser()->OpenURL(url, GURL(), CURRENT_TAB, PageTransition::TYPED); 188 // Create a data url and load it. 195 GURL url(url_str); 196 browser()->OpenURL(url, GURL(), CURRENT_TAB, PageTransition::TYPED); 224 GURL url(url_str) [all...] |
/external/chromium/chrome/browser/prerender/ |
prerender_contents.cc | 53 PrerenderManager* prerender_manager, Profile* profile, const GURL& url, 55 return new PrerenderContents(prerender_manager, profile, url, alias_urls, 62 const GURL& url, 67 prerender_url_(url), 76 LOG(DFATAL) << "PrerenderContents given invalid URL " << prerender_url_; 81 LOG(DFATAL) << "PrerenderContents given invalid URL " << prerender_url_; 157 params.url = prerender_url_; 248 if (!AddAliasURL(params.url)) { 253 url_ = params.url; 452 const GURL& url) { [all...] |
/external/chromium/net/base/ |
sdch_manager.cc | 91 2. The effective host name that derives from the referer URL host name does 94 4. The referer URL host is a host domain name (not IP address) and has the 97 5. If the dictionary has a Port attribute and the referer URL's port was not 145 1. The request URL's host name domain-matches the Domain attribute of the 149 3. The request URL path-matches the path attribute of the dictionary. 244 void SdchManager::BlacklistDomain(const GURL& url) { 247 global_->SetAllowLatencyExperiment(url, false); 249 std::string domain(StringToLowerASCII(url.host())); 264 void SdchManager::BlacklistDomainForever(const GURL& url) { 267 global_->SetAllowLatencyExperiment(url, false) [all...] |
/external/webkit/Source/WebCore/inspector/ |
InspectorDebuggerAgent.cpp | 144 static PassRefPtr<InspectorObject> buildObjectForBreakpointCookie(const String& url, int lineNumber, int columnNumber, const String& condition) 147 breakpointObject->setString("url", url); 154 void InspectorDebuggerAgent::setBreakpointByUrl(ErrorString*, const String& url, int lineNumber, const int* const optionalColumnNumber, const String* const optionalCondition, String* outBreakpointId, RefPtr<InspectorArray>* locations) 159 String breakpointId = makeString(url, ":", String::number(lineNumber), ":", String::number(columnNumber)); 163 breakpointsCookie->setObject(breakpointId, buildObjectForBreakpointCookie(url, lineNumber, columnNumber, condition)); 168 if (it->second.url != url) 375 void InspectorDebuggerAgent::didParseSource(const String& sourceID, const String& url, const String& data, int lineOffset, int columnOffset, bool isContentScript) 378 m_frontend->scriptParsed(sourceID, url, lineOffset, columnOffset, data.length(), isContentScript) [all...] |
/external/webkit/Source/WebCore/loader/appcache/ |
ApplicationCacheHost.cpp | 163 if (request.url() != originalURL) 178 if (!redirectResponse.isNull() && !protocolHostAndPortAreEqual(request.url(), redirectResponse.url())) 222 || !protocolHostAndPortAreEqual(request.url(), response.url())) { 290 resources->append(ResourceInfo(resource->url(), isMaster, isManifest, isFallback, isForeign, isExplicit, resource->estimatedSizeInStorage())); 301 return CacheInfo(cache->manifestResource()->url(), 0, 0, cache->estimatedSizeInStorage()); 342 // If the resource is not to be fetched using the HTTP GET mechanism or equivalent, or if its URL has a different 344 if (!ApplicationCache::requestIsHTTPOrHTTPSGet(request) || !equalIgnoringCase(request.url().protocol(), cache->manifestResource()->url().protocol()) [all...] |
/external/webkit/Source/WebCore/page/ |
PageGroup.cpp | 298 void PageGroup::addVisitedLink(const KURL& url) 302 ASSERT(!url.isEmpty()); 303 addVisitedLink(visitedLinkHash(url.string().characters(), url.string().length())); 368 void PageGroup::addUserScriptToWorld(DOMWrapperWorld* world, const String& source, const KURL& url, 374 OwnPtr<UserScript> userScript(new UserScript(source, url, whitelist, blacklist, injectionTime, injectedFrames)); 383 void PageGroup::addUserStyleSheetToWorld(DOMWrapperWorld* world, const String& source, const KURL& url, 391 OwnPtr<UserStyleSheet> userStyleSheet(new UserStyleSheet(source, url, whitelist, blacklist, injectedFrames, level)); 403 void PageGroup::removeUserScriptFromWorld(DOMWrapperWorld* world, const KURL& url) 416 if (scripts->at(i)->url() == url [all...] |
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/ |
WebErrorsMac.mm | 47 #define WebKitErrorDescriptionCannotShowURL WEB_UI_STRING("The URL can?t be shown", "WebKitErrorCannotShowURL description") 62 + (NSError *)_webKitErrorWithDomain:(NSString *)domain code:(int)code URL:(NSURL *)URL; 74 -(id)_webkit_initWithDomain:(NSString *)domain code:(int)code URL:(NSURL *)URL 83 URL, @"NSErrorFailingURLKey", 84 [URL absoluteString], @"NSErrorFailingURLStringKey", 90 +(id)_webkit_errorWithDomain:(NSString *)domain code:(int)code URL:(NSURL *)URL 92 return [[[self alloc] _webkit_initWithDomain:domain code:code URL:URL] autorelease] [all...] |
/libcore/luni/src/main/java/libcore/net/http/ |
HttpsURLConnectionImpl.java | 27 import java.net.URL; 44 protected HttpsURLConnectionImpl(URL url, int port) { 45 super(url); 46 delegate = new HttpUrlConnectionDelegate(url, port); 49 protected HttpsURLConnectionImpl(URL url, int port, Proxy proxy) { 50 super(url); 51 delegate = new HttpUrlConnectionDelegate(url, port, proxy); 294 public URL getURL() 540 URL url = policy.getURL(); local [all...] |
/libcore/luni/src/test/java/libcore/java/net/ |
OldJarURLConnectionTest.java | 27 import java.net.URL; 46 private URL createContent(String jarFile, String inFile) 54 return new URL("jar:file:" + file.getPath() + "!/" + inFile); 58 URL u = createContent("lf.jar", "swt.dll"); 63 URL invURL = createContent("InvalidJar.jar", "Test.class"); 75 URL u = createContent("TestCodeSigners.jar", "Test.class"); 88 URL invURL = createContent("InvalidJar.jar", "Test.class"); 100 URL u = createContent("lf.jar", "swt.dll"); 108 URL invURL = createContent("InvalidJar.jar", "Test.class"); 120 URL u = createContent("lf.jar", "plus.bmp") 132 URL url = new URL("jar:file:\/\/\/bar.jar!\/foo.jar!\/Bugs\/HelloWorld.class"); local 160 URL url = createContent("lf.jar", "missing"); local 229 URL url = new URL("jar:file:" + file.getPath() + "!\/HasAttributes.txt"); local 261 URL url = new URL("jar:file:\/\/\/bar.jar!\/foo.jar!\/Bugs\/HelloWorld.class"); local 301 URL url = new URL("jar:file:" + jarFileName + "!\/" + entry); local 314 URL url = new URL("jar:file:" + jarFileName + "!\/" + entry); local [all...] |