Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/content/
DIntentFilter.java297 private ArrayList<String> mStaticDataTypes = null; field in IntentFilter
474 if (o.mStaticDataTypes != null) { in IntentFilter()
475 mStaticDataTypes = new ArrayList<String>(o.mStaticDataTypes); in IntentFilter()
832 if (mStaticDataTypes == null) { in addDataType()
833 mStaticDataTypes = new ArrayList<>(); in addDataType()
841 mStaticDataTypes.add(internalType.intern()); in addDataType()
914 if (mStaticDataTypes != null) { in clearDynamicDataTypes()
916 mDataTypes.addAll(mStaticDataTypes); in clearDynamicDataTypes()
929 return mStaticDataTypes != null ? mStaticDataTypes.size() : 0; in countStaticDataTypes()
957 return mStaticDataTypes != null && mStaticDataTypes.contains(type); in hasExactStaticDataType()
[all …]