clang
3.7.0
|
Wrapper for void* pointer. More...
#include <Ownership.h>
Public Member Functions | |
OpaquePtr () | |
template<typename PointeeT > | |
PointeeT * | getPtrTo () const |
Returns plain pointer to the entity pointed by this wrapper. More... | |
template<typename PtrT > | |
PtrT | getPtrAs () const |
Returns pointer converted to the specified type. More... | |
PtrTy | get () const |
void | set (PtrTy P) |
operator bool () const | |
void * | getAsOpaquePtr () const |
Static Public Member Functions | |
static OpaquePtr | make (PtrTy P) |
static OpaquePtr | getFromOpaquePtr (void *P) |
Wrapper for void* pointer.
PtrTy | Either a pointer type like 'T*' or a type that behaves like a pointer. |
This is a very simple POD type that wraps a pointer that the Parser doesn't know about but that Sema or another client does. The PtrTy template argument is used to make sure that "Decl" pointers are not compatible with "Type" pointers for example.
Definition at line 45 of file Ownership.h.
|
inline |
Definition at line 52 of file Ownership.h.
Referenced by clang::OpaquePtr< TemplateName >::getFromOpaquePtr().
|
inline |
Definition at line 74 of file Ownership.h.
Referenced by clang::Sema::ActOnClassTemplateSpecialization(), clang::Sema::ActOnCXXNestedNameSpecifier(), clang::Sema::ActOnDeclStmt(), clang::Sema::ActOnDependentTemplateName(), clang::Sema::ActOnExplicitInstantiation(), clang::Sema::ActOnForEachDeclStmt(), clang::Sema::ActOnPackExpansion(), clang::Sema::ActOnTagTemplateIdType(), clang::Sema::ActOnTemplateIdType(), clang::Sema::ActOnTypenameType(), clang::Sema::CodeCompleteDeclSpec(), clang::Sema::CodeCompleteObjCForCollection(), clang::Sema::containsUnexpandedParameterPacks(), clang::Sema::DecomposeUnqualifiedId(), clang::Sema::DiagnoseUnknownTypeName(), clang::Sema::GetNameFromUnqualifiedId(), clang::Sema::GetTypeFromParser(), clang::Sema::getTypeName(), clang::Declarator::isDeclarationOfFunction(), clang::Sema::isTemplateName(), clang::ParseAST(), clang::Sema::ParsedFreeStandingDeclSpec(), clang::TreeTransform< Derived >::RebuildTemplateName(), translateTemplateArgument(), and clang::Parser::TryAnnotateTypeOrScopeTokenAfterScopeSpec().
|
inline |
Definition at line 84 of file Ownership.h.
Referenced by clang::Sema::CodeCompleteObjCForCollection(), llvm::PointerLikeTypeTraits< clang::OpaquePtr< T > >::getAsVoidPointer(), clang::UnionOpaquePtr< QualType >::make(), and clang::UnionOpaquePtr< QualType >::operator=().
|
inlinestatic |
Definition at line 85 of file Ownership.h.
Referenced by clang::UnionOpaquePtr< QualType >::get(), and llvm::PointerLikeTypeTraits< clang::OpaquePtr< T > >::getFromVoidPointer().
|
inline |
Returns pointer converted to the specified type.
PtrT | Result pointer type. There must be implicit conversion from PtrTy to PtrT. |
In contrast to getPtrTo, this method allows the return type to be a smart pointer.
Definition at line 70 of file Ownership.h.
|
inline |
Returns plain pointer to the entity pointed by this wrapper.
PointeeT | Type of pointed entity. |
It is identical to getPtrAs<PointeeT*>.
Definition at line 60 of file Ownership.h.
|
inlinestatic |
Definition at line 54 of file Ownership.h.
Referenced by clang::Sema::ActOnOpenMPThreadprivateDirective().
|
inlineexplicit |
Definition at line 82 of file Ownership.h.
|
inline |
Definition at line 78 of file Ownership.h.
Referenced by clang::OpaquePtr< TemplateName >::make().