Lines Matching refs:method
58 * non virtual methods that dereference the method pointer themselves and perform the call.
104 * method inheritance works properly.
109 * the inherited method definitions there. This time I could have used a trick to use only one
155 * - Each method is declared as a pointer to function field in the jump table. The implementation
177 * - Of course in C++ we use inheritance so that we don't have to duplicate the method definitions.
186 #define STDMETHOD(method) virtual HRESULT STDMETHODCALLTYPE method
187 #define STDMETHOD_(type,method) virtual type STDMETHODCALLTYPE method
188 #define STDMETHODV(method) virtual HRESULT STDMETHODVCALLTYPE method
189 #define STDMETHODV_(type,method) virtual type STDMETHODVCALLTYPE method
207 #define STDMETHOD(method) HRESULT (STDMETHODCALLTYPE *method)
208 #define STDMETHOD_(type,method) type (STDMETHODCALLTYPE *method)
209 #define STDMETHODV(method) HRESULT (STDMETHODVCALLTYPE *method)
210 #define STDMETHODV_(type,method) type (STDMETHODVCALLTYPE *method)