Searched refs:IMethod (Results 1 – 15 of 15) sorted by relevance
/cts/tools/signature-tools/src/signature/compare/model/impl/ |
D | SigMethodDelta.java | 21 import signature.model.IMethod; 23 public class SigMethodDelta extends SigExecutableMemberDelta<IMethod> implements 28 public SigMethodDelta(IMethod from, IMethod to) { in SigMethodDelta()
|
/cts/tools/signature-tools/src/signature/compare/model/subst/ |
D | MethodProjection.java | 19 import signature.model.IMethod; 27 IMethod { 29 private final IMethod original; 32 public MethodProjection(IMethod original, in MethodProjection()
|
D | ClassProjection.java | 31 import signature.model.IMethod; 101 Set<IMethod> methods = null; 103 public Set<IMethod> getMethods() { in getMethods() 105 Set<IMethod> originalMethods = original.getMethods(); in getMethods() 109 methods = new HashSet<IMethod>(); in getMethods() 110 for (IMethod m : original.getMethods()) { in getMethods()
|
/cts/tools/signature-tools/test/signature/converter/ |
D | ConvertEnumTest.java | 42 import signature.model.IMethod; 131 Set<IMethod> methods = c.getMethods(); in testEnum3() 133 Map<String, IMethod> map = new HashMap<String, IMethod>(); in testEnum3() 134 for(IMethod m : methods){ in testEnum3() 138 IMethod values = map.get("values"); in testEnum3() 147 IMethod valueOf = map.get("valueOf"); in testEnum3() 174 Set<IMethod> methods = c.getMethods(); in testEnum4() 176 Map<String, IMethod> map = new HashMap<String, IMethod>(); in testEnum4() 177 for(IMethod m : methods){ in testEnum4() 181 IMethod values = map.get("values"); in testEnum4()
|
D | ConvertVisibilityTest.java | 32 import signature.model.IMethod; 52 Set<IMethod> methods = c.getMethods(); in testVisibilityMethods1() 70 Set<IMethod> methods = c.getMethods(); in testVisibilityMethods2() 88 Set<IMethod> methods = c.getMethods(); in testVisibilityMethods3() 106 Set<IMethod> methods = c.getMethods(); in testVisibilityMethods4()
|
D | ConvertClassTest.java | 41 import signature.model.IMethod; 454 IMethod method = sigClass.getMethods().iterator().next(); in convertVoidMethod() 467 IMethod method = sigClass.getMethods().iterator().next(); in convertArrayMethod() 525 IMethod sigMethod = sigClass.getMethods().iterator().next(); in testParameterConformance2()
|
/cts/tools/signature-tools/src/signature/compare/model/ |
D | IMethodDelta.java | 19 import signature.model.IMethod; 25 public interface IMethodDelta extends IExecutableMemberDelta<IMethod> {
|
/cts/tools/signature-tools/src/signature/model/impl/ |
D | SigMethod.java | 21 import signature.model.IMethod; 27 public class SigMethod extends SigExecutableMember implements IMethod, 50 public static String toString(IMethod method) { in toString()
|
D | SigClassDefinition.java | 29 import signature.model.IMethod; 45 private Set<IMethod> methods = Uninitialized.unset(); 109 public Set<IMethod> getMethods() { in getMethods() 113 public void setMethods(Set<IMethod> methods) { in setMethods()
|
/cts/tools/signature-tools/src/signature/model/ |
D | IMethod.java | 24 public interface IMethod extends IExecutableMember { interface
|
D | IClassDefinition.java | 100 Set<IMethod> getMethods(); in getMethods()
|
/cts/tools/signature-tools/src/signature/compare/ |
D | ApiComparator.java | 77 import signature.model.IMethod; 465 Set<IMethod> toMethods = new HashSet<IMethod>(to.getMethods()); 466 Set<IMethod> toClosure = getMethodClosure(to); 467 Set<IMethod> fromMethods = new HashSet<IMethod>(from.getMethods()); 468 Set<IMethod> fromClosure = getMethodClosure(from); 472 for (IMethod method : fromMethods) { 473 IMethod compatibleMethod = findCompatibleMethod(method, toMethods); 489 for (IMethod method : toMethods) { 490 IMethod compatibleMethod = findCompatibleMethod(method, fromMethods); 501 private IMethod findCompatibleMethod(IMethod method, Set<IMethod> set) { [all …]
|
/cts/tools/signature-tools/src/signature/converter/dex/ |
D | GenericSignatureParser.java | 25 import signature.model.IMethod; 211 public void parseForMethod(IMethod genericDecl, String signature) { in parseForMethod()
|
D | DexToSigConverter.java | 65 import signature.model.IMethod; 417 sigClass.setMethods(new HashSet<IMethod>(methods)); in convertClass()
|
/cts/tools/signature-tools/src/signature/converter/doclet/ |
D | DocletToSigConverter.java | 40 import signature.model.IMethod; 184 Set<IMethod> methods = new HashSet<IMethod>(); in convertClass() 501 private IMethod convertMethod(MethodDoc method) { in convertMethod()
|