Searched defs:links (Results 1 - 5 of 5) sorted by relevance

/frameworks/support/compat/java/android/support/v4/text/util/
H A DLinkifyCompat.java88 * of the link types indicated in the mask into clickable links.
93 * @param text Spannable whose text is to be marked-up with links
94 * @param mask Mask to define which kinds of links will be searched.
115 ArrayList<LinkSpec> links = new ArrayList<LinkSpec>();
118 gatherLinks(links, text, PatternsCompat.AUTOLINK_WEB_URL,
124 gatherLinks(links, text, PatternsCompat.AUTOLINK_EMAIL_ADDRESS,
130 gatherMapLinks(links, text);
133 pruneOverlaps(links, text);
135 if (links.size() == 0) {
139 for (LinkSpec link: links) {
382 gatherLinks(ArrayList<LinkSpec> links, Spannable s, Pattern pattern, String[] schemes, Linkify.MatchFilter matchFilter, Linkify.TransformFilter transformFilter) argument
410 gatherMapLinks(ArrayList<LinkSpec> links, Spannable s) argument
451 pruneOverlaps(ArrayList<LinkSpec> links, Spannable text) argument
[all...]
/frameworks/base/core/java/android/text/util/
H A DLinkify.java52 * regex matches in the text into clickable links. This is particularly
213 * of the link types indicated in the mask into clickable links.
218 * @param text Spannable whose text is to be marked-up with links
219 * @param mask Mask to define which kinds of links will be searched.
234 ArrayList<LinkSpec> links = new ArrayList<LinkSpec>();
237 gatherLinks(links, text, Patterns.AUTOLINK_WEB_URL,
243 gatherLinks(links, text, Patterns.AUTOLINK_EMAIL_ADDRESS,
249 gatherTelLinks(links, text);
253 gatherMapLinks(links, text);
256 pruneOverlaps(links);
509 gatherLinks(ArrayList<LinkSpec> links, Spannable s, Pattern pattern, String[] schemes, MatchFilter matchFilter, TransformFilter transformFilter) argument
531 gatherTelLinks(ArrayList<LinkSpec> links, Spannable s) argument
544 gatherMapLinks(ArrayList<LinkSpec> links, Spannable s) argument
585 pruneOverlaps(ArrayList<LinkSpec> links) argument
[all...]
/frameworks/native/libs/vr/libpdx_uds/
H A Dipc_helper.cpp432 size_t links = 0; local
434 while (pos < separators.size() && links <= MAXSYMLINKS) {
455 links = 0;
502 links = 0;
525 links++;
527 } // while (pos < separators.size() && links <= MAXSYMLINKS)
/frameworks/base/core/java/android/widget/
H A DGridLayout.java1346 private void computeLinks(PackedMap<Interval, MutableInt> links, boolean min) { argument
1347 MutableInt[] spans = links.values;
1356 MutableInt valueHolder = links.getValue(i);
1387 Remove self referential links.
1477 private void addComponentSizes(List<Arc> result, PackedMap<Interval, MutableInt> links) { argument
1478 for (int i = 0; i < links.keys.length; i++) {
1479 Interval key = links.keys[i];
1480 include(result, key, links.values[i], false);
1515 // getting the links validates the values that are shared by the arc list
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java1237 private void computeLinks(PackedMap<Interval, MutableInt> links, boolean min) { argument
1238 MutableInt[] spans = links.values;
1247 MutableInt valueHolder = links.getValue(i);
1278 Remove self referential links.
1368 private void addComponentSizes(List<Arc> result, PackedMap<Interval, MutableInt> links) { argument
1369 for (int i = 0; i < links.keys.length; i++) {
1370 Interval key = links.keys[i];
1371 include(result, key, links.values[i], false);
1406 // getting the links validates the values that are shared by the arc list

Completed in 695 milliseconds