Lines Matching refs:mAdaptedAllocation

28         mAdaptedAllocation = alloc;  in AllocationAdapter()
44 int tx = mAdaptedAllocation.mType.getX(); in initLOD()
45 int ty = mAdaptedAllocation.mType.getY(); in initLOD()
46 int tz = mAdaptedAllocation.mType.getZ(); in initLOD()
104 if (!mAdaptedAllocation.getType().hasMipmaps()) { in setLOD()
123 if (!mAdaptedAllocation.getType().hasFaces()) { in setFace()
146 if (mAdaptedAllocation.getType().getX() <= x) { in setX()
149 if (mWindow.getX() == mAdaptedAllocation.getType().getX()) { in setX()
152 if ((mWindow.getX() + x) >= mAdaptedAllocation.getType().getX()) { in setX()
168 if (mAdaptedAllocation.getType().getY() == 0) { in setY()
171 if (mAdaptedAllocation.getType().getY() <= y) { in setY()
174 if (mWindow.getY() == mAdaptedAllocation.getType().getY()) { in setY()
177 if ((mWindow.getY() + y) >= mAdaptedAllocation.getType().getY()) { in setY()
193 if (mAdaptedAllocation.getType().getZ() == 0) { in setZ()
196 if (mAdaptedAllocation.getType().getZ() <= z) { in setZ()
199 if (mWindow.getZ() == mAdaptedAllocation.getType().getZ()) { in setZ()
202 if ((mWindow.getZ() + z) >= mAdaptedAllocation.getType().getZ()) { in setZ()
214 if (mAdaptedAllocation.getType().getArray(arrayNum) == 0) { in setArray()
217 if (mAdaptedAllocation.getType().getArray(arrayNum) <= arrayVal) { in setArray()
220 if (mWindow.getArray(arrayNum) == mAdaptedAllocation.getType().getArray(arrayNum)) { in setArray()
223 … if ((mWindow.getArray(arrayNum) + arrayVal) >= mAdaptedAllocation.getType().getArray(arrayNum)) { in setArray()
269 if (a.mAdaptedAllocation != null) { in createTyped()