Searched defs:mTargetTypes (Results 1 - 2 of 2) sorted by last modified time

/frameworks/support/transition/src/android/support/transition/
H A DTransition.java187 private ArrayList<Class> mTargetTypes = null; field in class:Transition
834 && (mTargetTypes == null || mTargetTypes.isEmpty())
844 if (mTargetTypes != null) {
845 for (int i = 0; i < mTargetTypes.size(); ++i) {
846 if (mTargetTypes.get(i).isInstance(target)) {
1075 if (mTargetTypes == null) {
1076 mTargetTypes = new ArrayList<>();
1078 mTargetTypes.add(targetType);
1146 if (mTargetTypes !
[all...]
/frameworks/base/core/java/android/transition/
H A DTransition.java184 ArrayList<Class> mTargetTypes = null; field in class:Transition
831 (mTargetTypes == null || mTargetTypes.isEmpty()) &&
841 if (mTargetTypes != null) {
842 for (int i = 0; i < mTargetTypes.size(); ++i) {
843 if (mTargetTypes.get(i).isInstance(target)) {
1039 if (mTargetTypes == null) {
1040 mTargetTypes = new ArrayList<Class>();
1042 mTargetTypes.add(targetType);
1347 mTargetTypes
[all...]

Completed in 13 milliseconds