HomeSort by relevance Sort by last modified time
    Searched refs:URL (Results 651 - 675 of 908) sorted by null

<<21222324252627282930>>

  /external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
proxy_form_controller_test.js 290 pacScript: {url: 'http://example.com/this/is/a/pac.script'}
406 // is selected, and no PAC file URL is given
416 // Test that PAC URL rules are correctly generated when "automatic"
417 // is selected, and a PAC file URL is given
424 this.assertEqual('http://example.com/pac.pac', result.pacScript.url);
429 var pacData = 'function FindProxyForURL(url,host) { return "DIRECT"; }';
444 'function FindProxyForURL(url,host) { return "DIRECT"; }';
447 this.assertEqual('http://example.com/pac.pac', result.pacScript.url);
  /external/chromium_org/chrome/browser/resources/quota_internals/
event_handler.js 240 * storage type, hostname and origin url.
243 * @param {!string} origin Origin URL.
351 * Origin URL of the entry.
432 ['origin', 'Origin URL'],
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
proxy_form_controller_test.js 284 pacScript: {url: 'http://example.com/this/is/a/pac.script'}
400 // is selected, and no PAC file URL is given
410 // Test that PAC URL rules are correctly generated when "automatic"
411 // is selected, and a PAC file URL is given
418 this.assertEqual('http://example.com/pac.pac', result.pacScript.url);
423 var pacData = 'function FindProxyForURL(url,host) { return "DIRECT"; }';
438 'function FindProxyForURL(url,host) { return "DIRECT"; }';
441 this.assertEqual('http://example.com/pac.pac', result.pacScript.url);
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarFileTest.java 24 import java.net.URL;
219 InputStream is = new URL(jarDirUrl + "/jarlist.txt").openStream();
  /external/apache-http/src/org/apache/commons/logging/impl/
LogFactoryImpl.java 23 import java.net.URL;
988 URL url; local
    [all...]
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_codec_unittest.cc 48 EXPECT_EQ(expected->url(), actual->url());
354 EXPECT_EQ(BookmarkNode::URL, child->type());
366 EXPECT_EQ(BookmarkNode::URL, child->type());
  /external/chromium_org/chrome/browser/resources/file_manager/background/js/
