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.
227 #define STDMETHOD(method) virtual HRESULT STDMETHODCALLTYPE method
228 #define STDMETHOD_(type,method) virtual type STDMETHODCALLTYPE method
229 #define STDMETHODV(method) virtual HRESULT STDMETHODVCALLTYPE method
230 #define STDMETHODV_(type,method) virtual type STDMETHODVCALLTYPE method
248 #define STDMETHOD(method) HRESULT (STDMETHODCALLTYPE *method)
249 #define STDMETHOD_(type,method) type (STDMETHODCALLTYPE *method)
250 #define STDMETHODV(method) HRESULT (STDMETHODVCALLTYPE *method)
251 #define STDMETHODV_(type,method) type (STDMETHODVCALLTYPE *method)