Home
last modified time | relevance | path

Searched refs:Method (Results 1 – 25 of 689) sorted by relevance

12345678910>>...28

/external/proguard/src/proguard/classfile/attribute/preverification/visitor/
DVerificationTypeVisitor.java36 …public void visitIntegerType( Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitIntegerType()
37 …public void visitFloatType( Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitFloatType()
38 …public void visitLongType( Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitLongType()
39 …public void visitDoubleType( Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitDoubleType()
40 …public void visitTopType( Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitTopType()
41 …public void visitObjectType( Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitObjectType()
42 …public void visitNullType( Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitNullType()
43 …public void visitUninitializedType( Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitUninitializedType()
44 …public void visitUninitializedThisType(Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitUninitializedThisType()
46 …public void visitStackIntegerType( Clazz clazz, Method method, CodeAttribute codeAttribut… in visitStackIntegerType()
[all …]
/external/chromium_org/base/
Dobserver_list_threadsafe.h61 template <class T, class Method, class Params>
64 UnboundMethod(Method m, const Params& p) : m_(m), p_(p) { in UnboundMethod()
73 Method m_;
170 template <class Method>
171 void Notify(Method m) { in Notify()
172 UnboundMethod<ObserverType, Method, Tuple0> method(m, MakeTuple()); in Notify()
173 Notify<Method, Tuple0>(method); in Notify()
176 template <class Method, class A>
177 void Notify(Method m, const A& a) { in Notify()
178 UnboundMethod<ObserverType, Method, Tuple1<A> > method(m, MakeTuple(a)); in Notify()
[all …]
/external/proguard/src/proguard/classfile/util/
DSimplifiedVisitor.java270 …public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAtt… in visitDeprecatedAttribute()
297 …public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttrib… in visitSyntheticAttribute()
324 …public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute signatureAttrib… in visitSignatureAttribute()
336 …public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAtt… in visitExceptionsAttribute()
342 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) in visitCodeAttribute()
348 …public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackM… in visitStackMapAttribute()
354 …public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, S… in visitStackMapTableAttribute()
360 …public void visitLineNumberTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute,… in visitLineNumberTableAttribute()
366 …public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribu… in visitLocalVariableTableAttribute()
372 …public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAtt… in visitLocalVariableTypeTableAttribute()
[all …]
/external/chromium/base/
Dtask.h89 template <class Method>
90 inline CancelableTask* NewRunnableMethod(Method method) { in NewRunnableMethod()
91 return new RunnableMethod<Method, Tuple0>( in NewRunnableMethod()
95 template <class Method, class A>
96 inline CancelableTask* NewRunnableMethod(Method method, const A& a) { in NewRunnableMethod()
97 return new RunnableMethod<Method, Tuple1<A> >( in NewRunnableMethod()
101 template <class Method, class A, class B>
102 inline CancelableTask* NewRunnableMethod(Method method, const A& a, in NewRunnableMethod()
104 return new RunnableMethod<Method, Tuple2<A, B> >( in NewRunnableMethod()
108 template <class Method, class A, class B, class C>
[all …]
Dobserver_list_threadsafe.h141 template <class Method>
142 void Notify(Method m) { in Notify()
143 UnboundMethod<ObserverType, Method, Tuple0> method(m, MakeTuple()); in Notify()
144 Notify<Method, Tuple0>(method); in Notify()
147 template <class Method, class A>
148 void Notify(Method m, const A &a) { in Notify()
149 UnboundMethod<ObserverType, Method, Tuple1<A> > method(m, MakeTuple(a)); in Notify()
150 Notify<Method, Tuple1<A> >(method); in Notify()
166 template <class Method, class Params>
167 void Notify(const UnboundMethod<ObserverType, Method, Params>& method) {
[all …]
Dtuple.h539 template <class ObjT, class Method>
540 inline void DispatchToMethod(ObjT* obj, Method method, const Tuple0& arg) {
544 template <class ObjT, class Method, class A>
545 inline void DispatchToMethod(ObjT* obj, Method method, const A& arg) {
549 template <class ObjT, class Method, class A>
550 inline void DispatchToMethod(ObjT* obj, Method method, const Tuple1<A>& arg) {
554 template<class ObjT, class Method, class A, class B>
556 Method method,
561 template<class ObjT, class Method, class A, class B, class C>
562 inline void DispatchToMethod(ObjT* obj, Method method,
[all …]
/external/junit/src/org/junit/internal/runners/
DTestClass.java5 import java.lang.reflect.Method;
29 public List<Method> getTestMethods() { in getTestMethods()
33 List<Method> getBefores() { in getBefores()
37 List<Method> getAfters() { in getAfters()
41 public List<Method> getAnnotatedMethods(Class<? extends Annotation> annotationClass) { in getAnnotatedMethods()
42 List<Method> results= new ArrayList<Method>(); in getAnnotatedMethods()
44 Method[] methods= eachClass.getDeclaredMethods(); in getAnnotatedMethods()
45 for (Method eachMethod : methods) { in getAnnotatedMethods()
60 private boolean isShadowed(Method method, List<Method> results) { in isShadowed()
61 for (Method each : results) { in isShadowed()
[all …]
DJUnit4ClassRunner.java5 import java.lang.reflect.Method;
31 private final List<Method> fTestMethods;
40 protected List<Method> getTestMethods() { in getTestMethods()
60 for (Method method : fTestMethods) in runMethods()
67 List<Method> testMethods= fTestMethods; in getDescription()
68 for (Method method : testMethods) in getDescription()
85 protected void invokeTestMethod(Method method, RunNotifier notifier) { in invokeTestMethod()
108 protected TestMethod wrapMethod(Method method) { in wrapMethod()
112 protected String testName(Method method) { in testName()
116 protected Description methodDescription(Method method) { in methodDescription()
[all …]
/external/proguard/src/proguard/classfile/attribute/visitor/
DAttributeVisitor.java48 …public void visitDeprecatedAttribute( Clazz clazz, Method method, DeprecatedAttribute d… in visitDeprecatedAttribute()
52 …public void visitSyntheticAttribute( Clazz clazz, Method method, SyntheticAttribute s… in visitSyntheticAttribute()
56 …public void visitSignatureAttribute( Clazz clazz, Method method, SignatureAttribute s… in visitSignatureAttribute()
64 …public void visitExceptionsAttribute( Clazz clazz, Method method, ExceptionsAttribute e… in visitExceptionsAttribute()
65 …public void visitCodeAttribute( Clazz clazz, Method method, CodeAttribute c… in visitCodeAttribute()
69 …public void visitStackMapAttribute( Clazz clazz, Method method, CodeAttribute codeAtt… in visitStackMapAttribute()
70 …public void visitStackMapTableAttribute( Clazz clazz, Method method, CodeAttribute codeAtt… in visitStackMapTableAttribute()
71 …public void visitLineNumberTableAttribute( Clazz clazz, Method method, CodeAttribute codeAtt… in visitLineNumberTableAttribute()
72 …public void visitLocalVariableTableAttribute( Clazz clazz, Method method, CodeAttribute codeAtt… in visitLocalVariableTableAttribute()
73 …public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAtt… in visitLocalVariableTypeTableAttribute()
[all …]
/external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
DRemoteObject.java37 import java.lang.reflect.Method;
63 HashMap<Method, Integer> methodMap = new HashMap<Method, Integer>();
81 private boolean methodEquals(MethodDef methodDef, Method method){ in methodEquals()
103 HashMap<String, ArrayList<Method>> nameToMethods in loadMethods()
104 = new HashMap<String, ArrayList<Method>>(); in loadMethods()
106 for (Method method : interfaceClass.getDeclaredMethods()){ in loadMethods()
107 ArrayList<Method> list = nameToMethods.get(method.getName()); in loadMethods()
109 list = new ArrayList<Method>(); in loadMethods()
117 ArrayList<Method> methods = nameToMethods.get(methodDef.name); in loadMethods()
121 for (Method method : methods){ in loadMethods()
[all …]
/external/chromium_org/ppapi/proxy/
Ddispatch_reply_message.h23 template <class ObjT, class Method>
24 inline void DispatchResourceReply(ObjT* obj, Method method, in DispatchResourceReply()
30 template <class ObjT, class Method, class A>
31 inline void DispatchResourceReply(ObjT* obj, Method method, in DispatchResourceReply()
37 template<class ObjT, class Method, class A, class B>
38 inline void DispatchResourceReply(ObjT* obj, Method method, in DispatchResourceReply()
44 template<class ObjT, class Method, class A, class B, class C>
45 inline void DispatchResourceReply(ObjT* obj, Method method, in DispatchResourceReply()
51 template<class ObjT, class Method, class A, class B, class C, class D>
52 inline void DispatchResourceReply(ObjT* obj, Method method, in DispatchResourceReply()
[all …]
/external/okhttp/src/main/java/com/squareup/okhttp/internal/
DPlatform.java26 import java.lang.reflect.Method;
153 Method getMtu; in findPlatform()
162 Method setUseSessionTickets; in findPlatform()
163 Method setHostname; in findPlatform()
178 Method setNpnProtocols = openSslSocketClass.getMethod("setNpnProtocols", byte[].class); in findPlatform()
179 Method getNpnSelectedProtocol = openSslSocketClass.getMethod("getNpnSelectedProtocol"); in findPlatform()
198 Method putMethod = nextProtoNegoClass.getMethod("put", SSLSocket.class, providerClass); in findPlatform()
199 Method getMethod = nextProtoNegoClass.getMethod("get", SSLSocket.class); in findPlatform()
212 private final Method getMtu;
214 private Java6(Method getMtu) { in Java6()
[all …]
/external/guava/guava-tests/test/com/google/common/eventbus/
DEventHandlerTest.java20 import java.lang.reflect.Method;
48 Method method = getRecordingMethod(); in testBasicMethodCall()
75 Method method = getRecordingMethod(); in testRejectionOfNullTargets()
85 Method method = getExceptionThrowingMethod(); in testExceptionWrapping()
98 Method method = getErrorThrowingMethod(); in testErrorPassthrough()
118 private Method getRecordingMethod() { in getRecordingMethod()
119 Method method; in getRecordingMethod()
141 private Method getExceptionThrowingMethod() { in getExceptionThrowingMethod()
142 Method method; in getExceptionThrowingMethod()
164 private Method getErrorThrowingMethod() { in getErrorThrowingMethod()
[all …]
/external/chromium/testing/gmock/include/gmock/
Dgmock-generated-function-mockers.h343 #define GMOCK_MOCKER_(arity, constness, Method) \ argument
344 GTEST_CONCAT_TOKEN_(gmock##constness##arity##_##Method##_, __LINE__)
347 #define GMOCK_METHOD0_(tn, constness, ct, Method, F) \ argument
348 GMOCK_RESULT_(tn, F) ct Method() constness { \
352 GMOCK_MOCKER_(0, constness, Method).SetOwnerAndName(this, #Method); \
353 return GMOCK_MOCKER_(0, constness, Method).Invoke(); \
356 gmock_##Method() constness { \
357 GMOCK_MOCKER_(0, constness, Method).RegisterOwner(this); \
358 return GMOCK_MOCKER_(0, constness, Method).With(); \
360 mutable ::testing::FunctionMocker<F> GMOCK_MOCKER_(0, constness, Method)
[all …]
/external/qemu-pc-bios/bochs/bios/
Dacpi-dsdt.dsl110 Method (_EJ0,1) { \
198 Method (_STA, 0, NotSerialized) {
219 Method (_S1D, 0, NotSerialized)
223 Method (_S2D, 0, NotSerialized)
227 Method (_S3D, 0, NotSerialized)
256 Method (_STA, 0, NotSerialized)
261 Method (_CRS, 0, NotSerialized)
288 Method (_STA, 0, NotSerialized)
293 Method (_CRS, 0, NotSerialized)
307 Method (_STA, 0, NotSerialized)
[all …]
/external/chromium_org/ppapi/utility/
Dcompletion_callback_factory.h261 template <typename Method>
262 CompletionCallback NewCallback(Method method) {
263 return NewCallbackHelper(new Dispatcher0<Method>(method));
277 template <typename Method>
278 CompletionCallback NewOptionalCallback(Method method) {
339 template <typename Method, typename A>
340 CompletionCallback NewCallback(Method method, const A& a) {
341 return NewCallbackHelper(new Dispatcher1<Method, A>(method, a));
359 template <typename Method, typename A>
360 CompletionCallback NewOptionalCallback(Method method, const A& a) {
[all …]
/external/chromium_org/ppapi/host/
Ddispatch_host_message.h22 template <class ObjT, class Method>
23 inline int32_t DispatchResourceCall(ObjT* obj, Method method, in DispatchResourceCall()
29 template <class ObjT, class Method, class A>
30 inline int32_t DispatchResourceCall(ObjT* obj, Method method, in DispatchResourceCall()
36 template<class ObjT, class Method, class A, class B>
37 inline int32_t DispatchResourceCall(ObjT* obj, Method method, in DispatchResourceCall()
43 template<class ObjT, class Method, class A, class B, class C>
44 inline int32_t DispatchResourceCall(ObjT* obj, Method method, in DispatchResourceCall()
50 template<class ObjT, class Method, class A, class B, class C, class D>
51 inline int32_t DispatchResourceCall(ObjT* obj, Method method, in DispatchResourceCall()
[all …]
/external/javassist/src/main/javassist/util/proxy/
DRuntimeSupport.java18 import java.lang.reflect.Method;
33 public Object invoke(Object self, Method m, in invoke()
34 Method proceed, Object[] args) in invoke()
50 String desc, java.lang.reflect.Method[] methods) in find2Methods()
67 public static Method findMethod(Object self, String name, String desc) { in findMethod()
68 Method m = findMethod2(self.getClass(), name, desc); in findMethod()
81 public static Method findSuperMethod(Object self, String name, String desc) { in findSuperMethod()
83 Method m = findSuperMethod2(clazz.getSuperclass(), name, desc); in findSuperMethod()
98 private static Method findSuperMethod2(Class clazz, String name, String desc) { in findSuperMethod2()
99 Method m = findMethod2(clazz, name, desc); in findSuperMethod2()
[all …]
/external/dexmaker/src/test/java/com/google/dexmaker/
DDexMakerTest.java23 import java.lang.reflect.Method;
117 Method method = generatedClass.getMethod("call"); in testVoidNoArgMemberMethod()
147 TypeId<Method> methodType = TypeId.get(Method.class); in testCreateLocalMethodAsNull()
149 Local<Method> localMethod = code.newLocal(methodType); in testCreateLocalMethodAsNull()
157 Method method = generatedClass.getMethod("call", int.class); in testCreateLocalMethodAsNull()
222 Method method = generatedClass.getMethod("call", generatedClass); in testInvokeDirect()
255 Method method = generatedClass.getMethod("superHashCode"); in testInvokeSuper()
470 Method method = generatedClass.getMethod("call"); in testReturnType()
476 Method lt = branchingMethod(Comparison.LT); in testBranching()
481 Method le = branchingMethod(Comparison.LE); in testBranching()
[all …]
/external/clang/lib/Sema/
DSemaExprObjC.cpp147 Selector Sel, const ObjCMethodDecl *Method) { in validateBoxingMethod() argument
148 if (!Method) { in validateBoxingMethod()
155 QualType ReturnType = Method->getResultType(); in validateBoxingMethod()
159 S.Diag(Method->getLocation(), diag::note_objc_literal_method_return) in validateBoxingMethod()
224 ObjCMethodDecl *Method = S.NSNumberDecl->lookupClassMethod(Sel); in getNSNumberFactoryMethod() local
225 if (!Method && S.getLangOpts().DebuggerObjCLiteral) { in getNSNumberFactoryMethod()
228 Method = ObjCMethodDecl::Create(CX, SourceLocation(), SourceLocation(), Sel, in getNSNumberFactoryMethod()
237 ParmVarDecl *value = ParmVarDecl::Create(S.Context, Method, in getNSNumberFactoryMethod()
242 Method->setMethodParams(S.Context, value, None); in getNSNumberFactoryMethod()
245 if (!validateBoxingMethod(S, Loc, S.NSNumberDecl, Sel, Method)) in getNSNumberFactoryMethod()
[all …]
/external/android-mock/tests/com/google/android/testing/mocking/
DAndroidMockGeneratorTest.java27 import java.lang.reflect.Method;
176 private List<String> getMethodSignatures(Method[] methods) { in getMethodSignatures()
178 for (Method method : methods) { in getMethodSignatures()
205 Method method = Object.class.getMethod("equals", Object.class); in testGetInterfaceMethodSource()
212 Method method = Class.class.getDeclaredMethod("newInstance"); in testGetInterfaceMethodSourceMultipleExceptions()
220 Method method = Object.class.getDeclaredMethod("finalize"); in testGetInterfaceMethodSourceProtectedMethod()
227 Method method = Object.class.getMethod("toString"); in testGetInterfaceMethodSourceNoParams()
234 Method method = Thread.class.getMethod("run"); in testGetInterfaceMethodSourceVoidReturn()
239 Method method = Object.class.getMethod("notify"); in testGetInterfaceMethodSourceFinal()
249 Method method = Thread.class.getMethod("currentThread"); in testGetInterfaceMethodSourceStatic()
[all …]
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
DDownloadInfoTest.java14 import java.lang.reflect.Method;
70 AccessorSignature getGetterInfo(Method method) { in getGetterInfo()
99 AccessorSignature getSetterInfo(Method method) { in getSetterInfo()
123 Object invokeMethod(Method method, Object instance, Object... args) throws Exception { in invokeMethod()
138 HashMap<AccessorSignature, Method> downloadInfoGetters = in testBuilderHasCorrectSetters()
139 new HashMap<AccessorSignature, Method>(); in testBuilderHasCorrectSetters()
140 HashMap<AccessorSignature, Method> builderSetters = in testBuilderHasCorrectSetters()
141 new HashMap<AccessorSignature, Method>(); in testBuilderHasCorrectSetters()
142 for (Method m : DownloadInfo.class.getMethods()) { in testBuilderHasCorrectSetters()
150 for (Method m : Builder.class.getMethods()) { in testBuilderHasCorrectSetters()
[all …]
/external/proguard/src/proguard/classfile/visitor/
DClassCleaner.java117 …public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAtt… in visitExceptionsAttribute()
125 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) in visitCodeAttribute()
134 …public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackM… in visitStackMapAttribute()
142 …public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, S… in visitStackMapTableAttribute()
158 …public void visitAnyParameterAnnotationsAttribute(Clazz clazz, Method method, ParameterAnnotations… in visitAnyParameterAnnotationsAttribute()
166 …public void visitAnnotationDefaultAttribute(Clazz clazz, Method method, AnnotationDefaultAttribute… in visitAnnotationDefaultAttribute()
184 …public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionI… in visitExceptionInfo()
192 …public void visitSameZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset… in visitSameZeroFrame()
198 …public void visitSameOneFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset,… in visitSameOneFrame()
206 …public void visitLessZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset… in visitLessZeroFrame()
[all …]
/external/clang/test/Index/
Dcomplete-objc-message.m86 - (int)Method:(int)i;
87 - (int)Method; method
88 - (int)Method:(float)f Arg1:(int)i1 Arg2:(int)i2;
89 - (int)Method:(float)f Arg1:(int)i1 OtherArg:(id)obj;
90 - (int)Method:(float)f SomeArg:(int)i1 OtherArg:(id)obj;
95 [ovl Method:1 Arg1:1 OtherArg:ovl];
99 - (int)Method:(int)i, ...;
103 [e Method:1, 2, 3];
107 + (int)Method:(int)i;
108 + (int)Method; class
[all …]
/external/proguard/src/proguard/optimize/
DChangedCodePrinter.java117 …public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAtt… in visitDeprecatedAttribute()
123 …public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttrib… in visitSyntheticAttribute()
129 …public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute syntheticAttrib… in visitSignatureAttribute()
141 …public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAtt… in visitExceptionsAttribute()
147 …public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackM… in visitStackMapAttribute()
153 …public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, S… in visitStackMapTableAttribute()
159 …public void visitLineNumberTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute,… in visitLineNumberTableAttribute()
165 …public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribu… in visitLocalVariableTableAttribute()
171 …public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAtt… in visitLocalVariableTypeTableAttribute()
201 …public void visitRuntimeVisibleAnnotationsAttribute(Clazz clazz, Method method, RuntimeVisibleAnno… in visitRuntimeVisibleAnnotationsAttribute()
[all …]

12345678910>>...28