Home | History | Annotate | Download | only in Sema

Lines Matching refs:Stored

2560   llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored = LocalDecls[D];
2561 if (Stored.isNull())
2562 Stored = Inst;
2563 else if (Stored.is<Decl *>()) {
2564 assert(Stored.get<Decl *>() == Inst && "Already instantiated this local");
2565 Stored = Inst;
2577 llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored = LocalDecls[D];
2578 assert(Stored.isNull() && "Already instantiated this local");
2580 Stored = Pack;