HomeSort by relevance Sort by last modified time
    Searched refs:mSubDomains (Results 1 - 2 of 2) sorted by null

  /frameworks/base/packages/Osu/src/com/android/hotspot2/pps/
DomainMatcher.java 19 private final Map<String, Label> mSubDomains;
24 mSubDomains = match == Match.None ? new HashMap<String, Label>() : null;
31 mSubDomains.put(labelName, subLabel);
34 mSubDomains.put(labelName, new Label(match));
39 return mSubDomains.get(labelString);
47 if (mSubDomains != null) {
49 for (Map.Entry<String, Label> entry : mSubDomains.entrySet()) {
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/pps/
DomainMatcher.java 22 private final Map<String, Label> mSubDomains;
27 mSubDomains = match == Match.None ? new HashMap<String, Label>() : null;
34 mSubDomains.put(labelName, subLabel);
37 mSubDomains.put(labelName, new Label(match));
42 return mSubDomains.get(labelString);
50 if (mSubDomains != null) {
52 for (Map.Entry<String, Label> entry : mSubDomains.entrySet()) {

Completed in 42 milliseconds