volume_manager.js 52 * Obtains a URL of the display root directory that users can see as a root.
53 * @return {string} URL of root entry.
526 * @param {string} fileUrl File url to the archive file.
534 'Mount request: url=' + fileUrl + '; sourceUrl=' + sourcePath);
599 * Obtains a volume information from a file entry URL.
602 * @param {string} url URL of entry.
605 VolumeManager.prototype.getVolumeInfoByURL = function(url) {
606 return this.getVolumeInfo(util.extractFilePath(url));
  /external/chromium_org/chrome/browser/resources/gaia_auth/
background.js 25 // Gaia URL base that is set from main auth script.
152 this.channelMain_.send({name: 'onAuthPageLoaded', url: msg.url});
  /external/chromium_org/chrome/browser/resources/instant/
instant.js 21 label: 'Prefix URL for the experimental Instant ZeroSuggest provider',
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/chrome_search/
background.js 29 var description = '<url>' + file + '</url>';
74 description: '<url><match>src:</match></url> Search Chromium source'
86 var description = '<match><url>src</url></match><dim> [</dim>';
121 var url = "https://code.google.com/p/chromium/codesearch#search/&type=cs&q=" + query +
124 req.open("GET", url, true);
136 var url = "https://code.google.com/p/chromium/codesearch#" + path
139 url += "&l=" + line
    [all...]
  /external/chromium_org/chrome_frame/cfinstall/src/implementation/
dialoginteractiondelegate.js 75 /* Client apps may override the URL at which they serve the sprite. */
77 'url(//ssl.gstatic.com/editor/editortoolbar.png)' +
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/life/
example.js 39 * Get the URL for Google Cloud Storage.
  /external/chromium_org/third_party/libxml/src/
libxml2.spec 10 URL: http://xmlsoft.org/
xmllint.c 256 xmllintExternalEntityLoader(const char *URL, const char *ID,
263 const char *lastsegment = URL;
264 const char *iter = URL;
282 ret = defaultEntityLoader(URL, ID, ctxt);
291 "Loaded URL=\"%s\" ID=\"%s\"\n",
292 URL ? URL : "(null)",
314 "Loaded URL=\"%s\" ID=\"%s\"\n",
328 if (URL != NULL)
329 warning(ctxt, "failed to load external entity \"%s\"\n", URL);
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-231.js 28 // See issue 231 <URL: http://code.google.com/p/v8/issues/detail?id=231 >
  /external/libxml2/
xmllint.c 260 xmllintExternalEntityLoader(const char *URL, const char *ID,
267 const char *lastsegment = URL;
268 const char *iter = URL;
286 ret = defaultEntityLoader(URL, ID, ctxt);
295 "Loaded URL=\"%s\" ID=\"%s\"\n",
296 URL ? URL : "(null)",
318 "Loaded URL=\"%s\" ID=\"%s\"\n",
332 if (URL != NULL)
333 warning(ctxt, "failed to load external entity \"%s\"\n", URL);
    [all...]
  /external/v8/test/mjsunit/regress/
regress-231.js 28 // See issue 231 <URL: http://code.google.com/p/v8/issues/detail?id=231 >
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerBaseTest.java 49 import java.net.URL;
442 URL url = mServer.getUrl("/" + filename); local
443 return Uri.parse(url.toString());
    [all...]
  /libcore/libdvm/src/main/java/java/lang/
Class.java 50 import java.net.URL;
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatParser.java 23 import java.net.URL;
256 * systemId is a URL, we should try to resolve it, but it doesn't
257 * specify how to tell whether or not the systemId is a URL let alone
288 * as a URL and download and parse its contents here, but an
744 * Opens an InputStream for the given URL.
746 /*package*/ static InputStream openUrl(String url) throws IOException {
748 URLConnection urlConnection = new URL(url).openConnection();
755 IOException ioe = new IOException("Couldn't open " + url);
  /external/chromium/chrome/browser/bookmarks/
bookmark_html_writer.cc 351 // Map that stores favicon per URL.
403 if (BookmarkNode::URL == node->type()) {
404 std::string url = node->GetURL().spec(); local
405 if (!url.empty()) {
406 bookmark_urls_.push_back(url);
436 std::string url = bookmark_urls_.front(); local
438 URLFaviconMap::const_iterator iter = favicons_map_->find(url);
442 favicon_service->GetFaviconForURL(GURL(url), history::FAVICON,
456 GURL url; local
458 url = GURL(bookmark_urls_.front())
    [all...]
bookmark_node_data_unittest.cc 53 // Writes a URL to the clipboard and make sure BookmarkNodeData can correctly
56 const GURL url("http://google.com");
60 data.SetURL(url, title);
67 EXPECT_EQ(url, drag_data.elements[0].url);
72 TEST_F(BookmarkNodeDataTest, URL) {
73 // Write a single node representing a URL to the clipboard.
80 GURL url(GURL("http://foo.com"));
82 const BookmarkNode* node = model->AddURL(root, 0, title, url);
87 EXPECT_EQ(url, drag_data.elements[0].url)
    [all...]
  /external/chromium/chrome/browser/history/
history_types.h 44 typedef int64 SegmentID; // URL segments for the most visited view.
45 typedef int64 IconMappingID; // For page url and icon mapping.
51 // Holds all information globally associated with one URL (one row in the
52 // URL table).
67 explicit URLRow(const GURL& url);
71 URLRow(const GURL& url, URLID id);
77 const GURL& url() const { return url_; } function in class:history::URLRow
97 // Number of times the URL was typed in the Omnibox.
112 // If this is set, we won't autocomplete this URL.
135 // The row ID of this URL. Immutable except for the database which sets i
320 GURL url; member in struct:history::StarredEntry
546 GURL url; member in struct:history::MostVisitedURL
577 GURL url; member in class:history::HistoryAddPageArgs
616 MostVisitedURL url; member in struct:history::MostVisitedURLWithRank
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
keyword_provider_unittest.cc 15 #include "url/gurl.h"
55 { "ab", "bogus URL {searchTerms}", "ab" },
176 TEST_F(KeywordProviderTest, URL) {
179 // No query input -> empty destination URL.
186 // and query input, but not rest of URL, is escaped.
199 { GURL("bogus URL 1+2+3"), false },
266 base::string16 url(ASCIIToUTF16("http://aaaa/?aaaa=1&b={searchTerms}&c"));
327 const TemplateURL* url = local
331 EXPECT_FALSE(url);
333 EXPECT_EQ(cases[i].expected_url, url->url())
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/
volume_manager_wrapper.js 226 * Obtains a volume information from a file entry URL.
229 * @param {string} url URL of entry.
232 VolumeManagerWrapper.prototype.getVolumeInfoByURL = function(url) {
234 this.volumeManager_ && this.volumeManager_.getVolumeInfoByURL(url));

Completed in 303 milliseconds

<<21222324252627282930>>