/external/llvm-project/clang/lib/AST/ |
D | Comment.cpp | 301 const TypeSourceInfo *TSI; in fill() local 303 TSI = VD->getTypeSourceInfo(); in fill() 305 TSI = PD->getTypeSourceInfo(); in fill() 307 TSI = nullptr; in fill() 308 if (TSI) { in fill() 309 TypeLoc TL = TSI->getTypeLoc().getUnqualifiedLoc(); in fill() 327 const TypeSourceInfo *TSI = in fill() local 331 if (!TSI) in fill() 333 TypeLoc TL = TSI->getTypeLoc().getUnqualifiedLoc(); in fill() 351 const TypeSourceInfo *TSI = TAD->getTypeSourceInfo(); in fill() local [all …]
|
D | ExprCXX.cpp | 981 CXXConstructorDecl *Cons, QualType Ty, TypeSourceInfo *TSI, in CXXTemporaryObjectExpr() argument 986 CXXTemporaryObjectExprClass, Ty, TSI->getTypeLoc().getBeginLoc(), in CXXTemporaryObjectExpr() 990 TSI(TSI) {} in CXXTemporaryObjectExpr() 998 TypeSourceInfo *TSI, ArrayRef<Expr *> Args, SourceRange ParenOrBraceRange, in Create() argument 1006 Cons, Ty, TSI, Args, ParenOrBraceRange, HadMultipleCandidates, in Create() 1324 TypeSourceInfo *TSI, in CXXUnresolvedConstructExpr() argument 1329 (TSI->getType()->isLValueReferenceType() in CXXUnresolvedConstructExpr() 1331 : TSI->getType()->isRValueReferenceType() ? VK_XValue in CXXUnresolvedConstructExpr() 1334 TSI(TSI), LParenLoc(LParenLoc), RParenLoc(RParenLoc) { in CXXUnresolvedConstructExpr() 1343 const ASTContext &Context, QualType T, TypeSourceInfo *TSI, SourceLocation LParenLoc, in Create() argument [all …]
|
D | Decl.cpp | 828 if (TypeSourceInfo *TSI = Function->getTypeSourceInfo()) in getLVForNamespaceScopeDecl() local 829 TypeAsWritten = TSI->getType(); in getLVForNamespaceScopeDecl() 979 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo()) in getLVForClassMember() local 980 TypeAsWritten = TSI->getType(); in getLVForClassMember() 1831 TypeSourceInfo *TSI = getTypeSourceInfo(); in getTypeSpecStartLoc() local 1832 if (TSI) return TSI->getTypeLoc().getBeginLoc(); in getTypeSpecStartLoc() 1837 TypeSourceInfo *TSI = getTypeSourceInfo(); in getTypeSpecEndLoc() local 1838 if (TSI) return TSI->getTypeLoc().getEndLoc(); in getTypeSpecEndLoc() 2713 TypeSourceInfo *TSI = getTypeSourceInfo(); in getOriginalType() local 2714 QualType T = TSI ? TSI->getType() : getType(); in getOriginalType() [all …]
|
/external/llvm-project/clang-tools-extra/clang-tidy/modernize/ |
D | UseNoexceptCheck.cpp | 62 if (const auto *TSI = FuncDecl->getTypeSourceInfo()) in check() local 64 TSI->getTypeLoc().castAs<FunctionTypeLoc>().getExceptionSpecRange(); in check() 72 if (const auto *TSI = ParmDecl->getTypeSourceInfo()) in check() local 73 Range = TSI->getTypeLoc() in check()
|
D | UseTrailingReturnTypeCheck.cpp | 451 const TypeSourceInfo *TSI = F->getTypeSourceInfo(); in check() local 452 if (!TSI) in check() 456 TSI->getTypeLoc().IgnoreParens().getAs<FunctionTypeLoc>(); in check()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | MallocSizeofChecker.cpp | 211 const TypeSourceInfo *TSI = nullptr; in checkASTCodeBody() local 213 TSI = in checkASTCodeBody() 216 TSI = i->ExplicitCastType; in checkASTCodeBody() 234 if (TSI) in checkASTCodeBody() 235 Ranges.push_back(TSI->getTypeLoc().getSourceRange()); in checkASTCodeBody()
|
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
D | MallocSizeofChecker.cpp | 210 const TypeSourceInfo *TSI = nullptr; in checkASTCodeBody() local 212 TSI = in checkASTCodeBody() 215 TSI = i->ExplicitCastType; in checkASTCodeBody() 233 if (TSI) in checkASTCodeBody() 234 Ranges.push_back(TSI->getTypeLoc().getSourceRange()); in checkASTCodeBody()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | ARMMacroFusion.cpp | 52 const TargetSubtargetInfo &TSI, in shouldScheduleAdjacent() argument 55 const ARMSubtarget &ST = static_cast<const ARMSubtarget&>(TSI); in shouldScheduleAdjacent()
|
/external/llvm-project/llvm/lib/Target/ARM/ |
D | ARMMacroFusion.cpp | 52 const TargetSubtargetInfo &TSI, in shouldScheduleAdjacent() argument 55 const ARMSubtarget &ST = static_cast<const ARMSubtarget&>(TSI); in shouldScheduleAdjacent()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86MacroFusion.cpp | 35 const TargetSubtargetInfo &TSI, in shouldScheduleAdjacent() argument 38 const X86Subtarget &ST = static_cast<const X86Subtarget &>(TSI); in shouldScheduleAdjacent()
|
/external/llvm-project/llvm/lib/Target/X86/ |
D | X86MacroFusion.cpp | 35 const TargetSubtargetInfo &TSI, in shouldScheduleAdjacent() argument 38 const X86Subtarget &ST = static_cast<const X86Subtarget &>(TSI); in shouldScheduleAdjacent()
|
/external/llvm-project/clang-tools-extra/clang-tidy/readability/ |
D | ConvertMemberFunctionsToStatic.cpp | 107 static SourceRange getLocationOfConst(const TypeSourceInfo *TSI, in getLocationOfConst() argument 110 assert(TSI); in getLocationOfConst() 111 const auto FTL = TSI->getTypeLoc().IgnoreParens().getAs<FunctionTypeLoc>(); in getLocationOfConst()
|
D | MakeMemberFunctionConstCheck.cpp | 235 TypeSourceInfo *TSI = M->getTypeSourceInfo(); in getConstInsertionPoint() local 236 if (!TSI) in getConstInsertionPoint() 240 TSI->getTypeLoc().IgnoreParens().getAs<FunctionTypeLoc>(); in getConstInsertionPoint()
|
/external/llvm-project/llvm/lib/Target/PowerPC/ |
D | PPCMacroFusion.cpp | 145 const TargetSubtargetInfo &TSI, in shouldScheduleAdjacent() argument 152 const PPCSubtarget &ST = static_cast<const PPCSubtarget&>(TSI); in shouldScheduleAdjacent()
|
/external/clang/lib/AST/ |
D | Comment.cpp | 235 const TypeSourceInfo *TSI = TD->getTypeSourceInfo(); in fill() local 236 if (!TSI) in fill() 238 TypeLoc TL = TSI->getTypeLoc().getUnqualifiedLoc(); in fill()
|
/external/llvm-project/clang-tools-extra/clangd/ |
D | AST.cpp | 256 if (const TypeSourceInfo *TSI = Cls->getTypeAsWritten()) { in printTemplateSpecializationArgs() local 260 auto STL = TSI->getTypeLoc().getAs<TemplateSpecializationTypeLoc>(); in printTemplateSpecializationArgs() 321 if (const auto *TSI = CTSD->getTypeAsWritten()) in declaredType() local 322 return TSI->getType(); in declaredType()
|
/external/llvm-project/llvm/include/llvm/CodeGen/ |
D | MacroFusion.h | 31 const TargetSubtargetInfo &TSI,
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | MacroFusion.h | 31 const TargetSubtargetInfo &TSI,
|
/external/llvm-project/llvm/lib/Target/AMDGPU/ |
D | AMDGPUMacroFusion.cpp | 29 const TargetSubtargetInfo &TSI, in shouldScheduleAdjacent() argument
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPUMacroFusion.cpp | 29 const TargetSubtargetInfo &TSI, in shouldScheduleAdjacent() argument
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaLambda.cpp | 817 TypeSourceInfo *TSI = TLB.getTypeSourceInfo(Context, DeductType); in buildLambdaInitCaptureInitialization() local 821 /*VarDecl*/nullptr, DeclarationName(Id), DeductType, TSI, in buildLambdaInitCaptureInitialization() 862 TypeSourceInfo *TSI = Context.getTrivialTypeSourceInfo(InitCaptureType, Loc); in createLambdaInitCaptureVarDecl() local 863 if (auto PETL = TSI->getTypeLoc().getAs<PackExpansionTypeLoc>()) in createLambdaInitCaptureVarDecl() 871 Loc, Id, InitCaptureType, TSI, SC_Auto); in createLambdaInitCaptureVarDecl() 1696 TypeSourceInfo *TSI = nullptr; in BuildCaptureField() local 1700 TSI = Capture.getVariable()->getTypeSourceInfo(); in BuildCaptureField() 1705 if (!TSI) in BuildCaptureField() 1706 TSI = Context.getTrivialTypeSourceInfo(FieldType, Loc); in BuildCaptureField() 1711 /*Id=*/nullptr, FieldType, TSI, /*BW=*/nullptr, in BuildCaptureField()
|
/external/llvm-project/llvm/lib/Target/AArch64/ |
D | AArch64MacroFusion.cpp | 376 const TargetSubtargetInfo &TSI, in shouldScheduleAdjacent() argument 379 const AArch64Subtarget &ST = static_cast<const AArch64Subtarget&>(TSI); in shouldScheduleAdjacent()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64MacroFusion.cpp | 376 const TargetSubtargetInfo &TSI, in shouldScheduleAdjacent() argument 379 const AArch64Subtarget &ST = static_cast<const AArch64Subtarget&>(TSI); in shouldScheduleAdjacent()
|
/external/clang/include/clang/Sema/ |
D | Initialization.h | 326 static InitializedEntity InitializeCompoundLiteralInit(TypeSourceInfo *TSI) { in InitializeCompoundLiteralInit() argument 328 TSI->getType()); in InitializeCompoundLiteralInit() 329 Result.TypeInfo = TSI; in InitializeCompoundLiteralInit()
|
/external/llvm-project/clang/include/clang/Sema/ |
D | Initialization.h | 413 static InitializedEntity InitializeCompoundLiteralInit(TypeSourceInfo *TSI) { in InitializeCompoundLiteralInit() argument 415 TSI->getType()); in InitializeCompoundLiteralInit() 416 Result.TypeInfo = TSI; in InitializeCompoundLiteralInit()
|