Home
last modified time | relevance | path

Searched refs:TypedefType (Results 1 – 25 of 57) sorted by relevance

123

/freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/
H A DCocoaConventions.cpp28 while (const TypedefType *TD = RetTy->getAs<TypedefType>()) { in isRefType()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DNSAPI.cpp395 const TypedefType *TDT = T->getAs<TypedefType>(); in getNSNumberFactoryMethodKind()
518 while (const TypedefType *TDT = T->getAs<TypedefType>()) { in GetNSIntegralKind()
575 while (const TypedefType *TDT = T->getAs<TypedefType>()) { in isObjCTypedef()
H A DFormatString.cpp963 assert(isa<TypedefType>(QT) && "Expected a TypedefType"); in namedTypeToLengthModifier()
964 const TypedefNameDecl *Typedef = cast<TypedefType>(QT)->getDecl(); in namedTypeToLengthModifier()
987 if (!isa<TypedefType>(T)) in namedTypeToLengthModifier()
990 Typedef = cast<TypedefType>(T)->getDecl(); in namedTypeToLengthModifier()
H A DQualTypeNames.cpp254 } else if (const auto *TDD = dyn_cast<TypedefType>(Type)) { in getFullyQualifiedNestedNameSpecifier()
326 if (const auto *TDT = dyn_cast<TypedefType>(TypePtr)) { in createNestedNameSpecifierForScopeOf()
H A DODRHash.cpp948 void VisitTypedefType(const TypedefType *T) { in VisitTypedefType()
953 if (const TypedefType *Underlying = in VisitTypedefType()
954 dyn_cast<TypedefType>(UnderlyingType.getTypePtr())) { in VisitTypedefType()
H A DPrintfFormatString.cpp796 if (isa<TypedefType>(QT) && (LangOpt.C99 || LangOpt.CPlusPlus11)) in fixType()
826 if (!isa<TypedefType>(QT) && QT->isCharType()) { in fixType()
H A DType.cpp81 ND = ty->getAs<TypedefType>()->getDecl(); in getBaseTypeIdentifier()
404 template <> const TypedefType *Type::getAs() const { in getAs()
405 return getAsSugar<TypedefType>(this); in getAs()
3081 QualType TypedefType::desugar() const { in desugar()
3905 if (const auto *typedefType = dyn_cast<TypedefType>(cur)) in isObjCNSObjectType()
3916 if (const auto *typedefType = dyn_cast<TypedefType>(this)) in isObjCIndependentClassType()
H A DScanfFormatString.cpp501 if (isa<TypedefType>(PT) && (LangOpt.C99 || LangOpt.CPlusPlus11)) in fixType()
H A DASTStructuralEquivalence.cpp573 if (!IsStructurallyEquivalent(Context, cast<TypedefType>(T1)->getDecl(), in IsStructurallyEquivalent()
574 cast<TypedefType>(T2)->getDecl())) in IsStructurallyEquivalent()
H A DTypePrinter.cpp957 void TypePrinter::printTypedefBefore(const TypedefType *T, raw_ostream &OS) { in printTypedefBefore()
961 void TypePrinter::printTypedefAfter(const TypedefType *T, raw_ostream &OS) {} in printTypedefAfter()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DNonnullGlobalConstantsChecker.cpp110 while (auto *T = dyn_cast<TypedefType>(Ty)) { in isGlobalConstString()
131 } else if (auto *T = dyn_cast<TypedefType>(Ty)) { in isNonnullType()
H A DBoolAssignmentChecker.cpp46 if (const TypedefType *TT = Ty->getAs<TypedefType>()) in isBooleanType()
H A DNSErrorChecker.cpp305 const TypedefType* TT = PPT->getPointeeType()->getAs<TypedefType>(); in IsCFError()
H A DLLVMConventionsChecker.cpp54 const TypedefType *TT = T->getAs<TypedefType>(); in IsStdString()
H A DStackAddrEscapeChecker.cpp130 const auto *T = C.getVariable()->getType()->getAs<TypedefType>(); in isSemaphoreCaptured()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTContext.cpp2971 return IsArrayType(llvm::cast<clang::TypedefType>(qual_type) in IsArrayType()
4017 const clang::TypedefType *typedef_type = in GetTypeName()
4018 qual_type->getAs<clang::TypedefType>(); in GetTypeName()
4222 llvm::cast<clang::TypedefType>(qual_type) in GetTypeInfo()
4995 const clang::TypedefType *typedef_type = in GetTypedefedType()
4996 llvm::dyn_cast<clang::TypedefType>(GetQualType(type)); in GetTypedefedType()
7857 const clang::TypedefType *typedef_type = in GetAsTypedefDecl()
9352 llvm::cast<clang::TypedefType>(qual_type) in DumpValue()
9482 llvm::cast<clang::TypedefType>(qual_type) in DumpTypeValue()
9701 const clang::TypedefType *typedef_type = in DumpTypeDescription()
[all …]
H A DClangASTImporter.cpp367 llvm::cast<clang::TypedefType>(qual_type) in CanImport()
443 llvm::cast<clang::TypedefType>(qual_type) in Import()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenTBAA.cpp86 if (const TypedefType *TTy = dyn_cast<TypedefType>(QTy)) { in TypeHasMayAlias()
H A DCGDebugInfo.h153 llvm::DIType *CreateType(const TypedefType *Ty, llvm::DIFile *Fg);
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DTextNodeDumper.h282 void VisitTypedefType(const TypedefType *T);
/freebsd-12.1/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DObjCMT.cpp506 if (!isa<TypedefType>(RT)) { in rewriteToObjCProperty()
1056 while (const TypedefType *TD = dyn_cast<TypedefType>(T.getTypePtr())) in TypeIsInnerPointer()
1359 while (const TypedefType *TD = dyn_cast<TypedefType>(Ty.getTypePtr())) in IsVoidStarType()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Rename/
H A DUSRLocFinder.cpp453 if (const auto* TT = Loc.getType()->getAs<clang::TypedefType>()) in getSupportedDeclFromTypeLoc()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExprObjC.cpp3624 static inline T *getObjCBridgeAttr(const TypedefType *TD) { in getObjCBridgeAttr()
3638 while (const TypedefType *TD = dyn_cast<TypedefType>(T.getTypePtr())) { in ObjCBridgeRelatedAttrFromType()
3785 while (const TypedefType *TD = dyn_cast<TypedefType>(T.getTypePtr())) { in CheckObjCBridgeNSCast()
3851 while (const TypedefType *TD = dyn_cast<TypedefType>(T.getTypePtr())) { in CheckObjCBridgeCFCast()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h798 if (const auto *S = dyn_cast<TypedefType>(EffectiveType)) { in matchesSpecialized()
1120 TemplateSpecializationType, TemplateTypeParmType, TypedefType,
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountDiagnostics.cpp36 if (!PT.isNull() && !QT->getAs<TypedefType>()) in getPrettyTypeName()

123