| /external/webkit/Source/WebCore/bridge/ | 
| Bridge.h | 37 class Method { 38     WTF_MAKE_NONCOPYABLE(Method); WTF_MAKE_FAST_ALLOCATED;
 40     Method() { }
 43     virtual ~Method() { }
 
 | 
| /external/proguard/src/proguard/classfile/ | 
| Method.java | 26  * Representation of a method from a class. 30 public interface Method extends Member
 
 | 
| /external/clang/include/clang/Sema/ | 
| ObjCMethodList.h | 23   ObjCMethodDecl *Method; 27     Method = 0;
 31     Method = M;
 
 | 
| /dalvik/dx/src/com/android/dx/cf/iface/ | 
| Method.java | 24 public interface Method 28      * Get the <i>effective</i> method descriptor, which includes, if
 31      * @return {@code non-null;} the effective method descriptor
 
 | 
| /external/apache-xml/src/main/java/org/apache/xml/serializer/ | 
| Method.java | 19  * $Id: Method.java 468654 2006-10-28 07:09:23Z minchau $ 34  * OutputPropertiesFactory.getDefaultMethodProperties() method to get
 44 public final class Method
 49     private Method() {
 54    * The output method type for XML documents: <tt>xml</tt>.
 59    * The output method type for HTML documents: <tt>html</tt>.
 64    * The output method for XHTML documents: <tt>xhtml</tt>.
 66    * This method type is not currently supported.
 71    * The output method type for text documents: <tt>text</tt>.
 76    * The "internal" method, just used when no method is
 [all...]
 | 
| /external/clang/test/CodeGenCXX/ | 
| 2004-03-08-ReinterpretCastCopy.cpp | 4   virtual void Method() = 0; 8   virtual void Method() { }
 16   fn_type_a f = reinterpret_cast<fn_type_a>(&B::Method);
 
 | 
| /external/clang/test/CXX/temp/temp.spec/temp.explicit/ | 
| p6.cpp | 22   void Method(const T& x) { h(x); } 
 | 
| /external/clang/test/SemaCXX/ | 
| vtable-instantiation.cc | 58     static GMG* Method() { return &singleton; } // expected-note{{in instantiation of}} 66     GMG<int>::Method(); // expected-note{{in instantiation of}}
 
 | 
| /external/webkit/Source/WebCore/fileapi/ | 
| FileThreadTask.h | 45     typedef void (T::*Method)(); 48     static PassOwnPtr<FileThreadTaskImpl> create(T* instance, Method method)
 50         return adoptPtr(new FileThreadTaskImpl(instance, method));
 54     FileThreadTask0(T* instance, Method method)
 56         , m_method(method)
 66     Method m_method;
 72     typedef void (T::*Method)(MP1);
 76     static PassOwnPtr<FileThreadTaskImpl> create(T* instance, Method method, Param1 parameter1
 [all...]
 | 
| /external/webkit/Source/WebCore/platform/graphics/chromium/cc/ | 
| CCMainThreadTask.h | 38     typedef void (T::*Method)(); 41     static PassOwnPtr<MainThreadTaskImpl> create(T* instance, Method method)
 43         return adoptPtr(new MainThreadTaskImpl(instance, method));
 47     MainThreadTask0(T* instance, Method method)
 49         , m_method(method)
 59     Method m_method;
 65     typedef void (T::*Method)(MP1);
 69     static PassOwnPtr<MainThreadTaskImpl> create(T* instance, Method method, Param1 parameter1
 [all...]
 | 
| CCThreadTask.h | 38     typedef void (T::*Method)(); 41     static PassOwnPtr<CCThreadTaskImpl> create(T* instance, Method method)
 43         return adoptPtr(new CCThreadTaskImpl(instance, method));
 47     CCThreadTask0(T* instance, Method method)
 49         , m_method(method)
 59     Method m_method;
 65     typedef void (T::*Method)(MP1);
 69     static PassOwnPtr<CCThreadTaskImpl> create(T* instance, Method method, Param1 parameter1
 [all...]
 | 
| /dalvik/dx/src/com/android/dx/io/ | 
| ClassData.java | 22     private final Method[] directMethods; 23     private final Method[] virtualMethods;
 26             Method[] directMethods, Method[] virtualMethods) {
 41     public Method[] getDirectMethods() {
 45     public Method[] getVirtualMethods() {
 56     public Method[] allMethods() {
 57         Method[] result = new Method[directMethods.length + virtualMethods.length];
 81     public static class Method {
 [all...]
 | 
| /external/webkit/Source/WebCore/dom/ | 
| CrossThreadTask.h | 63     typedef void (*Method)(ScriptExecutionContext*, MP1); 67     static PassOwnPtr<CrossThreadTask> create(Method method, Param1 parameter1)
 69         return new CrossThreadTask(method, parameter1);
 73     CrossThreadTask1(Method method, Param1 parameter1)
 74         : m_method(method)
 85     Method m_method;
 92     typedef void (*Method)(ScriptExecutionContext*, MP1, MP2);
 97     static PassOwnPtr<CrossThreadTask> create(Method method, Param1 parameter1, Param2 parameter2
 [all...]
 | 
| /external/webkit/Source/WebCore/loader/ | 
| FormSubmission.h | 48     enum Method { GetMethod, PostMethod }; 60         Method method() const { return m_method; }  function in class:WebCore::FormSubmission::Attributes
 79         Method m_method;
 94     Method method() const { return m_method; }  function in class:WebCore::FormSubmission
 111     FormSubmission(Method, const KURL& action, const String& target, const String& contentType, PassRefPtr<FormState>, PassRefPtr<FormData>, const String& boundary, bool lockHistory, PassRefPtr<Event>);
 114     Method m_method;
 
 | 
| /frameworks/base/tools/aidl/ | 
| AST.cpp | 639 Method::Method() 648 Method::~Method()
 653 Method::GatherTypes(set<Type*>* types) const
 673 Method::Write(FILE* to)
 
 | 
| AST.h | 295 struct Method : public ClassElement 306     Method();
 307     virtual ~Method();
 
 | 
| /external/clang/include/clang/AST/ | 
| CXXInheritance.h | 233 /// \brief Uniquely identifies a virtual method within a class 234 /// hierarchy by the method itself and a class subobject number.
 236   UniqueVirtualMethod() : Method(0), Subobject(0), InVirtualSubobject(0) { }
 238   UniqueVirtualMethod(CXXMethodDecl *Method, unsigned Subobject,
 240     : Method(Method), Subobject(Subobject),
 243   /// \brief The overriding virtual method.
 244   CXXMethodDecl *Method;
 246   /// \brief The subobject in which the overriding virtual method
 251   /// virtual method is a part. Note that this records the closes
 [all...]
 | 
| /external/javassist/src/main/javassist/compiler/ | 
| MemberResolver.java | 55     public static class Method { 60         public Method(CtClass c, MethodInfo i, int n) {
 67          * Returns true if the invoked method is static.
 75     public Method lookupMethod(CtClass clazz, CtClass currentClass, MethodInfo current,
 81         Method maybe = null;
 82         // to enable the creation of a recursively called method
 88                     Method r = new Method(clazz, current, res);
 96         Method m = lookupMethod(clazz, methodName, argTypes, argDims,
 104     private Method lookupMethod(CtClass clazz, String methodName
 [all...]
 | 
| /libcore/luni/src/main/java/java/lang/reflect/ | 
| Method.java | 44  * This class represents a method. Information about the method can be accessed, 45  * and the method can be invoked dynamically.
 47 public final class Method extends AccessibleObject implements GenericDeclaration, Member {
 54     public static final Comparator<Method> ORDER_BY_SIGNATURE = new Comparator<Method>() {
 55         public int compare(Method a, Method b) {
 95     private TypeVariable<Method>[] formalTypeParameters;
 117     /*package*/ Method(Method orig)
 [all...]
 | 
| /external/chromium/testing/gmock/test/ | 
| gmock-spec-builders_test.cc | 110   // This line verifies that a mock method can take a by-reference 119   // Even though this mock class contains a mock method that takes
 161 // redefining a mock method name. This could happen, for example, when
 165 #define Method MethodW
 170   virtual int Method() = 0;
 176   MOCK_METHOD0(Method, int());
 182 // Tests that a method with expanded name compiles.
 185   ON_CALL(cc, Method());
 188 // Tests that the method with expanded name not only compiles but runs
 192   ON_CALL(cc, Method()).WillByDefault(Return(42))
 [all...]
 | 
| /external/clang/lib/AST/ | 
| DeclCXX.cpp | 27 // Decl Allocation/Deallocation Method Implementations 357     const CXXMethodDecl* Method = dyn_cast<CXXMethodDecl>(*Op);
 358     if (!Method || Method->isStatic() || Method->getPrimaryTemplate())
 362       = Method->getType()->getAs<FunctionProtoType>();
 388     Found.push_back(std::make_pair(const_cast<CXXMethodDecl *>(Method), Quals));
 418   if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
 419     if (Method->isVirtual()) {
 484     } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
 [all...]
 | 
| DeclObjC.cpp | 49 /// getIvarDecl - This method looks up an ivar in this ContextDecl. 61 // Get the local instance/class method declared in this interface.
 65   // ensures we get the correct method.
 262 /// lookupInheritedClass - This method returns ObjCInterfaceDecl * of the super
 279 /// lookupMethod - This method returns an instance/class method by looking in
 327   ObjCMethodDecl *Method = 0;
 329     Method = Instance ? ImpDecl->getInstanceMethod(Sel)
 332   if (!Method && getSuperClass())
 334   return Method;
 [all...]
 | 
| /external/clang/lib/Frontend/ | 
| CompilerInvocation.cpp | 214     Res.push_back("-fobjc-dispatch-method=mixed"); 217     Res.push_back("-fobjc-dispatch-method=non-legacy");
 [all...]
 | 
| /external/clang/tools/libclang/ | 
| CXCursor.cpp | 743                                      ObjCMethodDecl *Method, 752                                     Method, Methods);
 758   // Check whether we have a matching method at this level.
 759   if (ObjCMethodDecl *Overridden = Container->getMethod(Method->getSelector(),
 760                                                     Method->isInstanceMethod()))
 761     if (Method != Overridden) {
 772       CollectOverriddenMethods(TU, *P, Method, Methods);
 779       CollectOverriddenMethods(TU, *P, Method, Methods);
 786       CollectOverriddenMethods(TU, *P, Method, Methods);
 790       CollectOverriddenMethods(TU, Category, Method, Methods)
 [all...]
 | 
| /dalvik/vm/oo/ | 
| Object.h | 33 struct Method; 52     const Method* method, struct Thread* self);
 58     ACC_MIRANDA         = 0x8000,       // method (internal to VM)
 105  * Use the top 16 bits of the access flags field for other method flags.
 109     METHOD_ISWRITABLE       = (1<<31),  // the method's code is writable
 113  * Get/set method flags.
 115 #define SET_METHOD_FLAG(method, flag) \
 116     do { (method)->accessFlags |= (flag); } while (0)
 118 #define CLEAR_METHOD_FLAG(method, flag)
 [all...]
 |