HomeSort by relevance Sort by last modified time
    Searched refs:SigMethod (Results 1 - 4 of 4) sorted by null

  /cts/tools/signature-tools/src/signature/compare/model/subst/
MethodProjection.java 22 import signature.model.impl.SigMethod;
46 return "(" + SigMethod.toString(this) + " : " + mappings + " )";
  /cts/tools/signature-tools/src/signature/model/impl/
SigMethod.java 27 public class SigMethod extends SigExecutableMember implements IMethod,
32 public SigMethod(String name) {
47 return SigMethod.toString(this);
  /cts/tools/signature-tools/src/signature/converter/dex/
DexToSigConverter.java 82 import signature.model.impl.SigMethod;
370 Set<SigMethod> methods = Collections.emptySet();
414 for (SigMethod method : methods) {
580 private Set<SigMethod> convertMethods(List<DexMethod> methods) {
581 Set<SigMethod> sigMethods = new HashSet<SigMethod>();
674 public SigMethod convertMethod(DexMethod dexMethod) {
675 SigMethod method = new SigMethod(dexMethod.getName());
    [all...]
  /cts/tools/signature-tools/src/signature/converter/doclet/
DocletToSigConverter.java 58 import signature.model.impl.SigMethod;
499 private Stack<SigMethod> currentMethod = new Stack<SigMethod>();
502 SigMethod m = new SigMethod(method.name());

Completed in 282 milliseconds