Searched refs:TypePtr (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DQualTypeNames.cpp117 const Type *TypePtr,
122 assert(!isa<DependentTemplateSpecializationType>(TypePtr));
125 if (const auto *TST = dyn_cast<const TemplateSpecializationType>(TypePtr)) {
149 } else if (const auto *TSTRecord = dyn_cast<const RecordType>(TypePtr)) {
183 return TypePtr;
317 const ASTContext &Ctx, const Type *TypePtr,
319 if (!TypePtr) return nullptr;
323 if (const auto *TDT = dyn_cast<TypedefType>(TypePtr)) {
325 } else if (const auto *TagDeclType = dyn_cast<TagType>(TypePtr)) {
327 } else if (const auto *TST = dyn_cast<TemplateSpecializationType>(TypePtr)) {
116 getFullyQualifiedTemplateType(const ASTContext &Ctx, const Type *TypePtr, bool WithGlobalNsPrefix) argument
316 createNestedNameSpecifierForScopeOf( const ASTContext &Ctx, const Type *TypePtr, bool FullyQualified, bool WithGlobalNsPrefix) argument
452 const Type *TypePtr = getFullyQualifiedTemplateType( local
[all...]
H A DMicrosoftMangle.cpp1753 void *TypePtr; local
1763 TypePtr = OriginalType.getCanonicalType().getAsOpaquePtr();
1772 TypePtr = T.getCanonicalType().getAsOpaquePtr();
1775 ArgBackRefMap::iterator Found = FunArgBackReferences.find(TypePtr);
1788 FunArgBackReferences[TypePtr] = Size;
1801 auto *TypePtr = (const void *)&*Iter; local
1802 ArgBackRefMap::iterator Found = FunArgBackReferences.find(TypePtr);
1811 FunArgBackReferences[TypePtr] = Size;
H A DItaniumMangle.cpp4701 uintptr_t TypePtr = reinterpret_cast<uintptr_t>(T.getAsOpaquePtr());
4703 return mangleSubstitution(TypePtr);
4867 uintptr_t TypePtr = reinterpret_cast<uintptr_t>(T.getAsOpaquePtr());
4868 addSubstitution(TypePtr);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaExceptionSpec.cpp591 CanQualType TypePtr = S.Context.getCanonicalType(I).getUnqualifiedType(); local
592 if (OldTypes.count(TypePtr))
593 NewTypes.insert(TypePtr);
H A DSema.cpp2327 auto TypePtr = QT->castAs<ExtVectorType>()->getElementType().getTypePtr(); local
2328 return checkOpenCLDisabledTypeOrDecl(TypePtr, Loc, QT, OpenCLTypeExtMap);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp2191 const Type* TypePtr = QT->getAs<Type>(); local
2192 if (!isa<TypeOfExprType>(TypePtr))
2194 while (isa<TypeOfExprType>(TypePtr)) {
2195 const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr);
2197 TypePtr = QT->getAs<Type>();
3902 const Type* TypePtr = QT->getAs<Type>(); local
3903 if (isa<TypeOfExprType>(TypePtr)) {
3904 const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr);
H A DRewriteModernObjC.cpp2277 const Type* TypePtr = QT->getAs<Type>(); local
2278 if (!isa<TypeOfExprType>(TypePtr))
2280 while (isa<TypeOfExprType>(TypePtr)) {
2281 const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr);
2283 TypePtr = QT->getAs<Type>();
4731 const Type* TypePtr = QT->getAs<Type>(); local
4732 if (isa<TypeOfExprType>(TypePtr)) {
4733 const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr);

Completed in 295 milliseconds