Home
last modified time | relevance | path

Searched refs:SigMethod (Results 1 – 5 of 5) sorted by relevance

/cts/tools/signature-tools/src/signature/model/impl/
DSigMethod.java27 public class SigMethod extends SigExecutableMember implements IMethod, class
32 public SigMethod(String name) { in SigMethod() method in SigMethod
47 return SigMethod.toString(this); in toString()
/cts/tools/signature-tools/src/signature/compare/model/subst/
DMethodProjection.java22 import signature.model.impl.SigMethod;
46 return "(" + SigMethod.toString(this) + " : " + mappings + " )"; in toString()
/cts/tools/signature-tools/templates/model/
Dmodel.stg70 $SigMethod(element=element)$
73 SigMethod(element) ::= <<
/cts/tools/signature-tools/src/signature/converter/dex/
DDexToSigConverter.java82 import signature.model.impl.SigMethod;
370 Set<SigMethod> methods = Collections.emptySet(); in convertClass()
414 for (SigMethod method : methods) { in convertClass()
580 private Set<SigMethod> convertMethods(List<DexMethod> methods) { in convertMethods()
581 Set<SigMethod> sigMethods = new HashSet<SigMethod>(); in convertMethods()
674 public SigMethod convertMethod(DexMethod dexMethod) { in convertMethod()
675 SigMethod method = new SigMethod(dexMethod.getName()); in convertMethod()
/cts/tools/signature-tools/src/signature/converter/doclet/
DDocletToSigConverter.java58 import signature.model.impl.SigMethod;
499 private Stack<SigMethod> currentMethod = new Stack<SigMethod>();
502 SigMethod m = new SigMethod(method.name()); in convertMethod()