Searched refs:TTy (Results 1 - 4 of 4) sorted by relevance

/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenTBAA.cpp73 if (const TagType *TTy = dyn_cast<TagType>(QTy))
74 return TTy->getDecl()->hasAttr<MayAliasAttr>();
77 if (const TypedefType *TTy = dyn_cast<TypedefType>(QTy)) {
78 if (TTy->getDecl()->hasAttr<MayAliasAttr>())
81 return TypeHasMayAlias(TTy->desugar());
177 if (const RecordType *TTy = QTy->getAs<RecordType>()) {
178 const RecordDecl *RD = TTy->getDecl()->getDefinition();
228 if (const RecordType *TTy = QTy->getAs<RecordType>()) {
229 const RecordDecl *RD = TTy->getDecl()->getDefinition();
248 if (const RecordType *TTy
[all...]
H A DCGDebugInfo.cpp1290 llvm::DIType *TTy = getOrCreateType(TA.getAsType(), Unit); local
1292 DBuilder.createTemplateTypeParameter(TheCU, Name, TTy));
1295 llvm::DIType *TTy = getOrCreateType(TA.getIntegralType(), Unit); local
1297 TheCU, Name, TTy,
1303 llvm::DIType *TTy = getOrCreateType(T, Unit); local
1328 TheCU, Name, TTy,
1333 llvm::DIType *TTy = getOrCreateType(T, Unit); local
1349 TheCU, Name, TTy, cast<llvm::Constant>(V)));
1368 llvm::DIType *TTy = getOrCreateType(T, Unit); local
1370 TheCU, Name, TTy, cas
[all...]
H A DCGExprScalar.cpp102 if (const auto *TTy =
104 AVAttr = TTy->getDecl()->getAttr<AlignValueAttr>();
116 if (const auto *TTy =
118 AVAttr = TTy->getDecl()->getAttr<AlignValueAttr>();
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExprCXX.cpp4699 QualType TTy = To->getType(); local
4701 const RecordType *TRec = TTy->getAs<RecordType>();
4703 Self.IsDerivedFrom(QuestionLoc, FTy, TTy);
4705 Self.IsDerivedFrom(QuestionLoc, TTy, FTy))) {
4710 if (TTy.isAtLeastAsQualifiedAs(FTy)) {
4711 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy);
4733 if (!TTy->getAs<TagType>())
4734 TTy = TTy.getUnqualifiedType();
4736 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy);
[all...]

Completed in 179 milliseconds