Searched refs:TL (Results 1 - 25 of 67) sorted by relevance

123

/freebsd-12-stable/contrib/llvm-project/clang/lib/Index/
H A DIndexTypeSourceInfo.cpp55 bool VisitTypedefTypeLoc(TypedefTypeLoc TL) { argument
56 SourceLocation Loc = TL.getNameLoc();
57 TypedefNameDecl *ND = TL.getTypedefNameDecl();
66 if (auto *CD = TL.getType()->getAsCXXRecordDecl()) {
107 bool VisitTagTypeLoc(TagTypeLoc TL) { argument
108 TagDecl *D = TL.getDecl();
113 if (TL.isDefinition()) {
118 return IndexCtx.handleReference(D, TL.getNameLoc(),
123 bool VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) { argument
124 return IndexCtx.handleReference(TL
128 VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) argument
153 VisitTemplateSpecializationTypeLoc(TemplateSpecializationTypeLoc TL) argument
163 VisitDeducedTemplateSpecializationTypeLoc(DeducedTemplateSpecializationTypeLoc TL) argument
173 VisitDependentNameTypeLoc(DependentNameTypeLoc TL) argument
220 indexTypeLoc(TypeLoc TL, const NamedDecl *Parent, const DeclContext *DC, bool isBase, bool isIBType) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DComment.cpp131 TypeLoc TL = SrcTL.IgnoreParens(); local
134 if (AttributedTypeLoc AttributeTL = TL.getAs<AttributedTypeLoc>())
137 if (QualifiedTypeLoc QualifiedTL = TL.getAs<QualifiedTypeLoc>())
140 if (PointerTypeLoc PointerTL = TL.getAs<PointerTypeLoc>())
143 if (ReferenceTypeLoc ReferenceTL = TL.getAs<ReferenceTypeLoc>())
146 if (AdjustedTypeLoc ATL = TL.getAs<AdjustedTypeLoc>())
148 if (BlockPointerTypeLoc BlockPointerTL = TL.getAs<BlockPointerTypeLoc>())
150 if (MemberPointerTypeLoc MemberPointerTL = TL.getAs<MemberPointerTypeLoc>())
152 if (ElaboratedTypeLoc ETL = TL.getAs<ElaboratedTypeLoc>())
155 return TL;
158 getFunctionTypeLoc(TypeLoc TL, FunctionTypeLoc &ResFTL) argument
182 TypeLoc TL = MaybeFunctionTSI->getTypeLoc().getUnqualifiedLoc(); local
309 TypeLoc TL = TSI->getTypeLoc().getUnqualifiedLoc(); local
333 TypeLoc TL = TSI->getTypeLoc().getUnqualifiedLoc(); local
354 TypeLoc TL = TSI->getTypeLoc().getUnqualifiedLoc(); local
[all...]
H A DTypeLoc.cpp53 SourceRange TypeLoc::getLocalSourceRangeImpl(TypeLoc TL) { argument
54 if (TL.isNull()) return SourceRange();
55 return TypeLocRanger().Visit(TL);
124 TypeLoc TypeLoc::getNextTypeLocImpl(TypeLoc TL) { argument
125 return NextLoc().Visit(TL);
131 void TypeLoc::initializeImpl(ASTContext &Context, TypeLoc TL, argument
134 switch (TL.getTypeLocClass()) {
138 CLASS##TypeLoc TLCasted = TL.castAs<CLASS##TypeLoc>(); \
140 TL = TLCasted.getNextTypeLoc(); \
141 if (!TL) retur
293 isKind(const TypeLoc &TL) argument
413 IgnoreParensImpl(TypeLoc TL) argument
620 VisitAutoTypeLoc(AutoTypeLoc TL) argument
[all...]
H A DASTTypeTraits.cpp143 else if (const TypeLoc *TL = get<TypeLoc>())
144 TL->getType().print(OS, PP);
171 if (const TypeLoc *TL = get<TypeLoc>())
172 return TL->getSourceRange();
H A DNestedNameSpecifier.cpp454 TypeLoc TL(Qualifier->getAsType(), TypeData);
455 return SourceRange(TL.getBeginLoc(),
573 TypeLoc TL,
577 TL.getTypePtr());
580 SavePointer(TL.getOpaqueData(), Buffer, BufferSize, BufferCapacity);
571 Extend(ASTContext &Context, SourceLocation TemplateKWLoc, TypeLoc TL, SourceLocation ColonColonLoc) argument
/freebsd-12-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransGCAttrs.cpp40 bool VisitAttributedTypeLoc(AttributedTypeLoc TL) { argument
41 handleAttr(TL);
63 TypeLoc TL = TInfo->getTypeLoc();
64 while (TL) {
65 if (QualifiedTypeLoc QL = TL.getAs<QualifiedTypeLoc>()) {
66 TL = QL.getUnqualifiedLoc();
67 } else if (AttributedTypeLoc Attr = TL.getAs<AttributedTypeLoc>()) {
70 TL = Attr.getModifiedLoc();
72 TL.getAs<MacroQualifiedTypeLoc>()) {
73 TL
85 handleAttr(AttributedTypeLoc TL, Decl *D = nullptr) argument
[all...]
H A DTransAutoreleasePool.cpp266 bool VisitTypedefTypeLoc(TypedefTypeLoc TL) { argument
267 return checkRef(TL.getBeginLoc(), TL.getTypedefNameDecl()->getLocation());
270 bool VisitTagTypeLoc(TagTypeLoc TL) { argument
271 return checkRef(TL.getBeginLoc(), TL.getDecl()->getLocation());
/freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/
H A DUSRLocFinder.cpp109 SourceLocation StartLocationForType(TypeLoc TL) { argument
112 if (auto ElaboratedTypeLoc = TL.getAs<clang::ElaboratedTypeLoc>()) {
117 TL = TL.getNextTypeLoc();
119 return TL.getBeginLoc();
122 SourceLocation EndLocationForType(TypeLoc TL) { argument
124 while (TL.getTypeLocClass() == TypeLoc::Elaborated ||
125 TL.getTypeLocClass() == TypeLoc::Qualified)
126 TL = TL
139 GetNestedNameForType(TypeLoc TL) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
H A DRecursiveSymbolVisitor.h108 bool VisitTypedefTypeLoc(TypedefTypeLoc TL) { argument
110 Lexer::getLocForEndOfToken(TL.getBeginLoc(), 0, SM, LangOpts);
111 return visit(TL.getTypedefNameDecl(), TL.getBeginLoc(), TypeEndLoc);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h325 QualType TransformType(TypeLocBuilder &TLB, TypeLoc TL);
632 FunctionProtoTypeLoc TL,
646 TemplateSpecializationTypeLoc TL,
651 DependentTemplateSpecializationTypeLoc TL,
656 TypeLocBuilder &TLB, DependentTemplateSpecializationTypeLoc TL,
689 QualType TransformReferenceType(TypeLocBuilder &TLB, ReferenceTypeLoc TL);
736 QualType RebuildQualifiedType(QualType T, QualifiedTypeLoc TL);
3442 TypeLoc TransformTypeInObjectScope(TypeLoc TL,
3452 TypeSourceInfo *TransformTSIInObjectScope(TypeLoc TL, QualType ObjectType,
3457 DependentNameTypeLoc TL,
3817 TypeLoc TL = TransformTypeInObjectScope(Q.getTypeLoc(), ObjectType, local
4346 TypeLoc TL = DI->getTypeLoc(); local
4398 TypeLoc TL = DI->getTypeLoc(); local
4444 RebuildQualifiedType(QualType T, QualifiedTypeLoc TL) argument
4525 TransformTypeInObjectScope(TypeLoc TL, QualType ObjectType, NamedDecl *UnqualLookup, CXXScopeSpec &SS) argument
4553 TransformTSIInObjectScope( TypeLoc TL, QualType ObjectType, NamedDecl *UnqualLookup, CXXScopeSpec &SS) argument
4628 TransformAdjustedType(TypeLocBuilder &TLB, AdjustedTypeLoc TL) argument
4635 TransformDecayedType(TypeLocBuilder &TLB, DecayedTypeLoc TL) argument
4651 TransformPointerType(TypeLocBuilder &TLB, PointerTypeLoc TL) argument
4689 TransformBlockPointerType(TypeLocBuilder &TLB, BlockPointerTypeLoc TL) argument
4716 TransformReferenceType(TypeLocBuilder &TLB, ReferenceTypeLoc TL) argument
4753 TransformLValueReferenceType(TypeLocBuilder &TLB, LValueReferenceTypeLoc TL) argument
4760 TransformRValueReferenceType(TypeLocBuilder &TLB, RValueReferenceTypeLoc TL) argument
4767 TransformMemberPointerType(TypeLocBuilder &TLB, MemberPointerTypeLoc TL) argument
4819 TransformConstantArrayType(TypeLocBuilder &TLB, ConstantArrayTypeLoc TL) argument
4864 TransformIncompleteArrayType( TypeLocBuilder &TLB, IncompleteArrayTypeLoc TL) argument
4893 TransformVariableArrayType(TypeLocBuilder &TLB, VariableArrayTypeLoc TL) argument
4940 TransformDependentSizedArrayType(TypeLocBuilder &TLB, DependentSizedArrayTypeLoc TL) argument
4987 TransformDependentVectorType( TypeLocBuilder &TLB, DependentVectorTypeLoc TL) argument
5025 TransformDependentSizedExtVectorType( TypeLocBuilder &TLB, DependentSizedExtVectorTypeLoc TL) argument
5069 TransformDependentAddressSpaceType( TypeLocBuilder &TLB, DependentAddressSpaceTypeLoc TL) argument
5115 TransformVectorType(TypeLocBuilder &TLB, VectorTypeLoc TL) argument
5138 TransformExtVectorType(TypeLocBuilder &TLB, ExtVectorTypeLoc TL) argument
5238 TypeLoc TL = OldParm->getTypeSourceInfo()->getTypeLoc(); local
5447 TransformFunctionProtoType(TypeLocBuilder &TLB, FunctionProtoTypeLoc TL) argument
5460 TransformFunctionProtoType( TypeLocBuilder &TLB, FunctionProtoTypeLoc TL, CXXRecordDecl *ThisContext, Qualifiers ThisTypeQuals, Fn TransformExceptionSpec) argument
5650 TransformFunctionNoProtoType( TypeLocBuilder &TLB, FunctionNoProtoTypeLoc TL) argument
5672 TransformUnresolvedUsingType(TypeLocBuilder &TLB, UnresolvedUsingTypeLoc TL) argument
5695 TransformTypedefType(TypeLocBuilder &TLB, TypedefTypeLoc TL) argument
5719 TransformTypeOfExprType(TypeLocBuilder &TLB, TypeOfExprTypeLoc TL) argument
5752 TransformTypeOfType(TypeLocBuilder &TLB, TypeOfTypeLoc TL) argument
5776 TransformDecltypeType(TypeLocBuilder &TLB, DecltypeTypeLoc TL) argument
5809 TransformUnaryTransformType( TypeLocBuilder &TLB, UnaryTransformTypeLoc TL) argument
5832 TransformDeducedTemplateSpecializationType( TypeLocBuilder &TLB, DeducedTemplateSpecializationTypeLoc TL) argument
5863 TransformRecordType(TypeLocBuilder &TLB, RecordTypeLoc TL) argument
5887 TransformEnumType(TypeLocBuilder &TLB, EnumTypeLoc TL) argument
5911 TransformInjectedClassNameType( TypeLocBuilder &TLB, InjectedClassNameTypeLoc TL) argument
5924 TransformTemplateTypeParmType( TypeLocBuilder &TLB, TemplateTypeParmTypeLoc TL) argument
5931 TransformSubstTemplateTypeParmType( TypeLocBuilder &TLB, SubstTemplateTypeParmTypeLoc TL) argument
5959 TransformSubstTemplateTypeParmPackType( TypeLocBuilder &TLB, SubstTemplateTypeParmPackTypeLoc TL) argument
5966 TransformTemplateSpecializationType( TypeLocBuilder &TLB, TemplateSpecializationTypeLoc TL) argument
5984 TransformAtomicType(TypeLocBuilder &TLB, AtomicTypeLoc TL) argument
6007 TransformPipeType(TypeLocBuilder &TLB, PipeTypeLoc TL) argument
6093 TransformAutoType(TypeLocBuilder &TLB, AutoTypeLoc TL) argument
6159 TransformTemplateSpecializationType( TypeLocBuilder &TLB, TemplateSpecializationTypeLoc TL, TemplateName Template) argument
6213 TransformDependentTemplateSpecializationType( TypeLocBuilder &TLB, DependentTemplateSpecializationTypeLoc TL, TemplateName Template, CXXScopeSpec &SS) argument
6273 TransformElaboratedType(TypeLocBuilder &TLB, ElaboratedTypeLoc TL) argument
6327 TransformAttributedType( TypeLocBuilder &TLB, AttributedTypeLoc TL) argument
6376 TransformParenType(TypeLocBuilder &TLB, ParenTypeLoc TL) argument
6398 TransformMacroQualifiedType(TypeLocBuilder &TLB, MacroQualifiedTypeLoc TL) argument
6418 TransformDependentNameType( TypeLocBuilder &TLB, DependentNameTypeLoc TL) argument
6424 TransformDependentNameType( TypeLocBuilder &TLB, DependentNameTypeLoc TL, bool DeducedTSTContext) argument
6461 TransformDependentTemplateSpecializationType(TypeLocBuilder &TLB, DependentTemplateSpecializationTypeLoc TL) argument
6477 TransformDependentTemplateSpecializationType(TypeLocBuilder &TLB, DependentTemplateSpecializationTypeLoc TL, NestedNameSpecifierLoc QualifierLoc) argument
6542 TransformPackExpansionType(TypeLocBuilder &TLB, PackExpansionTypeLoc TL) argument
6567 TransformObjCInterfaceType(TypeLocBuilder &TLB, ObjCInterfaceTypeLoc TL) argument
6576 TransformObjCTypeParamType(TypeLocBuilder &TLB, ObjCTypeParamTypeLoc TL) argument
6609 TransformObjCObjectType(TypeLocBuilder &TLB, ObjCObjectTypeLoc TL) argument
6733 TransformObjCObjectPointerType(TypeLocBuilder &TLB, ObjCObjectPointerTypeLoc TL) argument
[all...]
H A DSemaType.cpp5560 static void fillAttributedTypeLoc(AttributedTypeLoc TL, argument
5562 TL.setAttr(State.takeAttrForAttributedType(TL.getTypePtr()));
5577 void VisitAttributedTypeLoc(AttributedTypeLoc TL) { argument
5578 Visit(TL.getModifiedLoc());
5579 fillAttributedTypeLoc(TL, State);
5581 void VisitMacroQualifiedTypeLoc(MacroQualifiedTypeLoc TL) { argument
5582 Visit(TL.getInnerLoc());
5583 TL.setExpansionLoc(
5584 State.getExpansionLocForMacroQualifiedType(TL
5586 VisitQualifiedTypeLoc(QualifiedTypeLoc TL) argument
5589 VisitTypedefTypeLoc(TypedefTypeLoc TL) argument
5592 VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) argument
5599 VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) argument
5604 VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) argument
5609 VisitTemplateSpecializationTypeLoc(TemplateSpecializationTypeLoc TL) argument
5632 VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) argument
5637 VisitTypeOfTypeLoc(TypeOfTypeLoc TL) argument
5646 VisitUnaryTransformTypeLoc(UnaryTransformTypeLoc TL) argument
5656 VisitBuiltinTypeLoc(BuiltinTypeLoc TL) argument
5669 VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) argument
5687 VisitDependentNameTypeLoc(DependentNameTypeLoc TL) argument
5694 VisitDependentTemplateSpecializationTypeLoc( DependentTemplateSpecializationTypeLoc TL) argument
5703 VisitAutoTypeLoc(AutoTypeLoc TL) argument
5731 VisitTagTypeLoc(TagTypeLoc TL) argument
5734 VisitAtomicTypeLoc(AtomicTypeLoc TL) argument
5753 VisitPipeTypeLoc(PipeTypeLoc TL) argument
5761 VisitTypeLoc(TypeLoc TL) argument
5777 VisitQualifiedTypeLoc(QualifiedTypeLoc TL) argument
5780 VisitDecayedTypeLoc(DecayedTypeLoc TL) argument
5784 VisitAttributedTypeLoc(AttributedTypeLoc TL) argument
5787 VisitAdjustedTypeLoc(AdjustedTypeLoc TL) argument
5790 VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) argument
5794 VisitPointerTypeLoc(PointerTypeLoc TL) argument
5798 VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) argument
5802 VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) argument
5847 VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) argument
5853 VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) argument
5858 VisitArrayTypeLoc(ArrayTypeLoc TL) argument
5864 VisitFunctionTypeLoc(FunctionTypeLoc TL) argument
5878 VisitParenTypeLoc(ParenTypeLoc TL) argument
5883 VisitPipeTypeLoc(PipeTypeLoc TL) argument
5887 VisitMacroQualifiedTypeLoc(MacroQualifiedTypeLoc TL) argument
5891 VisitTypeLoc(TypeLoc TL) argument
5996 TypeLoc TL = ReturnTypeInfo->getTypeLoc(); local
[all...]
H A DSemaTemplateVariadic.cpp73 bool VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) { argument
74 if (TL.getTypePtr()->isParameterPack())
75 addUnexpanded(TL.getTypePtr(), TL.getNameLoc());
152 bool TraverseTypeLoc(TypeLoc TL) { argument
153 if ((!TL.getType().isNull() &&
154 TL.getType()->containsUnexpandedParameterPack()) ||
156 return inherited::TraverseTypeLoc(TL);
183 bool TraversePackExpansionTypeLoc(PackExpansionTypeLoc TL) { return true; } argument
508 void Sema::collectUnexpandedParameterPacks(TypeLoc TL, argument
594 PackExpansionTypeLoc TL = TLB.push<PackExpansionTypeLoc>(Result); local
[all...]
H A DSemaTemplateInstantiate.cpp1080 FunctionProtoTypeLoc TL) {
1082 return inherited::TransformFunctionProtoType(TLB, TL);
1087 FunctionProtoTypeLoc TL,
1100 TemplateTypeParmTypeLoc TL);
1106 SubstTemplateTypeParmPackTypeLoc TL);
1688 FunctionProtoTypeLoc TL,
1695 TLB, TL, ThisContext, ThisTypeQuals, TransformExceptionSpec);
1713 TemplateTypeParmTypeLoc TL) {
1714 const TemplateTypeParmType *T = TL.getTypePtr();
1725 = TLB.push<TemplateTypeParmTypeLoc>(TL
1079 TransformFunctionProtoType(TypeLocBuilder &TLB, FunctionProtoTypeLoc TL) argument
1687 TransformFunctionProtoType(TypeLocBuilder &TLB, FunctionProtoTypeLoc TL, CXXRecordDecl *ThisContext, Qualifiers ThisTypeQuals, Fn TransformExceptionSpec) argument
1712 TransformTemplateTypeParmType(TypeLocBuilder &TLB, TemplateTypeParmTypeLoc TL) argument
1783 TransformSubstTemplateTypeParmPackType( TypeLocBuilder &TLB, SubstTemplateTypeParmPackTypeLoc TL) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DRecursiveASTVisitor.h220 bool TraverseTypeLoc(TypeLoc TL);
460 #define TYPELOC(CLASS, BASE) bool Traverse##CLASS##TypeLoc(CLASS##TypeLoc TL);
465 bool WalkUpFromTypeLoc(TypeLoc TL) { return getDerived().VisitTypeLoc(TL); } argument
466 bool VisitTypeLoc(TypeLoc TL) { return true; } argument
470 bool WalkUpFromQualifiedTypeLoc(QualifiedTypeLoc TL) { argument
471 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
473 bool VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { return true; } argument
474 bool WalkUpFromUnqualTypeLoc(UnqualTypeLoc TL) { argument
475 return getDerived().VisitUnqualTypeLoc(TL
477 VisitUnqualTypeLoc(UnqualTypeLoc TL) argument
692 TraverseTypeLoc(TypeLoc TL) argument
1139 TraverseQualifiedTypeLoc(QualifiedTypeLoc TL) argument
1194 TraverseArrayTypeLocHelper(ArrayTypeLoc TL) argument
[all...]
H A DTypeLoc.h236 static void initializeImpl(ASTContext &Context, TypeLoc TL,
238 static TypeLoc getNextTypeLocImpl(TypeLoc TL);
239 static TypeLoc IgnoreParensImpl(TypeLoc TL);
240 static SourceRange getLocalSourceRangeImpl(TypeLoc TL);
267 static bool isKind(const TypeLoc &TL) { argument
268 return !TL.getType().hasLocalQualifiers();
321 static bool isKind(const TypeLoc &TL) { argument
322 return TL.getType().hasLocalQualifiers();
368 static bool isKind(const TypeLoc &TL) { argument
369 return !TL
493 isKind(const TypeLoc &TL) argument
497 isKind(const UnqualTypeLoc &TL) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp192 void TypeLocWriter::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { argument
196 void TypeLocWriter::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) { argument
197 Record.AddSourceLocation(TL.getBuiltinLoc());
198 if (TL.needsExtraLocalData()) {
199 Record.push_back(TL.getWrittenTypeSpec());
200 Record.push_back(TL.getWrittenSignSpec());
201 Record.push_back(TL.getWrittenWidthSpec());
202 Record.push_back(TL.hasModeAttr());
206 void TypeLocWriter::VisitComplexTypeLoc(ComplexTypeLoc TL) { argument
207 Record.AddSourceLocation(TL
210 VisitPointerTypeLoc(PointerTypeLoc TL) argument
214 VisitDecayedTypeLoc(DecayedTypeLoc TL) argument
218 VisitAdjustedTypeLoc(AdjustedTypeLoc TL) argument
222 VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) argument
226 VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) argument
230 VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) argument
234 VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) argument
239 VisitArrayTypeLoc(ArrayTypeLoc TL) argument
247 VisitConstantArrayTypeLoc(ConstantArrayTypeLoc TL) argument
251 VisitIncompleteArrayTypeLoc(IncompleteArrayTypeLoc TL) argument
255 VisitVariableArrayTypeLoc(VariableArrayTypeLoc TL) argument
259 VisitDependentSizedArrayTypeLoc( DependentSizedArrayTypeLoc TL) argument
264 VisitDependentAddressSpaceTypeLoc( DependentAddressSpaceTypeLoc TL) argument
273 VisitDependentSizedExtVectorTypeLoc( DependentSizedExtVectorTypeLoc TL) argument
278 VisitVectorTypeLoc(VectorTypeLoc TL) argument
282 VisitDependentVectorTypeLoc( DependentVectorTypeLoc TL) argument
287 VisitExtVectorTypeLoc(ExtVectorTypeLoc TL) argument
291 VisitFunctionTypeLoc(FunctionTypeLoc TL) argument
301 VisitFunctionProtoTypeLoc(FunctionProtoTypeLoc TL) argument
305 VisitFunctionNoProtoTypeLoc(FunctionNoProtoTypeLoc TL) argument
309 VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) argument
313 VisitTypedefTypeLoc(TypedefTypeLoc TL) argument
317 VisitObjCTypeParamTypeLoc(ObjCTypeParamTypeLoc TL) argument
326 VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) argument
332 VisitTypeOfTypeLoc(TypeOfTypeLoc TL) argument
339 VisitDecltypeTypeLoc(DecltypeTypeLoc TL) argument
343 VisitUnaryTransformTypeLoc(UnaryTransformTypeLoc TL) argument
350 VisitAutoTypeLoc(AutoTypeLoc TL) argument
366 VisitDeducedTemplateSpecializationTypeLoc( DeducedTemplateSpecializationTypeLoc TL) argument
371 VisitRecordTypeLoc(RecordTypeLoc TL) argument
375 VisitEnumTypeLoc(EnumTypeLoc TL) argument
379 VisitAttributedTypeLoc(AttributedTypeLoc TL) argument
383 VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) argument
387 VisitSubstTemplateTypeParmTypeLoc( SubstTemplateTypeParmTypeLoc TL) argument
392 VisitSubstTemplateTypeParmPackTypeLoc( SubstTemplateTypeParmPackTypeLoc TL) argument
397 VisitTemplateSpecializationTypeLoc( TemplateSpecializationTypeLoc TL) argument
408 VisitParenTypeLoc(ParenTypeLoc TL) argument
413 VisitMacroQualifiedTypeLoc(MacroQualifiedTypeLoc TL) argument
417 VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) argument
422 VisitInjectedClassNameTypeLoc(InjectedClassNameTypeLoc TL) argument
426 VisitDependentNameTypeLoc(DependentNameTypeLoc TL) argument
432 VisitDependentTemplateSpecializationTypeLoc( DependentTemplateSpecializationTypeLoc TL) argument
445 VisitPackExpansionTypeLoc(PackExpansionTypeLoc TL) argument
449 VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) argument
453 VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) argument
465 VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) argument
469 VisitAtomicTypeLoc(AtomicTypeLoc TL) argument
475 VisitPipeTypeLoc(PipeTypeLoc TL) argument
[all...]
H A DASTReader.cpp6422 void TypeLocReader::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
6426 void TypeLocReader::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
6427 TL.setBuiltinLoc(readSourceLocation());
6428 if (TL.needsExtraLocalData()) {
6429 TL.setWrittenTypeSpec(static_cast<DeclSpec::TST>(Reader.readInt()));
6430 TL.setWrittenSignSpec(static_cast<DeclSpec::TSS>(Reader.readInt()));
6431 TL.setWrittenWidthSpec(static_cast<DeclSpec::TSW>(Reader.readInt()));
6432 TL.setModeAttr(Reader.readInt());
6436 void TypeLocReader::VisitComplexTypeLoc(ComplexTypeLoc TL) {
6437 TL
[all...]
/freebsd-12-stable/sys/contrib/ck/include/
H A Dck_elide.h231 #define CK_ELIDE_TRYLOCK_PROTOTYPE(N, T, TL_P, TL) \
288 #define CK_ELIDE_TRYLOCK_PROTOTYPE(N, T, TL_P, TL) \
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DGISelKnownBits.h32 const TargetLowering &TL; member in class:llvm::GISelKnownBits
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp1540 APInt TL(APInt::getSignedMinValue(Bits));
1545 TL = maxAPInt(TL, ceilingOfQuotient(-X, TMUL));
1546 LLVM_DEBUG(dbgs() << "\t TL = " << TL << "\n");
1556 TL = maxAPInt(TL, ceilingOfQuotient(UM - X, TMUL));
1557 LLVM_DEBUG(dbgs() << "\t TL = " << TL << "\n");
1564 TL
[all...]
/freebsd-12-stable/sys/dev/pms/RefTisa/sat/src/
H A Dsmsat.c4803 bit8 TL[8]; local
4857 sm_memset(TL, 0, sizeof(TL));
4859 /* do not use memcpy due to indexing in LBA and TL */
4869 TL[0] = 0;
4870 TL[1] = 0;
4871 TL[2] = 0;
4872 TL[3] = 0;
4873 TL[4] = 0;
4874 TL[
5269 bit8 TL[8]; local
5708 bit8 TL[8]; local
6477 bit8 TL[8]; local
6920 bit8 TL[8]; local
7342 bit8 TL[8]; local
7772 bit8 TL[8]; local
8055 bit8 TL[8]; local
8337 bit8 TL[8]; local
14991 bit8 TL[8]; local
15420 bit8 TL[8]; local
15845 bit8 TL[8]; local
17921 bit8 TL[4]; local
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterp.h845 template <PrimType TR, PrimType TL, class T = typename PrimConv<TR>::T>
860 template <PrimType TL, PrimType TR, typename T = typename PrimConv<TL>::T>
870 template <PrimType TL, PrimType TR, typename T = typename PrimConv<TL>::T>
895 template <PrimType TL, PrimType TR>
898 const auto &LHS = S.Stk.pop<typename PrimConv<TL>::T>();
904 return ShiftLeft<TL, TR>(S, OpPC, LHS, Trunc<TR, TL>(S, OpPC, Bits, -RHS));
906 return ShiftRight<TL, T
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DSafeStack.cpp127 const TargetLoweringBase &TL; member in class:__anon4636::SafeStack
207 SafeStack(Function &F, const TargetLoweringBase &TL, const DataLayout &DL, argument
209 : F(F), TL(TL), DL(DL), SE(SE),
371 Value *StackGuardVar = TL.getIRStackGuard(IRB);
783 UnsafeStackPtr = TL.getSafeStackPointerLocation(IRB);
870 auto *TL = TM->getSubtargetImpl(F)->getTargetLowering(); variable
871 if (!TL)
889 return SafeStack(F, *TL, *DL, SE).run();
H A DExpandMemCmp.cpp801 const TargetLowering* TL = variable
812 auto PA = runImpl(F, TLI, TTI, TL, PSI, BFI);
827 const TargetLowering* TL,
831 const TargetTransformInfo *TTI, const TargetLowering* TL,
838 const TargetTransformInfo *TTI, const TargetLowering* TL,
848 expandMemCmp(CI, TTI, TL, &DL, PSI, BFI)) {
858 const TargetLowering* TL, ProfileSummaryInfo *PSI,
863 if (runOnBlock(*BBIt, TLI, TTI, TL, DL, PSI, BFI)) {
836 runOnBlock( BasicBlock &BB, const TargetLibraryInfo *TLI, const TargetTransformInfo *TTI, const TargetLowering* TL, const DataLayout& DL, ProfileSummaryInfo *PSI, BlockFrequencyInfo *BFI) argument
856 runImpl( Function &F, const TargetLibraryInfo *TLI, const TargetTransformInfo *TTI, const TargetLowering* TL, ProfileSummaryInfo *PSI, BlockFrequencyInfo *BFI) argument
/freebsd-12-stable/sys/dev/pms/RefTisa/tisa/sassata/sata/host/
H A Dsat.c1214 bit8 TL[4]; local
1269 osti_memset(TL, 0, sizeof(TL));
1271 /* do not use memcpy due to indexing in LBA and TL */
1277 TL[0] = 0;
1278 TL[1] = 0;
1279 TL[2] = scsiCmnd->cdb[7]; /* MSB */
1280 TL[3] = scsiCmnd->cdb[8]; /* LSB */
1282 rangeChk = satAddNComparebit32(LBA, TL);
1331 TI_DBG1(("satRead10: return LBA+TL ou
1942 bit8 TL[4]; local
2373 bit8 TL[8]; local
3151 bit8 TL[8]; local
3583 bit8 TL[4]; local
4006 bit8 TL[4]; local
7795 bit8 TL[4]; local
8221 bit8 TL[4]; local
8503 bit8 TL[8]; local
13468 bit8 TL[4]; local
14330 bit8 TL[4]; local
15070 bit8 TL[4]; local
15398 bit8 TL[8]; local
[all...]

Completed in 253 milliseconds

123