HomeSort by: relevance | last modified time | path
    Searched refs:TypePtr (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
QualTypeNames.cpp 117 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)) {
    [all...]
MicrosoftMangle.cpp 2067 void *TypePtr;
2077 TypePtr = OriginalType.getCanonicalType().getAsOpaquePtr();
2086 TypePtr = T.getCanonicalType().getAsOpaquePtr();
2089 ArgBackRefMap::iterator Found = FunArgBackReferences.find(TypePtr);
2102 FunArgBackReferences[TypePtr] = Size;
2115 auto *TypePtr = (const void *)&*Iter;
2116 ArgBackRefMap::iterator Found = FunArgBackReferences.find(TypePtr);
2125 FunArgBackReferences[TypePtr] = Size;
ItaniumMangle.cpp 5903 uintptr_t TypePtr = reinterpret_cast<uintptr_t>(T.getAsOpaquePtr());
5905 return mangleSubstitution(TypePtr);
6069 uintptr_t TypePtr = reinterpret_cast<uintptr_t>(T.getAsOpaquePtr());
6070 addSubstitution(TypePtr);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExceptionSpec.cpp 599 CanQualType TypePtr = S.Context.getCanonicalType(I).getUnqualifiedType();
600 if (OldTypes.count(TypePtr))
601 NewTypes.insert(TypePtr);
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 2280 const Type* TypePtr = QT->getAs<Type>();
2281 if (!isa<TypeOfExprType>(TypePtr))
2283 while (isa<TypeOfExprType>(TypePtr)) {
2284 const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr);
2286 TypePtr = QT->getAs<Type>();
4740 const Type* TypePtr = QT->getAs<Type>();
4741 if (isa<TypeOfExprType>(TypePtr)) {
4742 const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr);
RewriteObjC.cpp 2194 const Type* TypePtr = QT->getAs<Type>();
2195 if (!isa<TypeOfExprType>(TypePtr))
2197 while (isa<TypeOfExprType>(TypePtr)) {
2198 const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr);
2200 TypePtr = QT->getAs<Type>();
3910 const Type* TypePtr = QT->getAs<Type>();
3911 if (isa<TypeOfExprType>(TypePtr)) {
3912 const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr);

Completed in 50 milliseconds