Searched defs:TSI (Results 1 - 12 of 12) sorted by relevance

/external/clang/lib/AST/
H A DComment.cpp250 const TypeSourceInfo *TSI = TD->getTypeSourceInfo(); local
251 if (!TSI)
253 TypeLoc TL = TSI->getTypeLoc().getUnqualifiedLoc();
258 TSI = TypedefTL->getTypedefNameDecl()->getTypeSourceInfo();
259 if (TSI)
261 TL = TSI->getTypeLoc().getUnqualifiedLoc();
H A DMicrosoftMangle.cpp388 TypeSourceInfo *TSI = Spec->getTypeAsWritten(); local
389 if (TSI) {
391 cast<TemplateSpecializationTypeLoc>(TSI->getTypeLoc());
1126 // get mangled right. Note that we can't rely on the TSI
1130 TypeSourceInfo *TSI = (*Parm)->getTypeSourceInfo(); local
1131 QualType Type = TSI ? TSI->getType() : (*Parm)->getType();
H A DDecl.cpp1039 TypeSourceInfo *TSI = getTypeSourceInfo(); local
1040 if (TSI) return TSI->getTypeLoc().getBeginLoc();
/external/clang/lib/StaticAnalyzer/Checkers/
H A DMallocSizeofChecker.cpp208 const TypeSourceInfo *TSI = 0; local
210 TSI =
213 TSI = i->ExplicitCastType;
231 if (TSI)
232 Ranges.push_back(TSI->getTypeLoc().getSourceRange());
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp494 Value *TSI = Builder->CreateLShr(Op0, C1->logBase2(), Op1->getName()+".t", local
502 return SelectInst::Create(Cond, TSI, FSI);
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h139 const TargetSelectionDAGInfo &TSI; member in class:llvm::SelectionDAG
245 const TargetSelectionDAGInfo &getSelectionDAGInfo() const { return TSI; }
/external/clang/include/clang/AST/
H A DExprCXX.h517 void setTypeOperandSourceInfo(TypeSourceInfo *TSI) { argument
519 Operand = TSI;
592 void setTypeOperandSourceInfo(TypeSourceInfo *TSI) { argument
594 Operand = TSI;
/external/clang/lib/Sema/
H A DSemaObjCProperty.cpp124 TypeSourceInfo *TSI = GetTypeForDeclarator(FD.D, S); local
125 QualType T = TSI->getType();
150 isOverridingProperty, TSI,
166 TSI, MethodImplKind);
H A DSemaDeclObjC.cpp1234 static SourceRange getTypeRange(TypeSourceInfo *TSI) { argument
1235 return (TSI ? TSI->getTypeLoc().getSourceRange() : SourceRange());
H A DSemaTemplate.cpp6937 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
6939 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
6944 ElaboratedTypeLoc TL = cast<ElaboratedTypeLoc>(TSI->getTypeLoc());
6950 return CreateParsedType(T, TSI);
7020 TypeSourceInfo *TSI = Builder.getTypeSourceInfo(Context, T); local
7021 return CreateParsedType(T, TSI);
H A DSemaDecl.cpp3407 TypeSourceInfo *TSI = 0; local
3408 QualType T = S.GetTypeFromParser(DS.getRepAsType(), &TSI);
3414 if (!TSI)
3415 TSI = S.Context.getTrivialTypeSourceInfo(T, DS.getTypeSpecTypeLoc());
3418 TSI = S.RebuildTypeInCurrentInstantiation(TSI, D.getIdentifierLoc(), Name);
3419 if (!TSI) return true;
3422 ParsedType LocType = S.CreateParsedType(TSI->getType(), TSI);
H A DSemaDeclCXX.cpp3639 TypeSourceInfo *TSI = TL.getArg(I)->getTypeSourceInfo(); local
3640 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
3653 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
3654 Visit(TSI->getTypeLoc(), Sema::AbstractNone);
3722 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
3723 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
3744 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
3745 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
3748 if (TypeSourceInfo *TSI
10008 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T); local
10051 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S); local
[all...]

Completed in 415 milliseconds