Lines Matching refs:an
3 This compares the set of classes, fields, and methods used by an Android
13 The dependency set for an APK can be generated with "dexdeps". It finds
92 the enumeration values. This makes it look like an APK is referring
95 If apkcheck sees a reference to an unknown field, and the field's defining
96 class appears to be an Enum (the superclass is java.lang.Enum), we emit
97 a warning instead of an error.
104 to verify that a method call on an annotation is valid.
106 If apkcheck sees a method call to an unknown method, and the class appears
107 to be an annotation (extends Object, implements Annotation, defines no
108 fields or methods), we emit a warning instead of an error.
118 gimmeFoo()" so long as MegaFoo is an instance of Foo. In that case it
122 If apkcheck can't find an exact match for a method reference, but can
124 emit a warning instead of an error. (We could be more thorough and try
170 to by application code. For example, an opaque type might be passed to
177 If an APK refers to a non-public class, but doesn't access any fields
178 or methods, a warning is emitted instead of an error.