Home | History | Annotate | Download | only in Sema

Lines Matching refs:Stored

2308   llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored = LocalDecls[D];
2309 if (Stored.isNull())
2310 Stored = Inst;
2311 else if (Stored.is<Decl *>()) {
2312 assert(Stored.get<Decl *>() == Inst && "Already instantiated this local");
2313 Stored = Inst;
2325 Stored = LocalDecls[D];
2326 assert(Stored.isNull() && "Already instantiated this local");
2328 Stored = Pack;