HomeSort by relevance Sort by last modified time
    Searched refs:TSI (Results 1 - 16 of 16) sorted by null

  /external/clang/lib/AST/
Comment.cpp 250 const TypeSourceInfo *TSI = TD->getTypeSourceInfo();
251 if (!TSI)
253 TypeLoc TL = TSI->getTypeLoc().getUnqualifiedLoc();
258 TSI = TypedefTL->getTypedefNameDecl()->getTypeSourceInfo();
259 if (TSI)
261 TL = TSI->getTypeLoc().getUnqualifiedLoc();
MicrosoftMangle.cpp 388 TypeSourceInfo *TSI = Spec->getTypeAsWritten();
389 if (TSI) {
391 cast<TemplateSpecializationTypeLoc>(TSI->getTypeLoc());
    [all...]
Decl.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocSizeofChecker.cpp 208 const TypeSourceInfo *TSI = 0;
210 TSI =
213 TSI = i->ExplicitCastType;
231 if (TSI)
232 Ranges.push_back(TSI->getTypeLoc().getSourceRange());
  /external/clang/include/clang/AST/
RecursiveASTVisitor.h 759 // FIXME: how can TSI ever be NULL?
760 if (TypeSourceInfo *TSI = ArgLoc.getTypeSourceInfo())
761 return getDerived().TraverseTypeLoc(TSI->getTypeLoc());
    [all...]
ExprCXX.h 517 void setTypeOperandSourceInfo(TypeSourceInfo *TSI) {
519 Operand = TSI;
592 void setTypeOperandSourceInfo(TypeSourceInfo *TSI) {
594 Operand = TSI;
    [all...]
  /external/clang/tools/libclang/
RecursiveASTVisitor.h 695 // FIXME: how can TSI ever be NULL?
696 if (TypeSourceInfo *TSI = ArgLoc.getTypeSourceInfo())
697 return getDerived().TraverseTypeLoc(TSI->getTypeLoc());
    [all...]
  /external/clang/lib/Sema/
SemaDeclCXX.cpp     [all...]
Sema.cpp 483 if (TypeSourceInfo *TSI = (*I)->getFriendType()) {
485 if (CXXRecordDecl *FriendD = TSI->getType()->getAsCXXRecordDecl())
    [all...]
SemaObjCProperty.cpp 124 TypeSourceInfo *TSI = GetTypeForDeclarator(FD.D, S);
125 QualType T = TSI->getType();
150 isOverridingProperty, TSI,
166 TSI, MethodImplKind);
    [all...]
SemaDecl.cpp     [all...]
SemaTemplate.cpp     [all...]
SemaDeclObjC.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 494 Value *TSI = Builder->CreateLShr(Op0, C1->logBase2(), Op1->getName()+".t",
502 return SelectInst::Create(Cond, TSI, FSI);
  /external/llvm/include/llvm/CodeGen/
SelectionDAG.h 139 const TargetSelectionDAGInfo &TSI;
245 const TargetSelectionDAGInfo &getSelectionDAGInfo() const { return TSI; }
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 891 : TM(tm), TLI(*tm.getTargetLowering()), TSI(*tm.getSelectionDAGInfo()),
    [all...]

Completed in 583 milliseconds