Lines Matching refs:Descriptor
18 static void ctorTy(Block *, char *Ptr, bool, bool, bool, Descriptor *) { in ctorTy() argument
22 template <typename T> static void dtorTy(Block *, char *Ptr, Descriptor *) { in dtorTy() argument
27 static void moveTy(Block *, char *Src, char *Dst, Descriptor *) { in moveTy() argument
34 static void ctorArrayTy(Block *, char *Ptr, bool, bool, bool, Descriptor *D) { in ctorArrayTy()
41 static void dtorArrayTy(Block *, char *Ptr, Descriptor *D) { in dtorArrayTy()
48 static void moveArrayTy(Block *, char *Src, char *Dst, Descriptor *D) { in moveArrayTy()
57 bool IsActive, Descriptor *D) { in ctorArrayDesc()
81 static void dtorArrayDesc(Block *B, char *Ptr, Descriptor *D) { in dtorArrayDesc()
96 static void moveArrayDesc(Block *B, char *Src, char *Dst, Descriptor *D) { in moveArrayDesc()
118 bool IsActive, Descriptor *D) { in ctorRecord()
120 auto CtorSub = [=](unsigned SubOff, Descriptor *F, bool IsBase) { in ctorRecord()
140 static void dtorRecord(Block *B, char *Ptr, Descriptor *D) { in dtorRecord()
141 auto DtorSub = [=](unsigned SubOff, Descriptor *F) { in dtorRecord()
153 static void moveRecord(Block *B, char *Src, char *Dst, Descriptor *D) { in moveRecord()
158 *(reinterpret_cast<Descriptor **>(Dst + FieldOff) - 1) = FieldDesc; in moveRecord()
188 Descriptor::Descriptor(const DeclTy &D, PrimType Type, bool IsConst, in Descriptor() function in Descriptor
197 Descriptor::Descriptor(const DeclTy &D, PrimType Type, size_t NumElems, in Descriptor() function in Descriptor
207 Descriptor::Descriptor(const DeclTy &D, PrimType Type, bool IsTemporary, in Descriptor() function in Descriptor
216 Descriptor::Descriptor(const DeclTy &D, Descriptor *Elem, unsigned NumElems, in Descriptor() function in Descriptor
227 Descriptor::Descriptor(const DeclTy &D, Descriptor *Elem, bool IsTemporary, in Descriptor() function in Descriptor
236 Descriptor::Descriptor(const DeclTy &D, Record *R, bool IsConst, in Descriptor() function in Descriptor
245 QualType Descriptor::getType() const { in getType()
253 SourceLocation Descriptor::getLocation() const { in getLocation()