Searched refs:mTypeSet (Results 1 – 2 of 2) sorted by relevance
57 @Nullable public @TransitionType int[] mTypeSet = null; field in TransitionFilter74 mTypeSet = in.createIntArray(); in TransitionFilter()82 if (mTypeSet != null) { in matches()85 for (int i = 0; i < mTypeSet.length; ++i) { in matches()86 if (info.getType() == mTypeSet[i]) { in matches()114 dest.writeIntArray(mTypeSet); in writeToParcel()144 if (mTypeSet != null) { in toString()145 for (int i = 0; i < mTypeSet.length; ++i) { in toString()146 sb.append((i == 0 ? "" : ",") + WindowManager.transitTypeToString(mTypeSet[i])); in toString()
365 filter.mTypeSet = new int[]{TRANSIT_OPEN, TRANSIT_TO_FRONT}; in testTransitionFilterChecksTypeSet()