Searched refs:links (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/text/util/
H A DLinkify.java46 * 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>();
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) {
428 gatherLinks(ArrayList<LinkSpec> links, Spannable s, Pattern pattern, String[] schemes, MatchFilter matchFilter, TransformFilter transformFilter) argument
450 gatherTelLinks(ArrayList<LinkSpec> links, Spannable s) argument
463 gatherMapLinks(ArrayList<LinkSpec> links, Spannable s) argument
497 pruneOverlaps(ArrayList<LinkSpec> links) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DGridLayout.java1340 private void computeLinks(PackedMap<Interval, MutableInt> links, boolean min) { argument
1341 MutableInt[] spans = links.values;
1350 MutableInt valueHolder = links.getValue(i);
1381 Remove self referential links.
1471 private void addComponentSizes(List<Arc> result, PackedMap<Interval, MutableInt> links) { argument
1472 for (int i = 0; i < links.keys.length; i++) {
1473 Interval key = links.keys[i];
1474 include(result, key, links.values[i], false);
1509 // getting the links validates the values that are shared by the arc list
H A DTextView.java2804 * set to nonzero and links are detected in {@link #setText}.
2817 * set to nonzero and links are detected in {@link #setText}.
2896 * Sets the color of links in the text.
2910 * Sets the color of links in the text.
2925 * @return the list of colors used to paint the links in the text, for the different states of
7718 // The LinkMovementMethod which should handle taps on links has not been installed
7720 // We reproduce its behavior here to open links for these.
7721 ClickableSpan[] links = ((Spannable) mText).getSpans(getSelectionStart(),
7724 if (links.length > 0) {
7725 links[
[all...]
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java1229 private void computeLinks(PackedMap<Interval, MutableInt> links, boolean min) { argument
1230 MutableInt[] spans = links.values;
1239 MutableInt valueHolder = links.getValue(i);
1270 Remove self referential links.
1360 private void addComponentSizes(List<Arc> result, PackedMap<Interval, MutableInt> links) { argument
1361 for (int i = 0; i < links.keys.length; i++) {
1362 Interval key = links.keys[i];
1363 include(result, key, links.values[i], false);
1398 // getting the links validates the values that are shared by the arc list

Completed in 222 milliseconds