Searched refs:FoundMethodSubject (Results 1 – 3 of 3) sorted by relevance
258 public abstract void forAllMethods(Consumer<FoundMethodSubject> inspection); in forAllMethods()282 forAllMethods((FoundMethodSubject method) -> in dumpMethods()307 public void forAllMethods(Consumer<FoundMethodSubject> inspection) { in forAllMethods()371 public void forAllMethods(Consumer<FoundMethodSubject> inspection) { in forAllMethods()372 forAll(dexClass.directMethods(), FoundMethodSubject::new, this, inspection); in forAllMethods()373 forAll(dexClass.virtualMethods(), FoundMethodSubject::new, this, inspection); in forAllMethods()399 return encoded == null ? new AbsentMethodSubject() : new FoundMethodSubject(encoded, this); in method()592 public class FoundMethodSubject extends MethodSubject { class in DexInspector597 public FoundMethodSubject(DexEncodedMethod encoded, FoundClassSubject clazz) { in FoundMethodSubject() method in DexInspector.FoundMethodSubject
18 import com.android.tools.r8.utils.DexInspector.FoundMethodSubject;68 TestRunner withMethodCheck(Consumer<FoundMethodSubject> check) { in withMethodCheck()
23 import com.android.tools.r8.utils.DexInspector.FoundMethodSubject;503 private static void checkSameStructure(FoundMethodSubject refMethod, ClassSubject clazz) { in checkSameStructure()