reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/CodeGen/TargetInfo.cpp
 9185   if (const ArrayType *AT = QT->getAsArrayTypeUnsafe())
 9188     return appendArrayType(Enc, QT, AT, CGM, TSC, "");
 9190   appendQualifier(Enc, QT);
 9192   if (const BuiltinType *BT = QT->getAs<BuiltinType>())
 9195   if (const PointerType *PT = QT->getAs<PointerType>())
 9198   if (const EnumType *ET = QT->getAs<EnumType>())
 9199     return appendEnumType(Enc, ET, TSC, QT.getBaseTypeIdentifier());
 9201   if (const RecordType *RT = QT->getAsStructureType())
 9202     return appendRecordType(Enc, RT, CGM, TSC, QT.getBaseTypeIdentifier());
 9204   if (const RecordType *RT = QT->getAsUnionType())
 9205     return appendRecordType(Enc, RT, CGM, TSC, QT.getBaseTypeIdentifier());
 9207   if (const FunctionType *FT = QT->getAs<FunctionType>())