Home | History | Annotate | Download | only in program

Lines Matching refs:fieldId

153     for (FieldIdItem fieldId : rawDexFile.fieldIds) {
154 if (classIdx < fieldId.classIdx) {
157 if (classIdx == fieldId.classIdx && nameIdx < fieldId.nameIdx) {
160 if (classIdx == fieldId.classIdx && nameIdx == fieldId.nameIdx
161 && typeIdx < fieldId.typeIdx) {
470 for (FieldIdItem fieldId : rawDexFile.fieldIds) {
471 if (classIdx == fieldId.classIdx
472 && typeIdx == fieldId.typeIdx
473 && nameIdx == fieldId.nameIdx) {
483 * either find the FieldId in our DEX file's table, or create it.