Searched defs:Match (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/tools/aapt2/filter/
H A DConfigFilter.cpp78 bool AxisConfigFilter::Match(const ConfigDescription& config) const { function in class:aapt::AxisConfigFilter
/frameworks/base/packages/Osu/src/com/android/hotspot2/pps/
H A DDomainMatcher.java14 public enum Match {None, Primary, Secondary} enum in class:DomainMatcher
20 private final Match mMatch;
22 private Label(Match match) {
24 mSubDomains = match == Match.None ? new HashMap<String, Label>() : null;
27 private void addDomain(Iterator<String> labels, Match match) {
30 Label subLabel = new Label(Match.None);
42 public Match getMatch() {
68 mRoot = new Label(Match.None);
70 mRoot.addDomain(secondaryLabel.iterator(), Match.Secondary);
73 mRoot.addDomain(primary.iterator(), Match
[all...]

Completed in 90 milliseconds