HomeSort by relevance Sort by last modified time
    Searched full:imethod (Results 1 - 25 of 25) 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/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()) {
  /external/clang/test/SemaObjC/
super.m 7 - iMethod;
24 [super iMethod]; // expected-warning{{'A' may not respond to 'iMethod'}}
38 [ super.superClassMethod iMethod],
  /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/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/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) {
  /external/qemu/
loadpng.c 22 int bitdepth, colortype, imethod, cmethod, fmethod, i; local
68 &imethod, &cmethod, &fmethod);
160 int bitdepth, colortype, imethod, cmethod, fmethod, i; local
200 &imethod, &cmethod, &fmethod);
  /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/
SourceRevealer.java 36 import org.eclipse.jdt.core.IMethod;
131 IMethod method = (IMethod) methodMatches.get(0).getElement();
171 return displayMethod((IMethod) methodMatches.get(0).getElement(), perspective);
218 return displayMethod((IMethod) match.getElement(), perspective);
252 private boolean displayMethod(IMethod method, String perspective) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestInfo.java 59 import org.eclipse.jdt.core.IMethod;
501 if (element instanceof IMethod) {
502 IMethod method = (IMethod) element;
633 if (element instanceof IMethod) {
634 IMethod method = (IMethod) element;
673 IMethod method = activityType.getMethod(
  /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) {
  /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 38 import org.eclipse.jdt.core.IMethod;
254 IMethod basicConstructor = type.getMethod(type.getElementName(), new String[0]);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
Hyperlinks.java 97 import org.eclipse.jdt.core.IMethod;
609 if (element instanceof IMethod) {
610 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 
org.eclipse.jdt.launching_3.5.100.v20100526.jar 

Completed in 975 milliseconds