/external/clang/lib/StaticAnalyzer/Checkers/ |
D | MallocSizeofChecker.cpp | 212 const TypeSourceInfo *TSI = nullptr; in checkASTCodeBody() local 214 TSI = in checkASTCodeBody() 217 TSI = i->ExplicitCastType; in checkASTCodeBody() 235 if (TSI) in checkASTCodeBody() 236 Ranges.push_back(TSI->getTypeLoc().getSourceRange()); in checkASTCodeBody()
|
/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()
|
D | Decl.cpp | 762 if (TypeSourceInfo *TSI = Function->getTypeSourceInfo()) in getLVForNamespaceScopeDecl() local 763 TypeAsWritten = TSI->getType(); in getLVForNamespaceScopeDecl() 906 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo()) in getLVForClassMember() local 907 TypeAsWritten = TSI->getType(); in getLVForClassMember() 1615 TypeSourceInfo *TSI = getTypeSourceInfo(); in getTypeSpecStartLoc() local 1616 if (TSI) return TSI->getTypeLoc().getBeginLoc(); in getTypeSpecStartLoc() 2267 TypeSourceInfo *TSI = getTypeSourceInfo(); in getOriginalType() local 2268 QualType T = TSI ? TSI->getType() : getType(); in getOriginalType() 2805 const TypeSourceInfo *TSI = getTypeSourceInfo(); in getReturnTypeSourceRange() local 2806 if (!TSI) in getReturnTypeSourceRange() [all …]
|
D | TemplateBase.cpp | 440 if (TypeSourceInfo *TSI = getTypeSourceInfo()) in getSourceRange() local 441 return TSI->getTypeLoc().getSourceRange(); in getSourceRange()
|
D | DeclObjC.cpp | 963 const auto *TSI = getReturnTypeSourceInfo(); in getReturnTypeSourceRange() local 964 if (TSI) in getReturnTypeSourceRange() 965 return TSI->getTypeLoc().getSourceRange(); in getReturnTypeSourceRange()
|
D | DeclPrinter.cpp | 612 if (TypeSourceInfo *TSI = D->getFriendType()) { in VisitFriendDecl() local 617 Out << " " << TSI->getType().getAsString(Policy); in VisitFriendDecl()
|
/external/clang/lib/Sema/ |
D | SemaLambda.cpp | 723 TypeSourceInfo *TSI = TLB.getTypeSourceInfo(Context, DeductType); in performLambdaInitCaptureInitialization() local 734 << DeclarationName(Id) << TSI->getType() << Loc; in performLambdaInitCaptureInitialization() 739 << DeclarationName(Id) << TSI->getType() << Loc; in performLambdaInitCaptureInitialization() 752 if (DeduceAutoType(TSI, DeduceInit, DeducedType) == DAR_Failed) { in performLambdaInitCaptureInitialization() 756 << (DeduceInit->getType().isNull() ? TSI->getType() in performLambdaInitCaptureInitialization() 761 << DeclarationName(Id) << TSI->getType() in performLambdaInitCaptureInitialization() 762 << (DeduceInit->getType().isNull() ? TSI->getType() in performLambdaInitCaptureInitialization() 808 TypeSourceInfo *TSI = Context.getTrivialTypeSourceInfo(InitCaptureType, in createLambdaInitCaptureVarDecl() local 815 Loc, Id, InitCaptureType, TSI, SC_Auto); in createLambdaInitCaptureVarDecl()
|
D | SemaDeclCXX.cpp | 4596 TypeSourceInfo *TSI = TL.getParam(I)->getTypeSourceInfo(); in Check() local 4597 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType); in Check() 4610 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo()) in Check() local 4611 Visit(TSI->getTypeLoc(), Sema::AbstractNone); in Check() 4679 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo()) in CheckAbstractClassUsage() local 4680 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone); in CheckAbstractClassUsage() 4699 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo()) in CheckAbstractClassUsage() local 4700 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType); in CheckAbstractClassUsage() 4703 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo()) in CheckAbstractClassUsage() local 4704 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType); in CheckAbstractClassUsage() [all …]
|
D | SemaObjCProperty.cpp | 149 TypeSourceInfo *TSI = GetTypeForDeclarator(FD.D, S); in ActOnProperty() local 150 QualType T = TSI->getType(); in ActOnProperty() 176 isOverridingProperty, TSI, in ActOnProperty() 187 TSI, MethodImplKind); in ActOnProperty()
|
D | SemaTemplate.cpp | 3021 TypeSourceInfo *TSI = nullptr; in CheckTemplateTypeArgument() local 3030 TSI = AL.getTypeSourceInfo(); in CheckTemplateTypeArgument() 3089 TSI = TLB.getTypeSourceInfo(Context, ArgType); in CheckTemplateTypeArgument() 3094 TemplateArgumentLocInfo(TSI)); in CheckTemplateTypeArgument() 3112 if (CheckTemplateArgument(Param, TSI)) in CheckTemplateTypeArgument() 7903 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T); in ActOnTypenameType() local 7905 DependentNameTypeLoc TL = TSI->getTypeLoc().castAs<DependentNameTypeLoc>(); in ActOnTypenameType() 7910 ElaboratedTypeLoc TL = TSI->getTypeLoc().castAs<ElaboratedTypeLoc>(); in ActOnTypenameType() 7916 return CreateParsedType(T, TSI); in ActOnTypenameType() 7985 TypeSourceInfo *TSI = Builder.getTypeSourceInfo(Context, T); in ActOnTypenameType() local [all …]
|
D | Sema.cpp | 591 if (TypeSourceInfo *TSI = (*I)->getFriendType()) { in IsRecordFullyDefined() local 593 if (CXXRecordDecl *FriendD = TSI->getType()->getAsCXXRecordDecl()) in IsRecordFullyDefined()
|
D | SemaDeclObjC.cpp | 1340 static SourceRange getTypeRange(TypeSourceInfo *TSI) { in getTypeRange() argument 1341 return (TSI ? TSI->getTypeLoc().getSourceRange() : SourceRange()); in getTypeRange()
|
D | SemaDecl.cpp | 4430 TypeSourceInfo *TSI = nullptr; in RebuildDeclaratorInCurrentInstantiation() local 4431 QualType T = S.GetTypeFromParser(DS.getRepAsType(), &TSI); in RebuildDeclaratorInCurrentInstantiation() 4437 if (!TSI) in RebuildDeclaratorInCurrentInstantiation() 4438 TSI = S.Context.getTrivialTypeSourceInfo(T, DS.getTypeSpecTypeLoc()); in RebuildDeclaratorInCurrentInstantiation() 4441 TSI = S.RebuildTypeInCurrentInstantiation(TSI, D.getIdentifierLoc(), Name); in RebuildDeclaratorInCurrentInstantiation() 4442 if (!TSI) return true; in RebuildDeclaratorInCurrentInstantiation() 4445 ParsedType LocType = S.CreateParsedType(TSI->getType(), TSI); in RebuildDeclaratorInCurrentInstantiation()
|
D | TreeTransform.h | 3817 TypeSourceInfo *TSI = in TransformTypeInObjectScope() local 3819 if (TSI) in TransformTypeInObjectScope() 3820 return TSI->getTypeLoc(); in TransformTypeInObjectScope()
|
/external/clang/include/clang/Sema/ |
D | Initialization.h | 325 static InitializedEntity InitializeCompoundLiteralInit(TypeSourceInfo *TSI) { in InitializeCompoundLiteralInit() argument 327 TSI->getType()); in InitializeCompoundLiteralInit() 328 Result.TypeInfo = TSI; in InitializeCompoundLiteralInit()
|
/external/clang/include/clang/AST/ |
D | DataRecursiveASTVisitor.h | 744 if (TypeSourceInfo *TSI = ArgLoc.getTypeSourceInfo()) in TraverseTemplateArgumentLoc() local 745 return getDerived().TraverseTypeLoc(TSI->getTypeLoc()); in TraverseTemplateArgumentLoc() 1619 if (TypeSourceInfo *TSI = D->getTypeAsWritten()) 1620 TRY_TO(TraverseTypeLoc(TSI->getTypeLoc())); 1796 if (TypeSourceInfo *TSI = D->getTypeAsWritten()) 1797 TRY_TO(TraverseTypeLoc(TSI->getTypeLoc()));
|
D | RecursiveASTVisitor.h | 810 if (TypeSourceInfo *TSI = ArgLoc.getTypeSourceInfo()) in TraverseTemplateArgumentLoc() local 811 return getDerived().TraverseTypeLoc(TSI->getTypeLoc()); in TraverseTemplateArgumentLoc() 1654 if (TypeSourceInfo *TSI = D->getTypeAsWritten()) \ 1655 TRY_TO(TraverseTypeLoc(TSI->getTypeLoc())); \ 1776 if (TypeSourceInfo *TSI = D->getTypeSourceInfo()) { in TraverseFunctionHelper() local 1777 TRY_TO(TraverseTypeLoc(TSI->getTypeLoc())); in TraverseFunctionHelper()
|
D | ExprCXX.h | 584 void setTypeOperandSourceInfo(TypeSourceInfo *TSI) { in setTypeOperandSourceInfo() argument 586 Operand = TSI; in setTypeOperandSourceInfo() 719 void setTypeOperandSourceInfo(TypeSourceInfo *TSI) { in setTypeOperandSourceInfo() argument 721 Operand = TSI; in setTypeOperandSourceInfo()
|
D | ASTContext.h | 718 TemplateOrSpecializationInfo TSI);
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | CallEvent.cpp | 258 if (const TypeSourceInfo *TSI = BD->getSignatureAsWritten()) { in getDeclaredResultType() local 259 QualType Ty = TSI->getType(); in getDeclaredResultType()
|
D | MemRegion.cpp | 825 if (const TypeSourceInfo *TSI = BD->getSignatureAsWritten()) in getVarRegion() local 826 T = TSI->getType(); in getVarRegion()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 5667 const TargetSelectionDAGInfo &TSI = DAG.getSelectionDAGInfo(); in visitMemCmpCall() local 5669 TSI.EmitTargetCodeForMemcmp(DAG, getCurSDLoc(), DAG.getRoot(), in visitMemCmpCall() 5764 const TargetSelectionDAGInfo &TSI = DAG.getSelectionDAGInfo(); in visitMemChrCall() local 5766 TSI.EmitTargetCodeForMemchr(DAG, getCurSDLoc(), DAG.getRoot(), in visitMemChrCall() 5792 const TargetSelectionDAGInfo &TSI = DAG.getSelectionDAGInfo(); in visitStrCpyCall() local 5794 TSI.EmitTargetCodeForStrcpy(DAG, getCurSDLoc(), getRoot(), in visitStrCpyCall() 5821 const TargetSelectionDAGInfo &TSI = DAG.getSelectionDAGInfo(); in visitStrCmpCall() local 5823 TSI.EmitTargetCodeForStrcmp(DAG, getCurSDLoc(), DAG.getRoot(), in visitStrCmpCall() 5848 const TargetSelectionDAGInfo &TSI = DAG.getSelectionDAGInfo(); in visitStrLenCall() local 5850 TSI.EmitTargetCodeForStrlen(DAG, getCurSDLoc(), DAG.getRoot(), in visitStrLenCall() [all …]
|
D | SelectionDAG.cpp | 931 : TM(tm), TSI(nullptr), TLI(nullptr), OptLevel(OL), in SelectionDAG() 942 TSI = getSubtarget().getSelectionDAGInfo(); in init() 4321 if (TSI) { in getMemcpy() 4322 SDValue Result = TSI->EmitTargetCodeForMemcpy( in getMemcpy() 4390 if (TSI) { in getMemmove() 4391 SDValue Result = TSI->EmitTargetCodeForMemmove( in getMemmove() 4445 if (TSI) { in getMemset() 4446 SDValue Result = TSI->EmitTargetCodeForMemset( in getMemset()
|
/external/llvm/include/llvm/CodeGen/ |
D | SelectionDAG.h | 177 const TargetSelectionDAGInfo *TSI; 283 const TargetSelectionDAGInfo &getSelectionDAGInfo() const { return *TSI; }
|
/external/icu/icu4c/source/data/translit/ |
D | Amharic_Latin_BGN.txt | 279 ጺ → ts $ejective ī ; # ETHIOPIC SYLLABLE TSI
|