Home
last modified time | relevance | path

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

/constraintlayout/constraintlayout-core/src/main/java/androidx/constraintlayout/core/motion/utils/
DTypedBundle.java27 int[] mTypeInt = new int[INITIAL_INT]; field in TypedBundle
43 if (mTypeInt[i] == type) { in getInteger()
52 if (mCountInt >= mTypeInt.length) { in add()
53 mTypeInt = Arrays.copyOf(mTypeInt, mTypeInt.length * 2); in add()
56 mTypeInt[mCountInt] = type; in add()
100 values.setValue(mTypeInt[i], mValueInt[i]); in applyDelta()
116 values.add(mTypeInt[i], mValueInt[i]); in applyDelta()
/constraintlayout/constraintlayout/src/main/java/androidx/constraintlayout/widget/
DConstraintSet.java2135 int[] mTypeInt = new int[INITIAL_INT]; field in ConstraintSet.Constraint.Delta
2140 if (mCountInt >= mTypeInt.length) { in add()
2141 mTypeInt = Arrays.copyOf(mTypeInt, mTypeInt.length * 2); in add()
2144 mTypeInt[mCountInt] = type; in add()
2189 setDeltaValue(c, mTypeInt[i], mValueInt[i]); in applyDelta()
2207 Log.v(tag, mTypeInt[i] + " = " + mValueInt[i]); in printDelta()