Lines Matching refs:mConstants
71 Type mConstants[]; field in Program
88 return mConstants != null ? mConstants.length : 0; in getConstantCount()
99 if (slot < 0 || slot >= mConstants.length) { in getConstant()
102 return mConstants[slot]; in getConstant()
147 if (slot < 0 || slot >= mConstants.length) { in bindConstants()
151 a.getType().getID(mRS) != mConstants[slot].getID(mRS)) { in bindConstants()
205 Type mConstants[]; field in Program.BaseProgramBuilder
220 mConstants = new Type[MAX_CONSTANT]; in BaseProgramBuilder()
317 mConstants[mConstantCount] = t; in addConstant()
359 p.mConstants = new Type[mConstantCount]; in initProgram()
360 System.arraycopy(mConstants, 0, p.mConstants, 0, mConstantCount); in initProgram()