Home | History | Annotate | Download | only in AST

Lines Matching defs:Method

232 /// \brief Uniquely identifies a virtual method within a class
233 /// hierarchy by the method itself and a class subobject number.
236 : Method(nullptr), Subobject(0), InVirtualSubobject(nullptr) { }
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 closest
257 return X.Method == Y.Method && X.Subobject == Y.Subobject &&
267 /// \brief The set of methods that override a given virtual method in
272 /// pair is the virtual method that overrides it (including the
296 // Add a new overriding method for a particular subobject.
300 // this method. Used when merging the overrides from multiple base
305 // given virtual method.
324 /// method, and it is up to the client to determine whether they are