Home
last modified time | relevance | path

Searched refs:BaseOrMember (Results 1 – 3 of 3) sorted by relevance

/netbsd/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DPointer.cpp119 if (auto *BaseOrMember = Desc->asDecl()) { in toAPValue() local
120 Path.push_back(APValue::LValuePathEntry({BaseOrMember, IsVirtual})); in toAPValue()
/netbsd/external/apache2/llvm/dist/clang/lib/AST/
H A DAPValue.cpp147 APValue::LValuePathEntry::LValuePathEntry(BaseOrMemberType BaseOrMember) { in LValuePathEntry() argument
148 if (const Decl *D = BaseOrMember.getPointer()) in LValuePathEntry()
149 BaseOrMember.setPointer(D->getCanonicalDecl()); in LValuePathEntry()
150 Value = reinterpret_cast<uintptr_t>(BaseOrMember.getOpaqueValue()); in LValuePathEntry()
764 const Decl *BaseOrMember = Path[I].getAsBaseOrMember().getPointer(); in printPretty() local
765 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(BaseOrMember)) { in printPretty()
770 const ValueDecl *VD = cast<ValueDecl>(BaseOrMember); in printPretty()
/netbsd/external/apache2/llvm/dist/clang/include/clang/AST/
H A DAPValue.h215 LValuePathEntry(BaseOrMemberType BaseOrMember);