Lines Matching refs:Desc
40 Block(const llvm::Optional<unsigned> &DeclID, Descriptor *Desc,
42 : DeclID(DeclID), IsStatic(IsStatic), IsExtern(IsExtern), Desc(Desc) {} in DeclID()
44 Block(Descriptor *Desc, bool IsStatic = false, bool IsExtern = false)
46 Desc(Desc) {}
49 Descriptor *getDescriptor() const { return Desc; } in getDescriptor()
57 bool isTemporary() const { return Desc->IsTemporary; } in isTemporary()
59 InterpSize getSize() const { return Desc->getAllocSize(); } in getSize()
73 if (Desc->CtorFn) in invokeCtor()
74 Desc->CtorFn(this, data(), Desc->IsConst, Desc->IsMutable, in invokeCtor()
75 /*isActive=*/true, Desc); in invokeCtor()
83 Block(Descriptor *Desc, bool IsExtern, bool IsStatic, bool IsDead) in Block() argument
84 : IsStatic(IsStatic), IsExtern(IsExtern), IsDead(true), Desc(Desc) {} in Block()
105 Descriptor *Desc; variable