Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/content/
DIntentFilter.java346 private ArrayList<String> mStaticDataTypes = null; field in IntentFilter
524 if (o.mStaticDataTypes != null) { in IntentFilter()
525 mStaticDataTypes = new ArrayList<String>(o.mStaticDataTypes); in IntentFilter()
927 if (mStaticDataTypes == null) { in addDataType()
928 mStaticDataTypes = new ArrayList<>(); in addDataType()
936 mStaticDataTypes.add(internalType.intern()); in addDataType()
1009 if (mStaticDataTypes != null) { in clearDynamicDataTypes()
1011 mDataTypes.addAll(mStaticDataTypes); in clearDynamicDataTypes()
1024 return mStaticDataTypes != null ? mStaticDataTypes.size() : 0; in countStaticDataTypes()
1052 return mStaticDataTypes != null && mStaticDataTypes.contains(type); in hasExactStaticDataType()
[all …]