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
202 * of the link types indicated in the mask into clickable links.
218 ArrayList<LinkSpec> links = new ArrayList<LinkSpec>();
221 gatherLinks(links, text, Patterns.WEB_URL,
227 gatherLinks(links, text, Patterns.EMAIL_ADDRESS,
233 gatherTelLinks(links, text);
237 gatherMapLinks(links, text);
240 pruneOverlaps(links);
242 if (links.size() == 0) {
246 for (LinkSpec link: links) {
431 gatherLinks(ArrayList<LinkSpec> links, Spannable s, Pattern pattern, String[] schemes, MatchFilter matchFilter, TransformFilter transformFilter) argument
453 gatherTelLinks(ArrayList<LinkSpec> links, Spannable s) argument
466 gatherMapLinks(ArrayList<LinkSpec> links, Spannable s) argument
507 pruneOverlaps(ArrayList<LinkSpec> links) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DGridLayout.java1330 private void computeLinks(PackedMap<Interval, MutableInt> links, boolean min) { argument
1331 MutableInt[] spans = links.values;
1340 MutableInt valueHolder = links.getValue(i);
1371 Remove self referential links.
1461 private void addComponentSizes(List<Arc> result, PackedMap<Interval, MutableInt> links) { argument
1462 for (int i = 0; i < links.keys.length; i++) {
1463 Interval key = links.keys[i];
1464 include(result, key, links.values[i], false);
1499 // getting the links validates the values that are shared by the arc list
H A DTextView.java3319 * set to nonzero and links are detected in {@link #setText}.
3332 * set to nonzero and links are detected in {@link #setText}.
3412 * Sets the color of links in the text.
3426 * Sets the color of links in the text.
3441 * @return the list of colors used to paint the links in the text, for the different states of
8333 // The LinkMovementMethod which should handle taps on links has not been installed
8335 // We reproduce its behavior here to open links for these.
8336 ClickableSpan[] links = ((Spannable) mText).getSpans(getSelectionStart(),
8339 if (links.length > 0) {
8340 links[
[all...]
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java1225 private void computeLinks(PackedMap<Interval, MutableInt> links, boolean min) { argument
1226 MutableInt[] spans = links.values;
1235 MutableInt valueHolder = links.getValue(i);
1266 Remove self referential links.
1356 private void addComponentSizes(List<Arc> result, PackedMap<Interval, MutableInt> links) { argument
1357 for (int i = 0; i < links.keys.length; i++) {
1358 Interval key = links.keys[i];
1359 include(result, key, links.values[i], false);
1394 // getting the links validates the values that are shared by the arc list

Completed in 114 milliseconds