Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/content/
DIntentFilter.java273 private ArrayList<PatternMatcher> mDataPaths = null; field in IntentFilter
444 if (o.mDataPaths != null) { in IntentFilter()
445 mDataPaths = new ArrayList<PatternMatcher>(o.mDataPaths); in IntentFilter()
1133 if (mDataPaths == null) mDataPaths = new ArrayList<PatternMatcher>(); in addDataPath()
1134 mDataPaths.add(path); in addDataPath()
1141 return mDataPaths != null ? mDataPaths.size() : 0; in countDataPaths()
1148 return mDataPaths.get(index); in getDataPath()
1163 if (mDataPaths == null) { in hasDataPath()
1166 final int numDataPaths = mDataPaths.size(); in hasDataPath()
1168 final PatternMatcher pe = mDataPaths.get(i); in hasDataPath()
[all …]