Home | History | Annotate | Download | only in VMCore

Lines Matching refs:ST

390   StructType *&ST = Context.pImpl->AnonStructTypes[Key];
391 if (ST) return ST;
394 ST = new (Context.pImpl->TypeAllocator) StructType(Context);
395 ST->setSubclassData(SCDB_IsLiteral); // Literal struct.
396 ST->setBody(ETypes, isPacked);
397 return ST;
458 StructType *ST = new (Context.pImpl->TypeAllocator) StructType(Context);
460 ST->setName(Name);
461 return ST;
483 StructType *ST = create(Context, Name);
484 ST->setBody(Elements, isPacked);
485 ST;