Searched refs:instanceMethod (Results 1 – 13 of 13) sorted by relevance
23 import static com.google.errorprone.matchers.Matchers.instanceMethod;56 instanceMethod().onExactClass("android.os.Parcel").named("writeString"));58 instanceMethod().onExactClass("android.os.Parcel").named("writeStringArray"));61 instanceMethod().onExactClass("android.os.Parcel").named("writeValue"));63 instanceMethod().onExactClass("android.os.Parcel").named("writeParcelable"));66 instanceMethod().onExactClass("android.os.Parcel").named("writeList"));68 instanceMethod().onExactClass("android.os.Parcel").named("writeParcelableList"));70 instanceMethod().onExactClass("android.os.Parcel").named("writeParcelableArray"));
23 import static com.google.errorprone.matchers.Matchers.instanceMethod;53 instanceMethod()57 instanceMethod()61 instanceMethod()65 instanceMethod()
24 import static com.google.errorprone.matchers.Matchers.instanceMethod;63 instanceMethod().onDescendantOf("android.os.IInterface").withAnyName());65 instanceMethod().onExactClass("android.app.admin.DevicePolicyManager")67 instanceMethod().onExactClass("android.content.pm.ShortcutManager")69 instanceMethod().onDescendantOf("android.content.Context")
24 import static com.google.errorprone.matchers.Matchers.instanceMethod;71 instanceMethod().onDescendantOf("android.os.IInterface").withAnyName(),72 not(instanceMethod().onClass(inPackage("com.android.internal.telephony"))),73 not(instanceMethod().onClass(inPackage("com.android.internal.telecom")))));78 methodInvocation(instanceMethod().onExactClass("android.os.RemoteException")
21 import static com.google.errorprone.matchers.Matchers.instanceMethod;85 methodInvocation(instanceMethod().onExactClass(INTEGER).named("toString")),86 methodInvocation(instanceMethod().onExactClass(LONG).named("toString")),87 methodInvocation(instanceMethod().onExactClass(FLOAT).named("toString")),88 methodInvocation(instanceMethod().onExactClass(DOUBLE).named("toString")),89 methodInvocation(instanceMethod().onExactClass(BOOLEAN).named("toString")));126 instanceMethod().onDescendantOf("org.xmlpull.v1.XmlSerializer")130 instanceMethod().onDescendantOf("org.xmlpull.v1.XmlPullParser")139 methodInvocation(instanceMethod().onDescendantOf("java.util.Base64.Encoder")149 methodInvocation(instanceMethod().onDescendantOf("java.util.Base64.Decoder")
23 import static com.google.errorprone.matchers.Matchers.instanceMethod;86 instanceMethod()122 instanceMethod()126 instanceMethod()131 instanceMethod().onDescendantOf("android.content.Intent").named("setAction"));
24 import static com.google.errorprone.matchers.Matchers.instanceMethod;77 instanceMethod().onExactClass("java.lang.StringBuilder")
30 private InstanceMethod(final Class<?> receiverClass, final Method instanceMethod, in InstanceMethod() argument32 this.defined = instanceMethod != null; in InstanceMethod()34 this.method = instanceMethod; in InstanceMethod()
46 Matchers.instanceMethod().onExactClass("java.lang.String").named("equals");48 Matchers.instanceMethod().onExactClass("java.lang.String").named("startsWith");50 Matchers.instanceMethod().onExactClass("java.lang.String").named("regionMatches");
41 Matchers.instanceMethod().onExactClass("java.lang.String").named("toUpperCase");43 Matchers.instanceMethod().onExactClass("java.lang.String").named("toLowerCase");
31 a = staticMain.instanceMethod(1, 2, 3, 4, 5, 6, 7, 8, 9, 10); in main()54 public int instanceMethod(int a, int b, int c, int d, int e, int f, int g, int h, int i, int j) { in instanceMethod() method in Main
58 new Main().instanceMethod(); in main()61 public void instanceMethod() { in instanceMethod() method in Main
22 private void instanceMethod() { in instanceMethod() method in Instrumentation