Lines Matching refs:mConstants
77 Type mConstants[]; field in Program
94 return mConstants != null ? mConstants.length : 0; in getConstantCount()
105 if (slot < 0 || slot >= mConstants.length) { in getConstant()
108 return mConstants[slot]; in getConstant()
153 if (slot < 0 || slot >= mConstants.length) { in bindConstants()
157 a.getType().getID(mRS) != mConstants[slot].getID(mRS)) { in bindConstants()
215 Type mConstants[]; field in Program.BaseProgramBuilder
236 mConstants = new Type[MAX_CONSTANT]; in BaseProgramBuilder()
333 mConstants[mConstantCount] = t; in addConstant()
375 p.mConstants = new Type[mConstantCount]; in initProgram()
376 System.arraycopy(mConstants, 0, p.mConstants, 0, mConstantCount); in initProgram()