/external/libxslt/libxslt/ |
transform.c | [all...] |
/cts/libs/testserver/src/android/webkit/cts/ |
CtsTestServer.java | 61 import java.net.URL; 196 URL url = new URL(mServerUri + SHUTDOWN_PREFIX); local 197 URLConnection connection = openConnection(url); 220 private URLConnection openConnection(URL url) 227 HttpsURLConnection connection = (HttpsURLConnection) url.openConnection(); 237 return url.openConnection(); 280 * Return the absolute URL that refers to the given asset [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
ControlTest.java | 34 import java.net.URL; 399 final URL srcFile = URLLoader.getResource(control 551 static File copyFile(final URL src) throws IOException { 641 final URL srcFile = URLLoader.getResource(control.toResourceName( [all...] |
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/ |
Impl_RowSet.java | 23 import java.net.URL; 535 public URL getURL(int columnIndex) throws SQLException { 539 public URL getURL(String columnName) throws SQLException { 1261 public void setURL(int parameterIndex, URL theURL) throws SQLException {
|
/external/chromium/chrome/browser/autocomplete/ |
autocomplete.h | 93 // URL input type: 138 // Extension App (exact match on title only, not url) | 1425 141 // Extension App (inexact match on title only, not url) | 1175*~ 151 // is a keyword with no replacement string, that is, a shortcut for a URL.) 165 // on how many times the URL for the Extension App has been typed and how 188 // cannot be opened as a URL, so it is marked as a QUERY; yet the user 189 // probably intends to type more and have it eventually become a URL, so we 195 // treat as an URL by specifying a desired_tld 196 URL, // Input autodetected as a URL [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_omnibox_api.cc | 208 (type == "url") ? ACMatchClassification::URL :
|
extension_omnibox_apitest.cc | 154 ASCIIToUTF16("Description with style: <match>, [dim], (url till end)"); 185 EXPECT_EQ(ACMatchClassification::URL,
|
/external/chromium/chrome/browser/history/ |
starred_url_database_unittest.cc | 25 void AddPage(const GURL& url) { 26 URLRow row(url); 43 if (entry.type == StarredEntry::URL) 44 EXPECT_TRUE(entry.url == db_value.url); 92 // Provided for URL/StarredURLDatabase. 133 entry1.url = GURL("http://google.com/1"); 139 entry2.url = GURL("http://google.com/2"); 217 entry1.url = GURL("http://google.com/1"); 224 entry2.url = GURL("http://google.com/2") [all...] |
/external/chromium_org/chrome/browser/autocomplete/ |
autocomplete_provider.cc | 19 #include "url/gurl.h" 111 base::string16 AutocompleteProvider::StringForURLDisplay(const GURL& url, 116 return net::FormatUrl(url, languages, 153 // However, if the parser did not mark this as a URL, then the user probably 158 if ((input->type() != AutocompleteInput::URL) && 212 size_t AutocompleteProvider::TrimHttpPrefix(base::string16* url) { 214 if (!AutocompleteInput::HasHTTPScheme(*url)) 217 url->find(ASCIIToUTF16(content::kHttpScheme) + char16(':')); 222 const size_t after_slashes = std::min(url->length(), prefix_end + 2); 223 while ((prefix_end < after_slashes) && ((*url)[prefix_end] == '/') [all...] |
builtin_provider.cc | 69 const int kUrl = ACMatchClassification::URL; 92 // Match input about: or chrome: URL input against builtin chrome URLs. 93 GURL url = URLFixerUpper::FixupURL(UTF16ToUTF8(text), std::string()); local 96 if (url.SchemeIs(chrome::kChromeUIScheme) && url.has_host() && 97 !url.has_query() && !url.has_ref()) { 99 base::string16 host_and_path = UTF8ToUTF16(url.host() + url.path()); 123 // allow it to beat url-what-you-typed and be inlined [all...] |
extension_app_provider.cc | 53 // its URL and leaving us with no extension being found. In this case, we 91 ACMatchClassification::URL, &match.description_class); 128 const base::string16& url = app->launch_url; local 130 std::search(url.begin(), url.end(), 133 matches_url = url_iter != url.end() && 136 static_cast<size_t>(url_iter - url.begin()) : base::string16::npos; 171 app->url() : extensions::AppLaunchInfo::GetFullLaunchURL(app); 195 const GURL& url) { 210 // the Extension App URL/selected the Extension App suggestion from thi [all...] |
/external/chromium_org/chrome/browser/extensions/api/omnibox/ |
omnibox_api_browsertest.cc | 95 ASCIIToUTF16("Description with style: <match>, [dim], (url till end)"); 126 EXPECT_EQ(ACMatchClassification::URL,
|
omnibox_unittest.cc | 21 const int kUrl = ACMatchClassification::URL; 36 // Test output key: n = character with no styling, d = dim, m = match, u = url 115 .Set("type", "url") 160 .Set("type", "url") 204 .Set("type", "url") 250 .Set("type", "url")
|
/external/chromium_org/chrome/browser/history/android/ |
android_provider_backend.cc | 33 "urls.title AS title, android_urls.raw_url AS url, " 38 "urls.id AS url_id, urls.url AS urls_url, " 51 "SELECT urls.id, urls.last_visit_time, created_time, urls.url " 53 "(SELECT url as visit_url, min(visit_time) as created_time" 54 " FROM visits GROUP BY url) ON (visit_url = urls.id) "; 74 // The caller should make sure both/neither Raw URL and/nor URL should be set. 76 row.is_value_set_explicitly(HistoryAndBookmarkRow::URL)); 314 // URL can not be updated, we simulate the update. 315 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::URL)) { [all...] |
bookmark_model_sql_handler.cc | 33 const GURL& url, 40 bookmark_model->AddURL(mobile_node, 0, title, url); 43 void BookmarkModelSQLHandler::Task::AddBookmark(const GURL& url, 51 bookmark_model->AddURL(parent, 0, title, url); 54 void BookmarkModelSQLHandler::Task::RemoveBookmark(const GURL& url) { 59 bookmark_model->GetNodesByURL(url, &nodes); 68 const GURL& url, 74 bookmark_model->GetNodesByURL(url, &nodes); 115 i->url, url_row.title(), row.parent_id())); 121 i->url, url_row.title())) [all...] |
/external/chromium_org/chrome/browser/resources/gaia_auth/ |
main.js | 12 * Gaia auth extension url origin. 34 // Input params from extension initialization URL. 83 var url = this.gaiaUrl_ + this.gaiaPath_; 85 url = appendParam(url, 'service', this.service_); 86 url = appendParam(url, 'continue', this.continueUrl_); 88 url = appendParam(url, 'hl', this.inputLang_); 90 url = appendParam(url, 'Email', this.inputEmail_) [all...] |
/external/chromium_org/chrome/browser/sync_file_system/local/ |
canned_syncable_file_system.h | 78 fileapi::FileSystemURL URL(const std::string& path) const; 109 base::PlatformFileError CreateDirectory(const fileapi::FileSystemURL& url); 110 base::PlatformFileError CreateFile(const fileapi::FileSystemURL& url); 115 base::PlatformFileError TruncateFile(const fileapi::FileSystemURL& url, 117 base::PlatformFileError TouchFile(const fileapi::FileSystemURL& url, 120 base::PlatformFileError Remove(const fileapi::FileSystemURL& url, 122 base::PlatformFileError FileExists(const fileapi::FileSystemURL& url); 123 base::PlatformFileError DirectoryExists(const fileapi::FileSystemURL& url); 124 base::PlatformFileError VerifyFile(const fileapi::FileSystemURL& url, 127 const fileapi::FileSystemURL& url, [all...] |
/external/chromium_org/chrome/browser/ui/views/frame/ |
browser_root_view.cc | 35 *formats = ui::OSExchangeData::URL | ui::OSExchangeData::STRING; 49 // If there is a URL, we'll allow the drop. 53 // If there isn't a URL, see if we can 'paste and go'. 93 // Extract the URL and create a new ui::OSExchangeData containing the URL. We 96 GURL url; 100 ui::OSExchangeData::CONVERT_FILENAMES, &url, &title) || 101 !url.is_valid()) { 102 // The url isn't valid. Use the paste and go url [all...] |
/external/chromium_org/chrome/tools/ |
webforms_aggregator_unittests.py | 233 self.files['url'] = 'urls.txt' 234 url_file_handler = open(self.files['url'], 'w') 238 for url in (self.url1, self.url2): 239 url_file_handler.write(url) 274 """Verify that the crawler is able to find a reg page from the given URL.""" 281 from the given URL.""" 289 c = webforms_aggregator.ThreadedCrawler(self.files['url'])
|
/external/chromium_org/chrome_frame/test/data/ |
chrome_frame_tester_helpers.js | 148 // Returns the base document url. 150 var url = window.location.protocol + "//" + window.location.host + "/"; 151 return url; 154 // Appends arguments passed in to the base document url and returns the same. 156 var url = GetBaseUrlPath(); 158 url += arguments[arg_index]; 160 return url; 177 // Create new URL by given html page name and querystring, based on current URL 181 var url = "" [all...] |
/external/chromium_org/native_client_sdk/src/build_tools/ |
update_nacl_manifest.py | 88 def GetCanonicalArchiveName(url): 89 """Get the canonical name of an archive given its URL. 92 remove everything but the filename of the URL. 99 url: The url to parse. 104 name = posixpath.basename(url) 128 Here is an example of data from this URL: 152 def GsUtil_ls(self, url): 153 """Runs gsutil ls |url| 156 url: The cloud storage url to list [all...] |
/external/chromium_org/remoting/webapp/ |
client_plugin.js | 203 * @param {string} token The token received from the token URL. 204 * @param {string} sharedSecret Shared secret received from the token URL.
|
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/ |
TestObject.idl | 71 [Reflect, TreatNullAs=NullString, URL] attribute DOMString reflectedURLAttr; 75 [Reflect=customContentURLAttr, TreatNullAs=NullString, URL] attribute DOMString reflectedCustomURLAttr;
|
TestObjectPython.idl | 186 [Reflect, URL] attribute DOMString urlStringAttribute; 187 [Reflect=ReflectUrlAttribute, URL] attribute DOMString urlStringAttribute;
|
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/ |
aggregate_results.js | 176 var url = "http://chart.apis.google.com/chart?cht=lc&chs=600x400&chd=" + 181 url += "&chdl=" + labels + "&chco=" + LABEL_COLORS.slice(0, numLabels).join(','); 182 return url; 188 var url = chartUrl(title, values, revisionLabel, startRevision, endRevision, desiredNumberOfPoints); 190 while (url.length >= 2048) { 191 // Decrease the desired number of points gradually until we get a URL that 192 // doesn't exceed chartserver's max URL length. 194 url = chartUrl(title, values, revisionLabel, startRevision, endRevision, desiredNumberOfPoints); 197 return '<img src="' + url + '">';
|