Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/content/
DIntentFilter.java239 private ArrayList<PatternMatcher> mDataPaths = null; field in IntentFilter
400 if (o.mDataPaths != null) { in IntentFilter()
401 mDataPaths = new ArrayList<PatternMatcher>(o.mDataPaths); in IntentFilter()
790 if (mDataPaths == null) mDataPaths = new ArrayList<PatternMatcher>(); in addDataPath()
791 mDataPaths.add(new PatternMatcher(path.intern(), type)); in addDataPath()
798 return mDataPaths != null ? mDataPaths.size() : 0; in countDataPaths()
805 return mDataPaths.get(index); in getDataPath()
820 if (mDataPaths == null) { in hasDataPath()
823 final int numDataPaths = mDataPaths.size(); in hasDataPath()
825 final PatternMatcher pe = mDataPaths.get(i); in hasDataPath()
[all …]