Searched defs:DeclOrVector (Results 1 - 2 of 2) sorted by path

/external/clang/lib/Sema/
H A DSemaCodeComplete.cpp72 llvm::PointerUnion<const NamedDecl *, DeclIndexPairVector*> DeclOrVector; member in class:__anon18020::ResultBuilder::ShadowMapEntry
79 ShadowMapEntry() : DeclOrVector(), SingleDeclIndex(0) { }
82 if (DeclOrVector.isNull()) {
84 DeclOrVector = ND;
90 DeclOrVector.dyn_cast<const NamedDecl *>()) {
95 DeclOrVector = Vec;
99 DeclOrVector.get<DeclIndexPairVector*>()->push_back(
105 = DeclOrVector.dyn_cast<DeclIndexPairVector *>()) {
107 DeclOrVector = ((NamedDecl *)nullptr);
419 if (DeclOrVector
[all...]
H A DSemaDecl.cpp13001 typedef llvm::PointerUnion<EnumConstantDecl*, ECDVector*> DeclOrVector; typedef
13002 typedef llvm::DenseMap<DupKey, DeclOrVector, DenseMapInfoDupKey>
13023 DeclOrVector &Entry = EnumMap[Key];
13038 DeclOrVector& Entry = EnumMap[Key];

Completed in 261 milliseconds