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

  /cts/tools/signature-tools/src/signature/compare/model/
IMethodDelta.java 19 import signature.model.IMethod;
22 * {@code IMethodDelta} models the delta between two {@link IMethod} subclass
25 public interface IMethodDelta extends IExecutableMemberDelta<IMethod> {
  /cts/tools/signature-tools/src/signature/compare/model/impl/
SigMethodDelta.java 21 import signature.model.IMethod;
23 public class SigMethodDelta extends SigExecutableMemberDelta<IMethod> implements
28 public SigMethodDelta(IMethod from, IMethod to) {
  /cts/tools/signature-tools/src/signature/model/
IMethod.java 22 * {@code IMethod} models a method.
24 public interface IMethod extends IExecutableMember {
IClassDefinition.java 100 Set<IMethod> getMethods();
  /cts/tools/signature-tools/src/signature/compare/model/subst/
MethodProjection.java 19 import signature.model.IMethod;
27 IMethod {
29 private final IMethod original;
32 public MethodProjection(IMethod original,
ClassProjection.java 31 import signature.model.IMethod;
101 Set<IMethod> methods = null;
103 public Set<IMethod> getMethods() {
105 Set<IMethod> originalMethods = original.getMethods();
109 methods = new HashSet<IMethod>();
110 for (IMethod m : original.getMethods()) {
  /cts/tools/annotation-helper/src/spechelper/
MethodSelector.java 21 import org.eclipse.jdt.core.IMethod;
52 IMethod method = selectMethod();
88 private String generateAnnotation(boolean shortOnly, IMethod method) {
134 private IMethod selectMethod() {
150 IMethod method;
189 IMethod[] allMeth = myType.getMethods();
190 List<IMethod> pubproMethods = new ArrayList<IMethod>();
192 IMethod method = allMeth[i];
197 IMethod[] res = pubproMethod
    [all...]
  /cts/tools/signature-tools/src/signature/model/impl/
SigMethod.java 21 import signature.model.IMethod;
27 public class SigMethod extends SigExecutableMember implements IMethod,
50 public static String toString(IMethod method) {
SigClassDefinition.java 29 import signature.model.IMethod;
45 private Set<IMethod> methods = Uninitialized.unset();
109 public Set<IMethod> getMethods() {
113 public void setMethods(Set<IMethod> methods) {
  /cts/tools/signature-tools/test/signature/converter/
ConvertEnumTest.java 42 import signature.model.IMethod;
131 Set<IMethod> methods = c.getMethods();
133 Map<String, IMethod> map = new HashMap<String, IMethod>();
134 for(IMethod m : methods){
138 IMethod values = map.get("values");
147 IMethod valueOf = map.get("valueOf");
174 Set<IMethod> methods = c.getMethods();
176 Map<String, IMethod> map = new HashMap<String, IMethod>();
    [all...]
ConvertVisibilityTest.java 32 import signature.model.IMethod;
52 Set<IMethod> methods = c.getMethods();
70 Set<IMethod> methods = c.getMethods();
88 Set<IMethod> methods = c.getMethods();
106 Set<IMethod> methods = c.getMethods();
ConvertClassTest.java 41 import signature.model.IMethod;
454 IMethod method = sigClass.getMethods().iterator().next();
467 IMethod method = sigClass.getMethods().iterator().next();
525 IMethod sigMethod = sigClass.getMethods().iterator().next();
    [all...]
  /cts/tools/signature-tools/src/signature/compare/
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)
    [all...]
  /cts/tools/signature-tools/src/signature/converter/dex/
GenericSignatureParser.java 25 import signature.model.IMethod;
211 public void parseForMethod(IMethod genericDecl, String signature) {
DexToSigConverter.java 65 import signature.model.IMethod;
417 sigClass.setMethods(new HashSet<IMethod>(methods));
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
BaseProjectHelper.java 37 import org.eclipse.jdt.core.IMethod;
206 IMethod basicConstructor = type.getMethod(type.getElementName(), new String[0]);
  /cts/tools/signature-tools/src/signature/converter/doclet/
DocletToSigConverter.java 40 import signature.model.IMethod;
184 Set<IMethod> methods = new HashSet<IMethod>();
501 private IMethod convertMethod(MethodDoc method) {

Completed in 840 milliseconds