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

1 2 3 4 5 6 7 8 9

  /external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_links/
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/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");
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 (" +
  /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); };
plugins.js 126 var links = document.getElementsByClassName('disable-plugin-link');
127 for (var i = 0; i < links.length; i++) { function
128 links[i].onclick = function() {
133 links = document.getElementsByClassName('enable-plugin-link');
134 for (var i = 0; i < links.length; i++) {
135 links[i].onclick = function() {
140 links = document.getElementsByClassName('disable-group-link');
141 for (var i = 0; i < links.length; i++) {
142 links[i].onclick = function() {
147 links = document.getElementsByClassName('enable-group-link')
    [all...]
components.js 62 var links = document.getElementsByClassName('button-check-update');
63 for (var i = 0; i < links.length; i++) { function
64 links[i].onclick = function(e) {
  /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/chromium_org/chrome/common/extensions/docs/server2/
link_error_detector.py 16 Page = namedtuple('Page', 'status, links, anchors, anchor_refs')
27 of the page render, the href of all the links that occurred on the page, all
28 of the anchors on the page (ids and names), and all links that contain an
47 links, anchors = parser.links, parser.anchors
55 # Convert relative links to absolute links and categorize links as edges
57 for link in links:
86 '''Parse an html file pulling out all links and anchor_refs, where a
    [all...]
  /external/chromium_org/chrome/browser/drive/
drive_api_util.cc 191 ScopedVector<google_apis::Link> links; local
196 links.push_back(link);
202 links.push_back(link);
204 entry->set_links(links.Pass());
242 ScopedVector<google_apis::Link> links; local
247 links.push_back(link);
249 feed->set_links(links.Pass());
268 ScopedVector<google_apis::Link> links; local
273 links.push_back(link);
275 feed->set_links(links.Pass())
    [all...]
drive_api_util_unittest.cc 99 for (size_t i = 0; i < entry->links().size(); ++i) {
100 if (entry->links()[i]->type() == google_apis::Link::LINK_PARENT)
101 actual_links.push_back(entry->links()[i]->href());
  /bionic/libc/tools/zoneinfo/
ZoneCompactor.java 17 // Note that the links must be declared prior to the zone names.
31 private Map<String,String> links = new HashMap<String,String>(); field in class:ZoneCompactor
73 links.put(from, to);
75 String link = links.get(s);
89 // Fill in fields for links.
90 Iterator<String> it = links.keySet().iterator();
93 String to = links.get(from);
135 // Follow the chain of links to work out where the real data for this zone lives.
137 while (links.get(actualZoneName) != null) {
138 actualZoneName = links.get(actualZoneName)
    [all...]
  /external/chromium_org/chrome/tools/
webforms_aggregator.py 6 """Downloads web pages with fillable forms after parsing through a set of links.
59 # lists, giving more weight to the links that contain a link clue.
84 domain: only links with this domain will be retrieved.
92 # Http links without clues from LINK_CLUES.
94 # Http links that contain a clue from LINK_CLUES.
96 # Https links that do not contain any clues from LINK_CLUES.
98 # Https links that contain a clue from LINK_CLUES.
118 link: the url that is inserted to the appropriate links list.
147 the url links. If it is a registration page, it saves it in a file as
212 # Indicates page is not a registration page and links must be parsed
    [all...]
  /external/chromium_org/components/visitedlink/browser/
visitedlink_event_listener.cc 60 // Buffers |links| to update, but doesn't actually relay them.
61 void AddLinks(const VisitedLinkCommon::Fingerprints& links) {
65 if (pending_.size() + links.size() > kVisitedLinkBufferThreshold) {
67 // link updates -- we opt for resetting the state for all links.
72 pending_.insert(pending_.end(), links.begin(), links.end());
76 // necessary and the visited state for all links should be reset.
82 // Sends visited link update messages: a list of links whose visited state
83 // changed or reset of visited state for all links.
  /external/chromium_org/third_party/WebKit/public/web/
WebPageSerializer.h 47 // which contain all resource links that have local copy.
87 // The parameter links contain original URLs of all saved links.
89 // saved links, which matched with vector:links one by one.
96 const WebVector<WebURL>& links,
  /bionic/libc/kernel/uapi/linux/
media.h 67 __u16 links; member in struct:media_entity_desc
119 struct media_link_desc __user *links; member in struct:media_links_enum
  /development/ndk/platforms/android-L/include/linux/
media.h 67 __u16 links; member in struct:media_entity_desc
117 struct media_link_desc __user *links; member in struct:media_links_enum
  /external/kernel-headers/original/uapi/linux/
media.h 72 __u16 links; member in struct:media_entity_desc
125 /* Should have enough room for links elements */
126 struct media_link_desc __user *links; member in struct:media_links_enum
  /external/llvm/bindings/ocaml/linker/
llvm_linker.mli 24 (** [link_modules dst src mode] links [src] into [dst], raising [Error]
  /external/libvorbis/lib/
vorbisfile.c 48 between links in the chain. */
502 vf->links=m+1;
507 vf->offsets=_ogg_malloc((vf->links+1)*sizeof(*vf->offsets));
508 vf->vi=_ogg_realloc(vf->vi,vf->links*sizeof(*vf->vi));
509 vf->vc=_ogg_realloc(vf->vc,vf->links*sizeof(*vf->vc));
510 vf->serialnos=_ogg_malloc(vf->links*sizeof(*vf->serialnos));
511 vf->dataoffsets=_ogg_malloc(vf->links*sizeof(*vf->dataoffsets));
512 vf->pcmlengths=_ogg_malloc(vf->links*2*sizeof(*vf->pcmlengths));
526 first pages of two links. */
832 for(link=0;link<vf->links;link++
    [all...]
  /build/tools/droiddoc/templates-sdk/
sample.cs 15 <div class="sum-details-links">
17 <!-- related links -->
24 </div><!-- end sum-details-links -->
49 <?cs # If this is the online docs, build the src code navigation links ?>
89 so don't show src links (we dont have the pages!) ?>
106 <div class="paging-links layout-content-col col-4">
sampleindex.cs 15 <div class="sum-details-links">
17 <!-- related links -->
27 </div><!-- end sum-details-links -->
61 <?cs # If this is the online docs, build the src code navigation links ?>
80 so don't show src links (we dont have the pages!) ?>
96 <div class="paging-links layout-content-col col-4">
  /build/tools/droiddoc/templates-sdk-dyn/
sample.cs 15 <div class="sum-details-links">
17 <!-- related links -->
24 </div><!-- end sum-details-links -->
49 <?cs # If this is the online docs, build the src code navigation links ?>
89 so don't show src links (we dont have the pages!) ?>
106 <div class="paging-links layout-content-col col-4">
sampleindex.cs 15 <div class="sum-details-links">
17 <!-- related links -->
27 </div><!-- end sum-details-links -->
61 <?cs # If this is the online docs, build the src code navigation links ?>
80 so don't show src links (we dont have the pages!) ?>
96 <div class="paging-links layout-content-col col-4">
  /external/chromium_org/pdf/pdfium/
pdfium_page.cc 190 // PDFium may change the case of generated links.
260 // launch actions, cross-document links, etc.
300 // links. Need to implement that. There is a bug to track that:
363 std::vector<int> links; local
373 links.push_back(i);
377 return links;
385 FPDF_PAGELINK links = FPDFLink_LoadWebLinks(GetTextPage()); local
386 int count = FPDFLink_CountWebLinks(links);
389 int url_length = FPDFLink_GetURL(links, i, NULL, 0);
393 FPDFLink_GetURL(links, i, data, url_length)
    [all...]

Completed in 978 milliseconds

1 2 3 4 5 6 7 8 9