Lines Matching defs:Base
61 /// \brief The entity being initialized is a base member subobject.
112 /// \brief When Kind == EK_Base, the base specifier that provides the
113 /// base class. The lower bit specifies whether the base is an inherited
114 /// virtual base.
115 uintptr_t Base;
220 /// \brief Create the initialization entity for a base class subobject.
222 CXXBaseSpecifier *Base,
287 /// \brief Retrieve the base specifier.
289 assert(getKind() == EK_Base && "Not a base specifier");
290 return reinterpret_cast<CXXBaseSpecifier *>(Base & ~0x1);
293 /// \brief Return whether the base is an inherited virtual base.
295 assert(getKind() == EK_Base && "Not a base specifier");
296 return Base & 0x1;
504 /// \brief Perform a derived-to-base cast, producing an rvalue.
506 /// \brief Perform a derived-to-base cast, producing an xvalue.
508 /// \brief Perform a derived-to-base cast, producing an lvalue.
772 /// base cast.
774 /// \param BaseType the base type to which we will be casting.