HomeSort by relevance Sort by last modified time
    Searched full:links (Results 1 - 25 of 2690) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/tests/f_dirlink/
name 1 directory hard links
  /external/wpa_supplicant_8/wpa_supplicant/doc/docbook/
.gitignore 1 manpage.links
  /external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_links/
manifest.json 2 "name": "Download Selected Links",
3 "description": "Select links on a page and download them.",
send_links.js 8 var links = [].slice.apply(document.getElementsByTagName('a')); variable
9 links = links.map(function(element) {
21 links.sort();
25 for (var i = 0; i < links.length;) {
26 if (((i > 0) && (links[i] == links[i - 1])) ||
27 (links[i] == '') ||
28 (kBadPrefix == links[i].toLowerCase().substr(0, kBadPrefix.length))) {
29 links.splice(i, 1)
    [all...]
popup.js 11 // Display all visible links.
13 var linksTable = document.getElementById('links');
37 // Toggle the checked state of all visible links.
45 // Download all visible checked links.
89 // Add links to allLinks and visibleLinks, sort and show them. send_links.js is
92 chrome.extension.onRequest.addListener(function(links) {
93 for (var index in links) {
94 allLinks.push(links[index]);
  /external/chromium_org/third_party/WebKit/ManualTests/spatial-navigation/
frameset.html 3 <frame src="links.html"/>
4 <frame src="links.html"/>
  /external/chromium_org/chrome/common/extensions/docs/examples/api/devtools/audits/broken-links/
content.js 2 var links = document.querySelectorAll("a");
5 for (var i = 0; i < links.length; ++i) {
6 var text = links[i].textContent;
9 var link = links[i].href.replace(/(.*)#?/, "$1");
manifest.json 2 "name": "Broken Links",
4 "description": "Extends the Developer Tools, adding an audit category that finds broken links on the inspected page.",
devtools.js 6 "Broken links", 1);
11 auditResults.addResult("No broken links",
12 "There are no broken links on the page!",
17 " links out of " + results.total + " are broken");
22 auditResults.addResult("Broken links found (" +
background.js 5 function validateLinks(links, callback) {
27 callback({ total: links.length, badlinks: results });
38 for (var i = 0; i < links.length; ++i)
39 fetchLink(links[i]);
  /external/chromium_org/chrome/common/extensions/docs/templates/intros/
experimental_discovery.html 1 <p>The current methods allow extensions to inject suggested links in the recommended pane of the New Tab Page.</p
  /frameworks/base/core/java/android/text/util/
package.html 3 Utilities for converting identifiable text strings into clickable links
Linkify.java 46 * regex matches in the text into clickable links. This is particularly
199 * of the link types indicated in the mask into clickable links.
215 ArrayList<LinkSpec> links = new ArrayList<LinkSpec>(); local
218 gatherLinks(links, text, Patterns.WEB_URL,
224 gatherLinks(links, text, Patterns.EMAIL_ADDRESS,
230 gatherTelLinks(links, text);
234 gatherMapLinks(links, text);
237 pruneOverlaps(links);
239 if (links.size() == 0) {
243 for (LinkSpec link: links) {
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/discovery/
discovery_api_unittest.cc 106 const SuggestedLinkList* links = registry->GetAll(GetExtensionId()); local
107 ASSERT_EQ(1u, links->size());
108 ASSERT_EQ("http://www.google.com", links->at(0)->link_url());
109 ASSERT_EQ("Google", links->at(0)->link_text());
110 ASSERT_DOUBLE_EQ(0.5, links->at(0)->score());
121 const SuggestedLinkList* links = registry->GetAll(GetExtensionId()); local
122 ASSERT_EQ(1u, links->size());
123 ASSERT_EQ("https://amazon.com/", links->at(0)->link_url());
124 ASSERT_EQ("Amazon", links->at(0)->link_text());
125 ASSERT_DOUBLE_EQ(1.0, links->at(0)->score()); // Score should default to 1
139 const SuggestedLinkList* links = registry->GetAll(GetExtensionId()); local
161 const SuggestedLinkList* links = registry->GetAll(GetExtensionId()); local
186 const SuggestedLinkList* links = registry->GetAll(GetExtensionId()); local
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/news_a11y/
feed_iframe.js 11 var links = document.getElementsByTagName("A");
12 for (i = 0; i < links.length; i++) {
13 var c = links[i].className;
15 links[i].addEventListener("click", showStory);
  /external/kernel-headers/original/asm-arm/
fcntl.h 5 #define O_NOFOLLOW 0100000 /* don't follow links */
  /external/llvm/docs/_templates/
indexsidebar.html 1 {# This template defines sidebar which can be used to provide common links on
  /external/chromium_org/content/renderer/
savable_resources.h 24 // Structure for storage the result of getting all savable resource links
29 // vector which contains all savable links of sub resource.
31 // vector which contains corresponding all referral links of sub resource,
32 // it matched with links one by one.
36 // vector which contains all savable links of main frame and sub frames.
54 // Get all savable resource links from current webview, include main frame
55 // and sub-frame. After collecting all savable resource links, this function
56 // will send those links to embedder. Return value indicates whether we get
57 // all saved resource links successfully.
  /external/markdown/tests/markdown-test/
benchmark.dat 3 auto-links:0.080000:397312.000000
11 links-inline:0.140000:0.000000
12 links-reference:0.170000:0.000000
  /external/chromium_org/chrome/common/extensions/docs/server2/
link_error_detector.py 15 Page = namedtuple('Page', 'status, links, anchors, anchor_refs')
24 of the page render, the href of all the links that occurred on the page, all
25 of the anchors on the page (ids and names), and all links that contain an
44 links, anchors = parser.links, parser.anchors
49 # Convert relative links to absolute links and categorize links as edges
51 for link in links:
79 '''Parse an html file pulling out all links and anchor_refs, where a
    [all...]
  /external/chromium_org/chrome/browser/resources/
about_credits.js 26 var links = document.getElementsByTagName("a");
27 for (var i = 0; i < links.length; i++) {
28 if (links[i].className === "show") { function
29 links[i].onclick = function () { return toggle(this); };
  /ndk/tests/device/test-basic-rtti/
README 4 This is really a way to check that the C++ compiler properly links against
  /external/chromium/webkit/glue/
dom_operations.h 23 // Structure for storage the result of getting all savable resource links
28 // vector which contains all savable links of sub resource.
30 // vector which contains corresponding all referral links of sub resource,
31 // it matched with links one by one.
33 // vector which contains all savable links of main frame and sub frames.
48 // Get all savable resource links from current webview, include main frame
49 // and sub-frame. After collecting all savable resource links, this function
50 // will send those links to embedder. Return value indicates whether we get
51 // all saved resource links successfully.
dom_operations_unittest.cc 47 // Get all savable resource links for the page.
64 // Check all links of sub-resource
70 // Check all links of frame.
79 // which has valid savable resource links.
94 // Add all expected links of sub-resource to expected set.
97 // Add all expected links of frame to expected set.
110 // which does not have valid savable resource links.
119 // Add all expected links of frame to expected set.
  /external/antlr/antlr-3.4/antlr3-maven-plugin/src/site/
site.xml 14 <links>
16 </links>

Completed in 1014 milliseconds

1 2 3 4 5 6 7 8 91011>>