Searched defs:ClassTy (Results 1 - 10 of 10) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGDebugInfo.h64 llvm::DIType *ClassTy = nullptr; member in class:clang::CodeGen::CGDebugInfo
H A DCGDebugInfo.cpp245 QualType ClassTy = local
247 ClassTy.print(OS, PrintingPolicy(LangOptions()));
477 if (!ClassTy)
478 ClassTy = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
481 return ClassTy;
491 if (!ClassTy)
492 ClassTy = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
498 auto *ISATy = DBuilder.createPointerType(ClassTy, Size);
2251 llvm::DIType *ClassTy = local
2254 Line, Size, Align, EltArray, ClassTy,
[all...]
H A DCGObjCGNU.cpp1629 llvm::StructType *ClassTy = llvm::StructType::get( local
1663 td.getTypeSizeInBits(ClassTy) /
1687 MakeGlobal(ClassTy, Elements, CGM.getPointerAlign(), ClassSym,
H A DCGObjCMac.cpp532 /// ClassTy - LLVM type for struct objc_class.
533 llvm::StructType *ClassTy; member in class:__anon1600::ObjCTypesHelper
1811 Target = CGF.Builder.CreateStructGEP(ObjCTypes.ClassTy, Target, 0);
1816 CGF.Builder.CreateStructGEP(ObjCTypes.ClassTy, MetaClassPtr, 1);
1825 ClassPtr = CGF.Builder.CreateStructGEP(ObjCTypes.ClassTy, ClassPtr, 1);
1830 llvm::Type *ClassTy = local
1832 Target = CGF.Builder.CreateBitCast(Target, ClassTy);
3334 llvm::Constant *Init = llvm::ConstantStruct::get(ObjCTypes.ClassTy,
3342 assert(GV->getType()->getElementType() == ObjCTypes.ClassTy &&
3360 unsigned Size = CGM.getDataLayout().getTypeAllocSize(ObjCTypes.ClassTy);
7014 llvm::Type *ClassTy = local
[all...]
/external/turbine/java/com/google/turbine/type/
H A DType.java63 class ClassTy implements Type { class in interface:Type
66 * The {@link ClassTy} for {@code java.lang.Object}. There's nothing special about this
69 public static final ClassTy OBJECT = asNonParametricClassTy(ClassSymbol.OBJECT);
71 /** The {@link ClassTy} for {@code java.lang.String}. */
72 public static final ClassTy STRING = asNonParametricClassTy(ClassSymbol.STRING);
74 /** Returns a {@link ClassTy} with no type arguments for the given {@link ClassSymbol}. */
75 public static ClassTy asNonParametricClassTy(ClassSymbol i) {
76 return new ClassTy(
88 public ClassTy(Iterable<SimpleClassTy> classes) { method in class:Type.ClassTy
123 /** One element of a qualified {@link ClassTy}
[all...]
/external/turbine/java/com/google/turbine/tree/
H A DTree.java212 public static class ClassTy extends Type { class in class:Tree
213 private final Optional<ClassTy> base;
217 public ClassTy( method in class:Tree.ClassTy
219 Optional<ClassTy> base,
244 public Optional<ClassTy> base() {
671 private final ImmutableList<ClassTy> exntys;
682 ImmutableList<ClassTy> exntys,
729 public ImmutableList<ClassTy> exntys() {
803 private final Optional<ClassTy> xtnds;
804 private final ImmutableList<ClassTy> impl
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp276 const DIType *ClassTy) {
277 auto InsertResult = TypeIndices.insert({{Node, ClassTy}, TI});
928 TypeIndex CodeViewDebug::lowerType(const DIType *Ty, const DIType *ClassTy) { argument
947 if (ClassTy) {
950 return lowerTypeMemberFunction(cast<DISubroutineType>(Ty), ClassTy,
1301 const DIType *ClassTy,
1304 TypeIndex ClassType = getTypeIndex(ClassTy);
1746 const DIType *ClassTy = ClassTyRef.resolve(); local
1755 auto I = TypeIndices.find({Ty, ClassTy});
1760 TypeIndex TI = lowerType(Ty, ClassTy);
274 recordTypeIndexForDINode(const DINode *Node, TypeIndex TI, const DIType *ClassTy) argument
1300 lowerTypeMemberFunction(const DISubroutineType *Ty, const DIType *ClassTy, int ThisAdjustment) argument
[all...]
/external/clang/lib/Sema/
H A DSemaExprCXX.cpp984 QualType ClassTy = Context.getTypeDeclType( local
988 ThisTy = Context.getPointerType(ClassTy);
H A DSemaOverload.cpp7006 const Type *ClassTy = PointerTy->getClass(); local
7016 Context.getMemberPointerType(QPointeeTy, ClassTy));
H A DSemaDeclCXX.cpp6898 QualType ClassTy = Context.getTagDeclType(ClassDecl); local
6899 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {

Completed in 664 milliseconds