Home
last modified time | relevance | path

Searched refs:Match (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/packages/Osu/src/com/android/hotspot2/pps/
DDomainMatcher.java14 public enum Match {None, Primary, Secondary} enum in DomainMatcher
20 private final Match mMatch;
22 private Label(Match match) { in Label()
24 mSubDomains = match == Match.None ? new HashMap<String, Label>() : null; in Label()
27 private void addDomain(Iterator<String> labels, Match match) { in addDomain()
30 Label subLabel = new Label(Match.None); in addDomain()
42 public Match getMatch() { in getMatch()
68 mRoot = new Label(Match.None); in DomainMatcher()
70 mRoot.addDomain(secondaryLabel.iterator(), Match.Secondary); in DomainMatcher()
73 mRoot.addDomain(primary.iterator(), Match.Primary); in DomainMatcher()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/pps/
DDomainMatcher.java17 public enum Match {None, Primary, Secondary} enum in DomainMatcher
23 private final Match mMatch;
25 private Label(Match match) { in Label()
27 mSubDomains = match == Match.None ? new HashMap<String, Label>() : null; in Label()
30 private void addDomain(Iterator<String> labels, Match match) { in addDomain()
33 Label subLabel = new Label(Match.None); in addDomain()
45 public Match getMatch() { in getMatch()
71 mRoot = new Label(Match.None); in DomainMatcher()
73 mRoot.addDomain(secondaryLabel.iterator(), Match.Secondary); in DomainMatcher()
76 mRoot.addDomain(primary.iterator(), Match.Primary); in DomainMatcher()
[all …]
DHomeSP.java257 DomainMatcher.Match match = mDomainMatcher.isSubDomain(anLabels); in matchSP()
258 if (match != DomainMatcher.Match.None) { in matchSP()
/frameworks/base/docs/html/training/contacts-provider/
Dindex.jd67 <li>Match by contact name</li>
68 <li>Match any type of contact data</li>
69 <li>Match a specific type of contact data, such as a phone number</li>
Dretrieve-names.jd13 <li><a href="#NameMatch">Match a Contact by Name and List the Results</a></li>
14 <li><a href="#TypeMatch">Match a Contact By a Specific Type of Data</a></li>
15 <li><a href="#GeneralMatch">Match a Contact By Any Type of Data</a></li>
53 <dt>Match contact names</dt>
59 <dt>Match a specific type of data, such as a phone number</dt>
65 <dt>Match any type of data</dt>
94 <h2 id="NameMatch">Match a Contact by Name and List the Results</h2>
520 <h2 id="TypeMatch">Match a Contact By a Specific Type of Data</h2>
714 <h2 id="GeneralMatch">Match a Contact By Any Type of Data</h2>
755 <a href="#NameMatch">Match a Contact by Name and List the Results</a>. Use the
/frameworks/base/docs/html/guide/topics/text/
Dcopy-paste.jd877 // A Uri Match object that simplifies matching content URIs to patterns.