HomeSort by relevance Sort by last modified time
    Searched full:imethod (Results 1 - 25 of 33) sorted by null

1 2

  /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],
method-attributes.m 98 - (id) IMethod :(int) count, ... __attribute__((section("__TEXT,foo")));
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ctxtcall.h 58 virtual HRESULT WINAPI ContextCallback(PFNCONTEXTCALL pfnCallback,ComCallData *pParam,REFIID riid,int iMethod,IUnknown *pUnk) = 0;
66 HRESULT (WINAPI *ContextCallback)(IContextCallback *This,PFNCONTEXTCALL pfnCallback,ComCallData *pParam,REFIID riid,int iMethod,IUnknown *pUnk);
76 #define IContextCallback_ContextCallback(This,pfnCallback,pParam,riid,iMethod,pUnk) (This)->lpVtbl->ContextCallback(This,pfnCallback,pParam,riid,iMethod,pUnk)
79 HRESULT WINAPI IContextCallback_ContextCallback_Proxy(IContextCallback *This,PFNCONTEXTCALL pfnCallback,ComCallData *pParam,REFIID riid,int iMethod,IUnknown *pUnk);
callobj.h 79 ULONG iMethod;
250 virtual HRESULT WINAPI CallIndirect(HRESULT *phrReturn,ULONG iMethod,void *pvArgs,ULONG *cbArgs) = 0;
251 virtual HRESULT WINAPI GetMethodInfo(ULONG iMethod,CALLFRAMEINFO *pInfo,LPWSTR *pwszMethod) = 0;
252 virtual HRESULT WINAPI GetStackSize(ULONG iMethod,ULONG *cbArgs) = 0;
261 HRESULT (WINAPI *CallIndirect)(ICallIndirect *This,HRESULT *phrReturn,ULONG iMethod,void *pvArgs,ULONG *cbArgs);
262 HRESULT (WINAPI *GetMethodInfo)(ICallIndirect *This,ULONG iMethod,CALLFRAMEINFO *pInfo,LPWSTR *pwszMethod);
263 HRESULT (WINAPI *GetStackSize)(ICallIndirect *This,ULONG iMethod,ULONG *cbArgs);
274 #define ICallIndirect_CallIndirect(This,phrReturn,iMethod,pvArgs,cbArgs) (This)->lpVtbl->CallIndirect(This,phrReturn,iMethod,pvArgs,cbArgs)
275 #define ICallIndirect_GetMethodInfo(This,iMethod,pInfo,pwszMethod) (This)->lpVtbl->GetMethodInfo(This,iMethod,pInfo,pwszMethod
    [all...]
  /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) {
  /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 66 import org.eclipse.jdt.core.IMethod;
641 if (element instanceof IMethod) {
642 IMethod method = (IMethod) element;
773 if (element instanceof IMethod) {
774 IMethod method = (IMethod) element;
813 IMethod method = activityType.getMethod(
    [all...]
  /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 39 import org.eclipse.jdt.core.IMethod;
257 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 103 import org.eclipse.jdt.core.IMethod;
650 if (element instanceof IMethod) {
651 IMethod methodElement = (IMethod) element;
    [all...]

Completed in 703 milliseconds

1 2