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

/frameworks/support/transition/src/android/support/transition/
H A DTransition.java186 private ArrayList<String> mTargetNames = null; field in class:Transition
835 && (mTargetNames == null || mTargetNames.isEmpty())) {
841 if (mTargetNames != null && mTargetNames.contains(ViewCompat.getTransitionName(target))) {
1045 if (mTargetNames == null) {
1046 mTargetNames = new ArrayList<>();
1048 mTargetNames.add(targetName);
1128 if (mTargetNames != null) {
1129 mTargetNames
[all...]
/frameworks/base/core/java/android/transition/
H A DTransition.java183 ArrayList<String> mTargetNames = null; field in class:Transition
832 (mTargetNames == null || mTargetNames.isEmpty())) {
838 if (mTargetNames != null && mTargetNames.contains(target.getTransitionName())) {
1007 if (mTargetNames == null) {
1008 mTargetNames = new ArrayList<String>();
1010 mTargetNames.add(targetName);
1075 if (targetName != null && mTargetNames != null) {
1076 mTargetNames
[all...]

Completed in 128 milliseconds