Searched refs:FoundFieldSubject (Results 1 – 2 of 2) sorted by relevance
274 public abstract void forAllFields(Consumer<FoundFieldSubject> inspection); in forAllFields()316 public void forAllFields(Consumer<FoundFieldSubject> inspection) { in forAllFields()412 public void forAllFields(Consumer<FoundFieldSubject> inspection) { in forAllFields()413 forAll(dexClass.staticFields(), FoundFieldSubject::new, this, inspection); in forAllFields()414 forAll(dexClass.instanceFields(), FoundFieldSubject::new, this, inspection); in forAllFields()433 return encoded == null ? new AbsentFieldSubject() : new FoundFieldSubject(encoded, this); in field()725 public class FoundFieldSubject extends FieldSubject { class in DexInspector730 public FoundFieldSubject(DexEncodedField dexField, FoundClassSubject clazz) { in FoundFieldSubject() method in DexInspector.FoundFieldSubject
22 import com.android.tools.r8.utils.DexInspector.FoundFieldSubject;510 private static void checkSameStructure(FoundFieldSubject refField, ClassSubject clazz) { in checkSameStructure()