Lines Matching refs:mConstants
71 Type mConstants[]; field in Program
87 return mConstants != null ? mConstants.length : 0; in getConstantCount()
98 if (slot < 0 || slot >= mConstants.length) { in getConstant()
101 return mConstants[slot]; in getConstant()
146 if (slot < 0 || slot >= mConstants.length) { in bindConstants()
150 a.getType().getID(mRS) != mConstants[slot].getID(mRS)) { in bindConstants()
204 Type mConstants[]; field in Program.BaseProgramBuilder
219 mConstants = new Type[MAX_CONSTANT]; in BaseProgramBuilder()
316 mConstants[mConstantCount] = t; in addConstant()
358 p.mConstants = new Type[mConstantCount]; in initProgram()
359 System.arraycopy(mConstants, 0, p.mConstants, 0, mConstantCount); in initProgram()