Home
last modified time | relevance | path

Searched refs:TSI (Results 1 – 21 of 21) sorted by relevance

/external/clang/lib/AST/
DComment.cpp250 const TypeSourceInfo *TSI = TD->getTypeSourceInfo(); in fill() local
251 if (!TSI) in fill()
253 TypeLoc TL = TSI->getTypeLoc().getUnqualifiedLoc(); in fill()
258 TSI = TypedefTL->getTypedefNameDecl()->getTypeSourceInfo(); in fill()
259 if (TSI) in fill()
261 TL = TSI->getTypeLoc().getUnqualifiedLoc(); in fill()
DMicrosoftMangle.cpp388 TypeSourceInfo *TSI = Spec->getTypeAsWritten(); in isTemplate() local
389 if (TSI) { in isTemplate()
391 cast<TemplateSpecializationTypeLoc>(TSI->getTypeLoc()); in isTemplate()
1130 TypeSourceInfo *TSI = (*Parm)->getTypeSourceInfo(); in mangleType() local
1131 QualType Type = TSI ? TSI->getType() : (*Parm)->getType(); in mangleType()
DTemplateBase.cpp415 if (TypeSourceInfo *TSI = getTypeSourceInfo()) in getSourceRange() local
416 return TSI->getTypeLoc().getSourceRange(); in getSourceRange()
DDecl.cpp1039 TypeSourceInfo *TSI = getTypeSourceInfo(); in getTypeSpecStartLoc() local
1040 if (TSI) return TSI->getTypeLoc().getBeginLoc(); in getTypeSpecStartLoc()
/external/clang/lib/StaticAnalyzer/Checkers/
DMallocSizeofChecker.cpp208 const TypeSourceInfo *TSI = 0; in checkASTCodeBody() local
210 TSI = in checkASTCodeBody()
213 TSI = i->ExplicitCastType; in checkASTCodeBody()
231 if (TSI) in checkASTCodeBody()
232 Ranges.push_back(TSI->getTypeLoc().getSourceRange()); in checkASTCodeBody()
/external/clang/include/clang/AST/
DRecursiveASTVisitor.h760 if (TypeSourceInfo *TSI = ArgLoc.getTypeSourceInfo()) in TraverseTemplateArgumentLoc() local
761 return getDerived().TraverseTypeLoc(TSI->getTypeLoc()); in TraverseTemplateArgumentLoc()
1603 if (TypeSourceInfo *TSI = D->getTypeAsWritten())
1604 TRY_TO(TraverseTypeLoc(TSI->getTypeLoc()));
1717 if (clang::TypeSourceInfo *TSI = D->getTypeSourceInfo()) { in TraverseFunctionHelper() local
1718 TRY_TO(TraverseTypeLoc(TSI->getTypeLoc())); in TraverseFunctionHelper()
DExprCXX.h517 void setTypeOperandSourceInfo(TypeSourceInfo *TSI) { in setTypeOperandSourceInfo() argument
519 Operand = TSI; in setTypeOperandSourceInfo()
592 void setTypeOperandSourceInfo(TypeSourceInfo *TSI) { in setTypeOperandSourceInfo() argument
594 Operand = TSI; in setTypeOperandSourceInfo()
/external/clang/lib/Sema/
DSemaDeclCXX.cpp3639 TypeSourceInfo *TSI = TL.getArg(I)->getTypeSourceInfo(); in Check() local
3640 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType); in Check()
3653 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo()) in Check() local
3654 Visit(TSI->getTypeLoc(), Sema::AbstractNone); in Check()
3722 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo()) in CheckAbstractClassUsage() local
3723 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone); in CheckAbstractClassUsage()
3744 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo()) in CheckAbstractClassUsage() local
3745 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType); in CheckAbstractClassUsage()
3748 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo()) in CheckAbstractClassUsage() local
3749 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType); in CheckAbstractClassUsage()
[all …]
DSema.cpp483 if (TypeSourceInfo *TSI = (*I)->getFriendType()) { in IsRecordFullyDefined() local
485 if (CXXRecordDecl *FriendD = TSI->getType()->getAsCXXRecordDecl()) in IsRecordFullyDefined()
DSemaObjCProperty.cpp124 TypeSourceInfo *TSI = GetTypeForDeclarator(FD.D, S); in ActOnProperty() local
125 QualType T = TSI->getType(); in ActOnProperty()
150 isOverridingProperty, TSI, in ActOnProperty()
166 TSI, MethodImplKind); in ActOnProperty()
DSemaTemplate.cpp6937 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T); in ActOnTypenameType() local
6939 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc()); in ActOnTypenameType()
6944 ElaboratedTypeLoc TL = cast<ElaboratedTypeLoc>(TSI->getTypeLoc()); in ActOnTypenameType()
6950 return CreateParsedType(T, TSI); in ActOnTypenameType()
7020 TypeSourceInfo *TSI = Builder.getTypeSourceInfo(Context, T); in ActOnTypenameType() local
7021 return CreateParsedType(T, TSI); in ActOnTypenameType()
DSemaDeclObjC.cpp1234 static SourceRange getTypeRange(TypeSourceInfo *TSI) { in getTypeRange() argument
1235 return (TSI ? TSI->getTypeLoc().getSourceRange() : SourceRange()); in getTypeRange()
DSemaDecl.cpp3407 TypeSourceInfo *TSI = 0; in RebuildDeclaratorInCurrentInstantiation() local
3408 QualType T = S.GetTypeFromParser(DS.getRepAsType(), &TSI); in RebuildDeclaratorInCurrentInstantiation()
3414 if (!TSI) in RebuildDeclaratorInCurrentInstantiation()
3415 TSI = S.Context.getTrivialTypeSourceInfo(T, DS.getTypeSpecTypeLoc()); in RebuildDeclaratorInCurrentInstantiation()
3418 TSI = S.RebuildTypeInCurrentInstantiation(TSI, D.getIdentifierLoc(), Name); in RebuildDeclaratorInCurrentInstantiation()
3419 if (!TSI) return true; in RebuildDeclaratorInCurrentInstantiation()
3422 ParsedType LocType = S.CreateParsedType(TSI->getType(), TSI); in RebuildDeclaratorInCurrentInstantiation()
/external/clang/tools/libclang/
DRecursiveASTVisitor.h696 if (TypeSourceInfo *TSI = ArgLoc.getTypeSourceInfo()) in TraverseTemplateArgumentLoc() local
697 return getDerived().TraverseTypeLoc(TSI->getTypeLoc()); in TraverseTemplateArgumentLoc()
1532 if (TypeSourceInfo *TSI = D->getTypeAsWritten())
1533 TRY_TO(TraverseTypeLoc(TSI->getTypeLoc()));
/external/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp494 Value *TSI = Builder->CreateLShr(Op0, C1->logBase2(), Op1->getName()+".t", in visitUDiv() local
502 return SelectInst::Create(Cond, TSI, FSI); in visitUDiv()
/external/llvm/include/llvm/CodeGen/
DSelectionDAG.h139 const TargetSelectionDAGInfo &TSI;
245 const TargetSelectionDAGInfo &getSelectionDAGInfo() const { return TSI; }
/external/icu4c/data/translit/
DAmharic_Latin_BGN.txt272 ጺ → ts $ejective ī ; # ETHIOPIC SYLLABLE TSI
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp891 : TM(tm), TLI(*tm.getTargetLowering()), TSI(*tm.getSelectionDAGInfo()), in SelectionDAG()
3773 TSI.EmitTargetCodeForMemcpy(*this, dl, Chain, Dst, Src, Size, Align, in getMemcpy()
3841 TSI.EmitTargetCodeForMemmove(*this, dl, Chain, Dst, Src, Size, Align, isVol, in getMemmove()
3895 TSI.EmitTargetCodeForMemset(*this, dl, Chain, Dst, Src, Size, Align, isVol, in getMemset()
/external/icu4c/data/unidata/
DCaseFolding.txt959 2C1C; C; 2C4C; # GLAGOLITIC CAPITAL LETTER TSI
DUnicodeData.txt4115 133A;ETHIOPIC SYLLABLE TSI;Lo;0;L;;;;;N;;;;;
4275 13E5;CHEROKEE LETTER TSI;Lo;0;L;;;;;N;;;;;
4898 165F;CANADIAN SYLLABICS CARRIER TSI;Lo;0;L;;;;;N;;;;;
9764 2C1C;GLAGOLITIC CAPITAL LETTER TSI;Lu;0;L;;;;;N;;;;2C4C;
9811 2C4C;GLAGOLITIC SMALL LETTER TSI;Ll;0;L;;;;;N;;;2C1C;;2C1C
/external/icu4c/data/unidata/norm2/
Duts46.txt2599 2C1C >2C4C # 4.1 GLAGOLITIC CAPITAL LETTER TSI