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

1 2 3 4 5 6 7 8 91011>>

  /external/libnl/doc/
doxygen-link.py 12 links = {}
31 links[name] = "<a href=\"" + value + "\" class=\"dg\">" + name + "</a>"
32 return links
34 links = parse_dict(sys.argv[1]) variable
37 return links[match.group(1)]
40 rc = re.compile(r'\b(' + '|'.join(map(re.escape, sorted(links, reverse=True))) + r')\b')
  /external/ltp/testcases/kernel/syscalls/link/
link03.c 38 * Tests that link(2) succeds with creating n links.
72 int i, links; local
98 links = nlinks;
100 links = (lc % 90) + 10;
102 /* Create links - 1 hardlinks so that the st_nlink == links */
103 for (i = 1; i < links; i++) {
115 if (buf.st_nlink != (nlink_t)links) {
116 tst_resm(TFAIL, "Wrong number of links for "
118 fname, (int)buf.st_nlink, links);
    [all...]
  /frameworks/base/core/java/android/service/textclassifier/
ITextLinksCallback.aidl 26 void onSuccess(in TextLinks links);
  /external/selinux/libselinux/utils/
selabel_lookup_best_match.c 21 "link Zero or more links to check against, the order of\n\t"
23 " 1) An exact match for the real path (if no links), or\n\t\t"
24 " 2) An exact match for any of the links (aliases), or\n\t\t"
58 char **links = NULL; local
91 /* Count links */
96 links = calloc(num_links + 1, sizeof(char *));
98 if (!links) {
105 links[num_links] = malloc(string_len);
106 if (!links[num_links]) {
110 strcpy(links[num_links], argv[i])
    [all...]
  /external/abi-compliance-checker/modules/Internals/Scripts/
Tabs.js 17 var links = sets[i].getElementsByTagName('a');
18 for (var j = 0; j < links.length; j++)
20 if (links[j].className.indexOf('tab') != -1)
22 tabs.push(links[j]);
23 links[j].tabs = tabs;
24 var tab = document.getElementById(links[j].href.substr(links[j].href.indexOf('#') + 1));
28 if (links[j].className.indexOf('active')!=-1) {
35 links[j].onclick = function()
34 } function
  /prebuilts/go/darwin-x86/misc/chrome/gophertool/
popup.js 6 var links = document.getElementsByTagName("a");
7 for (var i = 0; i < links.length; i++) {
8 var url = links[i].getAttribute("url");
10 links[i].addEventListener("click", function () {
  /prebuilts/go/linux-x86/misc/chrome/gophertool/
popup.js 6 var links = document.getElementsByTagName("a");
7 for (var i = 0; i < links.length; i++) {
8 var url = links[i].getAttribute("url");
10 links[i].addEventListener("click", function () {
  /test/vti/dashboard/src/main/java/com/android/vts/entity/
TestRunEntity.java 131 public final List<String> links; field in class:TestRunEntity
145 * @param links A list of links to resource files for the test run, or null if there aren't any.
151 List<Long> testCaseIds, List<String> links, long coveredLineCount,
162 this.links = links == null ? new ArrayList<String>() : links;
180 * @param links A list of links to resource files for the test run, or null if there aren't any.
184 List<Long> testCaseIds, List<String> links) {
237 List<String> links = null; local
271 List<JsonElement> links = new ArrayList<>(); local
    [all...]
  /external/autotest/server/cros/dynamic_suite/
reporting.py 82 links = self._get_links_for_failure()
105 'build_artifacts': links.artifacts,
106 'results_log': links.results,
107 'status_log': links.status_log,
108 'job': links.job,
109 'test_history_url': links.test_history_url,
110 'retry_url': links.retry_url,
139 """Returns a named tuple of links related to this failure."""
140 links = collections.namedtuple('links', ('results,
    [all...]
  /frameworks/base/tests/net/java/android/net/ip/
IpClientTest.java 217 .withInitialConfiguration(conf(links(addresses), prefixes(prefixes), ips()))
242 LinkProperties want = linkproperties(links(addresses), routes(prefixes));
253 InitialConfiguration empty = conf(links(), prefixes());
256 notProvisionedCase(links(), routes(), dns(), null),
257 notProvisionedCase(links(), routes(), dns(), empty),
260 provisionedCase(links("192.0.2.12/24"), routes(), dns(), empty),
264 links("fe80::a4be:f92:e1f7:22d1/64", "fd2c:4e57:8e3c:0:548d:2db2:4fcf:ef75/64"),
267 links("fe80::a4be:f92:e1f7:22d1/64", "fd2c:4e57:8e3c:0:548d:2db2:4fcf:ef75/64"),
270 links("2001:db8:dead:beef:f00::a0/64", "fe80::1/64"),
276 links("fe80::e1f7:22d1/64", "fd2c:4e57:8e3c:0:548d:2db2:4fcf:ef75/64")
445 static Set<LinkAddress> links(String... addresses) { method in class:IpClientTest
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-cris/
def2.d 8 # Just checking that undef2 links correctly when given a symbol.
def3.d 8 # Just checking that undef3 links correctly when given a symbol.
  /frameworks/support/textclassifier/src/androidTest/java/androidx/textclassifier/
TextLinksTest.java 156 TextLinks links = new TextLinks.Builder("bar").build(); local
157 assertEquals(links.apply(text, TextLinks.APPLY_STRATEGY_REPLACE, null),
164 TextLinks links = new TextLinks.Builder(text.toString()).build(); local
165 assertEquals(links.apply(text, TextLinks.APPLY_STRATEGY_REPLACE, null),
173 TextLinks links = new TextLinks.Builder(text.toString()).addLink( local
175 assertEquals(links.apply(text, TextLinks.APPLY_STRATEGY_IGNORE, null),
182 TextLinks links = new TextLinks.Builder(text.toString()).addLink( local
184 assertEquals(links.apply(text, TextLinks.APPLY_STRATEGY_IGNORE, null),
188 assertTrue(links.getLinks().contains(spans[0].getTextLink()));
195 TextLinks links = new TextLinks.Builder(text.toString()).addLink local
207 TextLinks links = new TextLinks.Builder(text.toString()).addLink( local
    [all...]
  /frameworks/support/compat/src/main/java/androidx/core/text/util/
LinkifyCompat.java 91 * of the link types indicated in the mask into clickable links.
96 * @param text Spannable whose text is to be marked-up with links
97 * @param mask Mask to define which kinds of links will be searched.
119 final ArrayList<LinkSpec> links = new ArrayList<>(); local
122 gatherLinks(links, text, PatternsCompat.AUTOLINK_WEB_URL,
128 gatherLinks(links, text, PatternsCompat.AUTOLINK_EMAIL_ADDRESS,
134 gatherMapLinks(links, text);
137 pruneOverlaps(links, text);
139 if (links.size() == 0) {
143 for (LinkSpec link: links) {
    [all...]
  /system/core/init/
devices.cpp 211 const std::string& path, const std::vector<std::string>& links) const {
214 if (it->Match(path) || std::any_of(links.cbegin(), links.cend(),
224 const std::vector<std::string>& links) const {
225 auto[mode, uid, gid] = GetDevicePermissions(path, links);
229 if (!SelabelLookupFileContextBestMatch(path, links, mode, &secontext)) {
318 std::vector<std::string> links; local
331 links.emplace_back(link_path + "/by-name/" + partition_name_sanitized);
334 links.emplace_back("/dev/block/by-name/" + partition_name_sanitized);
339 links.emplace_back(link_path + "/" + uevent.path.substr(last_slash + 1))
385 std::vector<std::string> links; local
    [all...]
  /frameworks/base/cmds/statsd/tools/loadtest/src/com/android/statsd/loadtest/
ConfigFactory.java 157 List<MetricConditionLink> links, int suffix) {
159 for (MetricConditionLink link : links) {
179 List<MetricConditionLink> links = getLinks(template.getLinksList(), suffix); local
181 metric.addAllLinks(links);
199 List<MetricConditionLink> links = getLinks(template.getLinksList(), suffix); local
201 metric.addAllLinks(links);
220 List<MetricConditionLink> links = getLinks(template.getLinksList(), suffix); local
222 metric.addAllLinks(links);
241 List<MetricConditionLink> links = getLinks(template.getLinksList(), suffix); local
243 metric.addAllLinks(links);
262 List<MetricConditionLink> links = getLinks(template.getLinksList(), suffix); local
    [all...]
  /frameworks/base/core/java/android/text/util/
Linkify.java 65 * regex matches in the text into clickable links. This is particularly
233 * of the link types indicated in the mask into clickable links.
238 * @param text Spannable whose text is to be marked-up with links
239 * @param mask Mask to define which kinds of links will be searched.
259 ArrayList<LinkSpec> links = new ArrayList<LinkSpec>(); local
262 gatherLinks(links, text, Patterns.AUTOLINK_WEB_URL,
268 gatherLinks(links, text, Patterns.AUTOLINK_EMAIL_ADDRESS,
274 gatherTelLinks(links, text, context);
278 gatherMapLinks(links, text);
281 pruneOverlaps(links);
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/gpu/
gpu_device_test.cc 183 ASSERT_EQ(1, devices[0]->attributes().locality().links().link_size());
184 ASSERT_EQ(1, devices[1]->attributes().locality().links().link_size());
185 EXPECT_EQ(1, devices[0]->attributes().locality().links().link(0).device_id());
187 devices[0]->attributes().locality().links().link(0).type());
189 devices[0]->attributes().locality().links().link(0).strength());
190 EXPECT_EQ(0, devices[1]->attributes().locality().links().link(0).device_id());
192 devices[1]->attributes().locality().links().link(0).type());
194 devices[1]->attributes().locality().links().link(0).strength());
  /system/timezone/zone_compactor/main/java/
ZoneCompactor.java 32 // Note that the links must be declared prior to the zone names.
46 private Map<String,String> links = new HashMap<String,String>(); field in class:ZoneCompactor
88 links.put(from, to);
90 String link = links.get(s);
104 // Fill in fields for links.
105 Iterator<String> it = links.keySet().iterator();
108 String to = links.get(from);
150 // Follow the chain of links to work out where the real data for this zone lives.
152 while (links.get(actualZoneName) != null) {
153 actualZoneName = links.get(actualZoneName)
    [all...]
  /external/curl/docs/cmdline-opts/
max-time.d 9 networks or links going down. Since 7.32.0, this option accepts decimal
  /external/libopus/doc/
build_isobmff.sh 40 echo updating links...
  /external/llvm/bindings/ocaml/linker/
llvm_linker.mli 17 (** [link_modules' dst src] links [src] into [dst], raising [Error]
  /external/tremolo/Tremolo/
vorbisfile.c 75 between links in the chain. */
217 first pages of two links. */
245 vf->links=m+1;
246 vf->offsets=_ogg_malloc((vf->links+1)*sizeof(*vf->offsets));
247 vf->serialnos=_ogg_malloc(vf->links*sizeof(*vf->serialnos));
377 watch out for missing information for links in the OggVorbis_File
384 vf->dataoffsets=_ogg_malloc(vf->links*sizeof(*vf->dataoffsets));
385 vf->pcmlengths=_ogg_malloc(vf->links*2*sizeof(*vf->pcmlengths));
387 for(i=0;i<vf->links;i++){
484 for(i=0;i<vf->links;i++
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/doc/docbook/
Makefile 26 rm -f manpage.links manpage.refs
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
media.h 70 __u16 links; member in struct:media_entity_desc
122 /* Should have enough room for links elements */
123 struct media_link_desc *links; member in struct:media_links_enum

Completed in 598 milliseconds

1 2 3 4 5 6 7 8 91011>>