/external/llvm/lib/Target/SystemZ/ |
H A D | SystemZTargetMachine.h | 35 SystemZSelectionDAGInfo TSInfo; member in class:llvm::SystemZTargetMachine 65 return &TSInfo;
|
/external/llvm/lib/Target/AArch64/ |
H A D | AArch64TargetMachine.h | 32 AArch64SelectionDAGInfo TSInfo; member in class:llvm::AArch64TargetMachine 54 return &TSInfo;
|
/external/llvm/lib/Target/Hexagon/ |
H A D | HexagonTargetMachine.h | 34 HexagonSelectionDAGInfo TSInfo; member in class:llvm::HexagonTargetMachine 68 return &TSInfo;
|
/external/llvm/lib/Target/MSP430/ |
H A D | MSP430TargetMachine.h | 37 MSP430SelectionDAGInfo TSInfo; member in class:llvm::MSP430TargetMachine 62 return &TSInfo;
|
/external/llvm/lib/Target/Sparc/ |
H A D | SparcTargetMachine.h | 33 SparcSelectionDAGInfo TSInfo; member in class:llvm::SparcTargetMachine 53 return &TSInfo;
|
/external/llvm/lib/Target/XCore/ |
H A D | XCoreTargetMachine.h | 33 XCoreSelectionDAGInfo TSInfo; member in class:llvm::XCoreTargetMachine 50 return &TSInfo;
|
/external/llvm/lib/Target/ARM/ |
H A D | ARMTargetMachine.h | 73 ARMSelectionDAGInfo TSInfo; member in class:llvm::ARMTargetMachine 91 return &TSInfo; 110 ARMSelectionDAGInfo TSInfo; member in class:llvm::ThumbTargetMachine 130 return &TSInfo;
|
/external/llvm/lib/Target/NVPTX/ |
H A D | NVPTXTargetMachine.h | 37 TargetSelectionDAGInfo TSInfo; member in class:llvm::NVPTXTargetMachine 70 return &TSInfo;
|
/external/llvm/lib/Target/PowerPC/ |
H A D | PPCTargetMachine.h | 37 PPCSelectionDAGInfo TSInfo; member in class:llvm::PPCTargetMachine 55 return &TSInfo;
|
/external/llvm/lib/Target/X86/ |
H A D | X86TargetMachine.h | 84 X86SelectionDAGInfo TSInfo; member in class:llvm::X86_32TargetMachine 96 return &TSInfo; 113 X86SelectionDAGInfo TSInfo; member in class:llvm::X86_64TargetMachine 125 return &TSInfo;
|
/external/llvm/lib/Target/Mips/ |
H A D | MipsTargetMachine.h | 46 MipsSelectionDAGInfo TSInfo; member in class:llvm::MipsTargetMachine 86 return &TSInfo;
|
/external/clang/lib/AST/ |
H A D | NestedNameSpecifier.cpp | 580 TypeSourceInfo *TSInfo local 583 SavePointer(TSInfo->getTypeLoc().getOpaqueData(), Buffer, BufferSize,
|
/external/clang/lib/Sema/ |
H A D | SemaTemplateVariadic.cpp | 321 if (TypeSourceInfo *TSInfo = NameInfo.getNamedTypeInfo()) 322 return DiagnoseUnexpandedParameterPack(NameInfo.getLoc(), TSInfo, UPPC); 446 TypeSourceInfo *TSInfo; local 447 GetTypeFromParser(Type, &TSInfo); 448 if (!TSInfo) 451 TypeSourceInfo *TSResult = CheckPackExpansion(TSInfo, EllipsisLoc, None);
|
H A D | SemaTemplateInstantiate.cpp | 840 TypeSourceInfo *TSInfo, QualType T); 1045 TypeSourceInfo *TSInfo, 1047 VarDecl *Var = inherited::RebuildObjCExceptionDecl(ExceptionDecl, TSInfo, T); 1625 if (TypeSourceInfo *TSInfo = P->getTypeSourceInfo()) 1626 if (TSInfo->getType()->isInstantiationDependentType()) 1044 RebuildObjCExceptionDecl(VarDecl *ExceptionDecl, TypeSourceInfo *TSInfo, QualType T) argument
|
H A D | SemaExprCXX.cpp | 2951 TypeSourceInfo *TSInfo; local 2952 QualType T = GetTypeFromParser(Ty, &TSInfo); 2954 if (!TSInfo) 2955 TSInfo = Context.getTrivialTypeSourceInfo(T); 2956 return BuildUnaryTypeTrait(UTT, KWLoc, TSInfo, RParen); 3440 TypeSourceInfo *TSInfo, 3442 QualType T = TSInfo->getType(); 3450 return Owned(new (Context) UnaryTypeTraitExpr(KWLoc, UTT, TSInfo, Value, 3818 TypeSourceInfo *TSInfo; local 3819 QualType T = GetTypeFromParser(Ty, &TSInfo); 3438 BuildUnaryTypeTrait(UnaryTypeTrait UTT, SourceLocation KWLoc, TypeSourceInfo *TSInfo, SourceLocation RParen) argument 3880 BuildArrayTypeTrait(ArrayTypeTrait ATT, SourceLocation KWLoc, TypeSourceInfo *TSInfo, Expr* DimExpr, SourceLocation RParen) argument [all...] |
H A D | SemaExprObjC.cpp | 1838 TypeSourceInfo *TSInfo = Context.getTrivialTypeSourceInfo(T, NameLoc); 1839 ReceiverType = CreateParsedType(T, TSInfo); 1867 TypeSourceInfo *TSInfo = Context.getTrivialTypeSourceInfo(T, NameLoc); local 1868 ReceiverType = CreateParsedType(T, TSInfo); 3362 TypeSourceInfo *TSInfo, 3368 QualType T = TSInfo->getType(); 3453 << TSInfo->getTypeLoc().getSourceRange(); 3459 TSInfo, SubExpr); 3477 TypeSourceInfo *TSInfo = 0; local 3478 QualType T = GetTypeFromParser(Type, &TSInfo); 3359 BuildObjCBridgedCast(SourceLocation LParenLoc, ObjCBridgeCastKind Kind, SourceLocation BridgeKeywordLoc, TypeSourceInfo *TSInfo, Expr *SubExpr) argument [all...] |
H A D | SemaInit.cpp | 5121 TypeSourceInfo *TSInfo = Entity.getTypeSourceInfo(); 5122 if (!TSInfo) 5123 TSInfo = S.Context.getTrivialTypeSourceInfo(Entity.getType(), Loc); 5130 TSInfo, ConstructorArgs, 5969 TypeSourceInfo *TSInfo = Entity.getTypeSourceInfo(); local 5970 if (!TSInfo) 5971 TSInfo = S.Context.getTrivialTypeSourceInfo(Step->Type, 5975 TSInfo->getType().getNonLValueExprType(S.Context), 5976 TSInfo,
|
H A D | SemaDecl.cpp | 9032 QualType T, TypeSourceInfo *TSInfo, 9059 TSInfo, 9073 SourceLocation TypeEndLoc = TSInfo->getTypeLoc().getLocEnd(); 9030 CheckParameter(DeclContext *DC, SourceLocation StartLoc, SourceLocation NameLoc, IdentifierInfo *Name, QualType T, TypeSourceInfo *TSInfo, VarDecl::StorageClass StorageClass) argument
|
H A D | SemaDeclCXX.cpp | 10947 TypeSourceInfo *TSInfo) { 10948 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration"); 10950 QualType T = TSInfo->getType(); 10951 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange(); 11009 return FriendDecl::Create(Context, CurContext, LocStart, TSInfo, FriendLoc); 12203 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo(); local 12204 if (!TSInfo) 12207 TypeLoc TL = TSInfo->getTypeLoc(); 12235 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo(); local 12236 if (!TSInfo) 10945 CheckFriendTypeDecl(SourceLocation LocStart, SourceLocation FriendLoc, TypeSourceInfo *TSInfo) argument [all...] |
H A D | TreeTransform.h | 2061 ExprResult RebuildCXXScalarValueInitExpr(TypeSourceInfo *TSInfo, argument 2064 return getSema().BuildCXXTypeConstructExpr(TSInfo, LParenLoc, 2147 TypeSourceInfo *TSInfo, 2150 return getSema().BuildArrayTypeTrait(Trait, StartLoc, TSInfo, DimExpr, RParenLoc); 2230 ExprResult RebuildCXXTemporaryObjectExpr(TypeSourceInfo *TSInfo, argument 2234 return getSema().BuildCXXTypeConstructExpr(TSInfo, 2244 ExprResult RebuildCXXUnresolvedConstructExpr(TypeSourceInfo *TSInfo, argument 2248 return getSema().BuildCXXTypeConstructExpr(TSInfo, 2617 TypeSourceInfo *TransformTypeInObjectScope(TypeSourceInfo *TSInfo, 3577 TreeTransform<Derived>::TransformTypeInObjectScope(TypeSourceInfo *TSInfo, argument 2145 RebuildArrayTypeTrait(ArrayTypeTrait Trait, SourceLocation StartLoc, TypeSourceInfo *TSInfo, Expr *DimExpr, SourceLocation RParenLoc) argument 5820 TypeSourceInfo *TSInfo = 0; local 8914 TypeSourceInfo *TSInfo local [all...] |
/external/clang/include/clang/AST/ |
H A D | ExprObjC.h | 1192 if (TypeSourceInfo *TSInfo = getClassReceiverTypeInfo()) 1193 return TSInfo->getType(); 1206 void setClassReceiver(TypeSourceInfo *TSInfo) { argument 1208 setReceiverPointer(TSInfo); 1537 TypeSourceInfo *TSInfo, Expr *Operand) 1538 : ExplicitCastExpr(ObjCBridgedCastExprClass, TSInfo->getType(), VK_RValue, 1539 CK, Operand, 0, TSInfo), 1535 ObjCBridgedCastExpr(SourceLocation LParenLoc, ObjCBridgeCastKind Kind, CastKind CK, SourceLocation BridgeKeywordLoc, TypeSourceInfo *TSInfo, Expr *Operand) argument
|
H A D | Expr.h | 1849 TypeSourceInfo *TSInfo; member in class:clang::StringLiteral::OffsetOfExpr 1862 TSInfo(0), NumComps(numComps), NumExprs(numExprs) {} 1883 return TSInfo; 1886 TSInfo = tsi;
|