Searched refs:link (Results 51 - 75 of 894) sorted by relevance

1234567891011>>

/external/doclava/res/assets/templates/
H A Djd_lists.cs5 { label:"<?cs var:page.label ?>", link:"<?cs var:page.link ?>",
H A Dlists.cs3 ?> { id:<?cs var: page.id ?>, label:"<?cs var:page.label ?>", link:"<?cs var:page.link ?>", type:"<?cs var:page.type ?>", deprecated:"<?cs var:page.deprecated ?>" }<?cs if:!last(page) ?>,<?cs /if ?>
/external/iproute2/testsuite/iproute2/
H A DMakefile9 link:
14 configure: link
19 clean: link
29 show: link
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dmyocamlbuild.ml9 flag ["link"; "ocaml"; "g++"] (S[A"-cc"; A"g++"]);;
10 dep ["link"; "ocaml"; "use_bindings"] ["bindings.o"];;
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dmyocamlbuild.ml9 flag ["link"; "ocaml"; "g++"] (S[A"-cc"; A"g++"]);;
10 dep ["link"; "ocaml"; "use_bindings"] ["bindings.o"];;
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dmyocamlbuild.ml9 flag ["link"; "ocaml"; "g++"] (S[A"-cc"; A"g++"; A"-cclib"; A"-rdynamic"]);;
10 dep ["link"; "ocaml"; "use_bindings"] ["bindings.o"];;
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dmyocamlbuild.ml9 flag ["link"; "ocaml"; "g++"] (S[A"-cc"; A"g++"; A"-cclib"; A"-rdynamic"]);;
10 dep ["link"; "ocaml"; "use_bindings"] ["bindings.o"];;
/external/llvm/tools/llvm-link/
H A DMakefile1 ##===- tools/llvm-link/Makefile ----------------------------*- Makefile -*-===##
11 TOOLNAME := llvm-link
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dins.h19 void *link; member in struct:Ins::__anon16381
24 void *link; member in struct:Ins::__anon16382
/external/chromium_org/chrome/common/extensions/docs/examples/api/devtools/audits/broken-links/
H A Dbackground.js9 function fetchLink(link) {
10 if (!/^http(s?):\/\//.test(link.href))
13 xhr.open("HEAD", link.href, true);
19 href: link.href,
20 text: link.text,
34 console.error("XHR failed for " + link.href + ", " + e);
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dlink_converter.py33 page, link = clean.split('#')
36 if (not link.startswith('property-') and
37 not link.startswith('type-') and
38 not link.startswith('method-') and
39 not link.startswith('event-')):
44 link = re.sub('^(property|type|method|event)-', '', link).replace('-', '.')
50 if link in title:
51 return '%s$(ref:%s%s)' % (padding, page, link)
53 return '%s$(ref:%s%s %s)' % (padding, page, link, titl
[all...]
H A Dreference_resolver.py150 link = self._object_store.Get(db_key).Get()
151 if link is None:
153 link = self._GetRefLink(ref, api_list, namespace)
154 if link is None and namespace is not None:
157 link = self._GetRefLink('%s.%s' % (namespace, ref),
160 if link is None:
162 self._object_store.Set(db_key, link)
165 link = copy(link)
166 link['tex
[all...]
/external/chromium_org/tools/win/split_link/
H A Dinstall_split_link.py46 link = FindInPath('link.exe')
48 if not link or not mt:
49 print("Couldn't find link.exe or mt.exe in PATH. "
53 link_backup = os.path.join(os.path.split(link)[0], 'link.exe.split_link.exe')
55 # Don't re-backup link.exe, so only copy link.exe to backup if it's
59 print 'Saving original link.exe...'
60 shutil.copyfile(link, link_backu
[all...]
/external/chromium_org/content/browser/resources/accessibility/
H A Daccessibility.js152 var link = document.createElement('a');
153 link.setAttribute('href', '#');
155 link.textContent = 'accessibility ' + (full_a11y_on ? 'on' : 'off');
156 link.addEventListener('click',
157 toggleAccessibility.bind(this, data, link));
158 return link;
162 var link = document.createElement('a');
163 link.setAttribute('href', '#');
165 link.textContent = 'refresh accessibility tree';
167 link
[all...]
/external/chromium_org/third_party/bintrees/bintrees/
H A Dctrees.c17 #define LEFT_NODE(node) (node->link[LEFT])
18 #define RIGHT_NODE(node) (node->link[RIGHT])
19 #define LINK(node, dir) (node->link[dir])
260 node_t *save = root->link[!dir];
262 root->link[!dir] = save->link[dir];
263 save->link[dir] = root;
273 root->link[!dir] = rb_single(root->link[!dir], !dir);
313 /* Insert a new node at the first null link */
[all...]
H A Dcwalker.pyx55 self.node = self.node.link[0]
57 self.node = self.node.link[1]
74 if self.node.link[0] != NULL:
75 self.node = self.node.link[0]
76 elif self.node.link[1] != NULL:
77 self.node = self.node.link[1]
82 return self.node.link[direction] != NULL
85 self.node = self.node.link[direction]
88 self.node = self.node.link[0]
91 self.node = self.node.link[
[all...]
/external/e2fsprogs/lib/et/test_cases/
H A Dcontinuation.c28 static struct et_list link = { 0, 0 }; variable in typeref:struct:et_list
47 if (!link.table)
48 et = &link;
H A Dheimdal3.c29 static struct et_list link = { 0, 0 }; variable in typeref:struct:et_list
48 if (!link.table)
49 et = &link;
/external/owasp/sanitizer/tools/findbugs/bin/
H A Dfindbugs212 link=`ls -ld "$program"`
13 link=`expr "$link" : '.*-> \(.*\)'`
14 if [ "`expr "$link" : '/.*'`" = 0 ]; then
17 program="$dir/$link"
20 program="$link"
/external/chromium_org/components/dom_distiller/webui/resources/
H A Dabout_dom_distiller.js20 var link = document.createElement('a');
22 link.setAttribute('id', 'entry-' + entry_id);
23 link.setAttribute('href', '#');
24 link.innerText = entries[i].title;
25 link.addEventListener('click', function(event) {
28 listItem.appendChild(link);
/external/chromium-trace/trace-viewer/src/base/
H A Dmeasuring_stick.js45 var stylesheets = document.querySelectorAll('link[rel=stylesheet]');
48 var link = this.iframe_.contentDocument.createElement('link');
49 link.rel = 'stylesheet';
50 link.href = stylesheet.href;
51 this.iframe_.contentDocument.head.appendChild(link);
/external/chromium_org/chrome/browser/resources/local_ntp/
H A Dmost_visited_util.js94 * Creates a new most visited link element.
95 * @param {Object} params URL parameters containing styles for the link.
96 * @param {string} href The destination for the link.
97 * @param {string} title The title for the link.
98 * @param {string|undefined} text The text for the link or none.
103 * @return {HTMLAnchorElement} A new link element.
107 var link = document.createElement('a');
108 link.style.color = styles.color;
109 link.style.fontSize = styles.fontSize + 'px';
111 link
[all...]
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dstatus_view.css23 .capture-status-view-link,
24 .capture-status-view-link:visited,
25 .capture-status-view-link:active {
30 .capture-status-view-link:hover {
/external/nanopb-c/docs/
H A DMakefile8 rst2html --stylesheet=lsr.css --link-stylesheet $< $@
9 sed -i 's!</head>!<link href="favicon.ico" type="image/x-icon" rel="shortcut icon" />\n</head>!' $@
/external/chromium_org/chrome/third_party/chromevox/chromevox/background/
H A Doptions_widgets.css13 button:not(.custom-appearance):not(.link-button),
14 input[type='button']:not(.custom-appearance):not(.link-button),
15 input[type='submit']:not(.custom-appearance):not(.link-button),
32 button:not(.custom-appearance):not(.link-button),
33 input[type='button']:not(.custom-appearance):not(.link-button),
34 input[type='submit']:not(.custom-appearance):not(.link-button),
45 button:not(.custom-appearance):not(.link-button),
46 input[type='button']:not(.custom-appearance):not(.link-button),
47 input[type='submit']:not(.custom-appearance):not(.link-button) {
139 button:not(.custom-appearance):not(.link
[all...]

Completed in 1359 milliseconds

1234567891011>>