Home | History | Annotate | Download | only in Sema

Lines Matching refs:Stored

2709   llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored = LocalDecls[D];
2710 if (Stored.isNull())
2711 Stored = Inst;
2712 else if (DeclArgumentPack *Pack = Stored.dyn_cast<DeclArgumentPack *>())
2715 assert(Stored
2727 llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored = LocalDecls[D];
2728 assert(Stored.isNull() && "Already instantiated this local");
2730 Stored = Pack;