Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/content/
DIntentFilter.java256 private ArrayList<PatternMatcher> mDataPaths = null; field in IntentFilter
420 if (o.mDataPaths != null) { in IntentFilter()
421 mDataPaths = new ArrayList<PatternMatcher>(o.mDataPaths); in IntentFilter()
950 if (mDataPaths == null) mDataPaths = new ArrayList<PatternMatcher>(); in addDataPath()
951 mDataPaths.add(path); in addDataPath()
958 return mDataPaths != null ? mDataPaths.size() : 0; in countDataPaths()
965 return mDataPaths.get(index); in getDataPath()
980 if (mDataPaths == null) { in hasDataPath()
983 final int numDataPaths = mDataPaths.size(); in hasDataPath()
985 final PatternMatcher pe = mDataPaths.get(i); in hasDataPath()
[all …]