/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/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...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/ |
SourceRevealer.java | 25 import org.eclipse.jdt.core.IMethod; 153 if (element instanceof IMethod && !mFoundMatch) { 158 IMethod method = (IMethod) element;
|
/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...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/ |
ManifestInfo.java | 58 import org.eclipse.jdt.core.IMethod; 412 if (element instanceof IMethod) { 413 IMethod method = (IMethod) element; 501 if (element instanceof IMethod) { 502 IMethod method = (IMethod) element; 541 IMethod method = activityType.getMethod(
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/ |
SourceRevealer.java | 30 import org.eclipse.jdt.core.IMethod; 98 return displayMethod((IMethod) matches.get(0).getElement(), perspective); 123 return displayMethod((IMethod) match.getElement(), perspective); 157 private boolean displayMethod(IMethod method, String perspective) {
|
/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/editors/layout/gle2/ |
CustomViewFinder.java | 39 import org.eclipse.jdt.core.IMethod; 311 for (IMethod method : type.getMethods()) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
BaseProjectHelper.java | 36 import org.eclipse.jdt.core.IMethod; 241 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) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ |
Hyperlinks.java | 92 import org.eclipse.jdt.core.IMethod; 604 if (element instanceof IMethod) { 605 IMethod methodElement = (IMethod) element; [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar | |