Lines Matching refs:methods
369 // methods
370 Set<SigMethod> methods = Collections.emptySet();
404 methods = convertMethods(dexClass.getMethods());
411 methods = convertMethods(dexClass.getMethods());
414 for (SigMethod method : methods) {
417 sigClass.setMethods(new HashSet<IMethod>(methods));
451 private void addAnnotationsToAnnotationFields(List<DexMethod> methods,
461 for (DexMethod method : methods) {
555 * {@link IConstructor}. This method ignores methods which are not
558 * @param methods
562 private Set<SigConstructor> convertConstructors(List<DexMethod> methods) {
564 for (DexMethod method : methods) {
574 * {@link DexMethod}. This method ignores methods which are constructors.
576 * @param methods
580 private Set<SigMethod> convertMethods(List<DexMethod> methods) {
582 for (DexMethod method : methods) {