Searched defs:TL (Results 1 - 25 of 43) sorted by relevance

12

/external/clang/tools/libclang/
H A DIndexTypeSourceInfo.cpp30 bool VisitTypedefTypeLoc(TypedefTypeLoc TL) { argument
31 IndexCtx.handleReference(TL.getTypedefNameDecl(), TL.getNameLoc(),
41 bool VisitTagTypeLoc(TagTypeLoc TL) { argument
42 TagDecl *D = TL.getDecl();
46 if (TL.isDefinition()) {
51 if (D->getLocation() == TL.getNameLoc())
54 IndexCtx.handleReference(D, TL.getNameLoc(),
59 bool VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) { argument
60 IndexCtx.handleReference(TL
65 VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) argument
73 VisitTemplateSpecializationTypeLoc(TemplateSpecializationTypeLoc TL) argument
105 indexTypeLoc(TypeLoc TL, const NamedDecl *Parent, const DeclContext *DC) argument
[all...]
H A DIndexBody.cpp31 bool TraverseTypeLoc(TypeLoc TL) { argument
32 IndexCtx.indexTypeLoc(TL, Parent, ParentDC);
H A DCXCursor.cpp945 TypeLoc TL = Type->getTypeLoc(); local
946 SourceLocation Loc = TL.getBeginLoc();
950 ElaboratedTypeLoc ElabTL = TL.castAs<ElaboratedTypeLoc>();
H A DIndexingContext.cpp161 TypeLoc TL; local
163 TL = Base.getTypeSourceInfo()->getTypeLoc();
164 if (TL.isNull())
167 if (QualifiedTypeLoc QL = TL.getAs<QualifiedTypeLoc>())
168 TL = QL.getUnqualifiedLoc();
170 if (ElaboratedTypeLoc EL = TL.getAs<ElaboratedTypeLoc>())
172 if (DependentNameTypeLoc DL = TL.getAs<DependentNameTypeLoc>())
175 TL.getAs<DependentTemplateSpecializationTypeLoc>())
/external/clang/lib/AST/
H A DComment.cpp241 TypeLoc TL = TSI->getTypeLoc().getUnqualifiedLoc(); local
243 TL = TL.IgnoreParens();
245 if (QualifiedTypeLoc QualifiedTL = TL.getAs<QualifiedTypeLoc>()) {
246 TL = QualifiedTL.getUnqualifiedLoc();
250 if (PointerTypeLoc PointerTL = TL.getAs<PointerTypeLoc>()) {
251 TL = PointerTL.getPointeeLoc().getUnqualifiedLoc();
255 if (ReferenceTypeLoc ReferenceTL = TL.getAs<ReferenceTypeLoc>()) {
256 TL = ReferenceTL.getPointeeLoc().getUnqualifiedLoc();
260 if (AdjustedTypeLoc ATL = TL
299 TypeLoc TL = MaybeFunctionTSI->getTypeLoc().getUnqualifiedLoc(); local
[all...]
H A DTypeLoc.cpp38 SourceRange TypeLoc::getLocalSourceRangeImpl(TypeLoc TL) { argument
39 if (TL.isNull()) return SourceRange();
40 return TypeLocRanger().Visit(TL);
103 TypeLoc TypeLoc::getNextTypeLocImpl(TypeLoc TL) { argument
104 return NextLoc().Visit(TL);
110 void TypeLoc::initializeImpl(ASTContext &Context, TypeLoc TL, argument
113 switch (TL.getTypeLocClass()) {
117 CLASS##TypeLoc TLCasted = TL.castAs<CLASS##TypeLoc>(); \
119 TL = TLCasted.getNextTypeLoc(); \
120 if (!TL) retur
230 isKind(const TypeLoc &TL) argument
309 IgnoreParensImpl(TypeLoc TL) argument
[all...]
H A DNestedNameSpecifier.cpp380 TypeLoc TL(Qualifier->getAsType(), TypeData);
381 return SourceRange(TL.getBeginLoc(),
504 TypeLoc TL,
508 TL.getTypePtr());
511 SavePointer(TL.getOpaqueData(), Buffer, BufferSize, BufferCapacity);
502 Extend(ASTContext &Context, SourceLocation TemplateKWLoc, TypeLoc TL, SourceLocation ColonColonLoc) argument
/external/clang/lib/ARCMigrate/
H A DTransGCAttrs.cpp41 bool VisitAttributedTypeLoc(AttributedTypeLoc TL) { argument
42 handleAttr(TL);
64 TypeLoc TL = TInfo->getTypeLoc();
65 while (TL) {
66 if (QualifiedTypeLoc QL = TL.getAs<QualifiedTypeLoc>()) {
67 TL = QL.getUnqualifiedLoc();
68 } else if (AttributedTypeLoc Attr = TL.getAs<AttributedTypeLoc>()) {
71 TL = Attr.getModifiedLoc();
72 } else if (ArrayTypeLoc Arr = TL.getAs<ArrayTypeLoc>()) {
73 TL
83 handleAttr(AttributedTypeLoc TL, Decl *D = nullptr) argument
[all...]
H A DTransAutoreleasePool.cpp267 bool VisitTypedefTypeLoc(TypedefTypeLoc TL) { argument
268 return checkRef(TL.getBeginLoc(), TL.getTypedefNameDecl()->getLocation());
271 bool VisitTagTypeLoc(TagTypeLoc TL) { argument
272 return checkRef(TL.getBeginLoc(), TL.getDecl()->getLocation());
H A DObjCMT.cpp842 TypeLoc TL = TSInfo->getTypeLoc(); local
843 R = SourceRange(TL.getBeginLoc(), TL.getEndLoc());
862 TypeLoc TL = TSInfo->getTypeLoc(); local
863 R = SourceRange(TL.getBeginLoc(), TL.getEndLoc()); {
/external/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp654 SubstTemplateTypeParmTypeLoc TL local
656 TL.setNameLoc(IdentifierLoc);
658 SubstTemplateTypeParmPackTypeLoc TL local
660 TL.setNameLoc(IdentifierLoc);
H A DSemaExceptionSpec.cpp298 TypeLoc TL = TSInfo->getTypeLoc().IgnoreParens(); local
299 if (FunctionTypeLoc FTLoc = TL.getAs<FunctionTypeLoc>())
H A DSemaTemplateVariadic.cpp53 bool VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) { argument
54 if (TL.getTypePtr()->isParameterPack())
55 Unexpanded.push_back(std::make_pair(TL.getTypePtr(), TL.getNameLoc()));
132 bool TraverseTypeLoc(TypeLoc TL) { argument
133 if ((!TL.getType().isNull() &&
134 TL.getType()->containsUnexpandedParameterPack()) ||
136 return inherited::TraverseTypeLoc(TL);
381 void Sema::collectUnexpandedParameterPacks(TypeLoc TL, argument
383 CollectUnexpandedParameterPacksVisitor(Unexpanded).TraverseTypeLoc(TL);
470 PackExpansionTypeLoc TL = TLB.push<PackExpansionTypeLoc>(Result); local
[all...]
H A DDeclSpec.cpp57 TypeLoc TL, SourceLocation ColonColonLoc) {
58 Builder.Extend(Context, TemplateKWLoc, TL, ColonColonLoc);
60 Range.setBegin(TL.getBeginLoc());
56 Extend(ASTContext &Context, SourceLocation TemplateKWLoc, TypeLoc TL, SourceLocation ColonColonLoc) argument
H A DSemaTemplateInstantiate.cpp792 FunctionProtoTypeLoc TL);
794 FunctionProtoTypeLoc TL,
806 TemplateTypeParmTypeLoc TL);
812 SubstTemplateTypeParmPackTypeLoc TL);
1311 FunctionProtoTypeLoc TL) {
1314 return inherited::TransformFunctionProtoType(TLB, TL);
1318 FunctionProtoTypeLoc TL,
1323 return inherited::TransformFunctionProtoType(TLB, TL, ThisContext,
1338 TemplateTypeParmTypeLoc TL) {
1339 const TemplateTypeParmType *T = TL
1310 TransformFunctionProtoType(TypeLocBuilder &TLB, FunctionProtoTypeLoc TL) argument
1317 TransformFunctionProtoType(TypeLocBuilder &TLB, FunctionProtoTypeLoc TL, CXXRecordDecl *ThisContext, unsigned ThisTypeQuals) argument
1337 TransformTemplateTypeParmType(TypeLocBuilder &TLB, TemplateTypeParmTypeLoc TL) argument
1411 TransformSubstTemplateTypeParmPackType( TypeLocBuilder &TLB, SubstTemplateTypeParmPackTypeLoc TL) argument
1478 SubstType(TypeLoc TL, const MultiLevelTemplateArgumentList &Args, SourceLocation Loc, DeclarationName Entity) argument
1577 TypeLoc TL = T->getTypeLoc(); local
[all...]
H A DSemaTemplateDeduction.cpp3915 QualType TransformAutoType(TypeLocBuilder &TLB, AutoTypeLoc TL) { argument
3927 NewTL.setNameLoc(TL.getNameLoc());
3934 TL.getTypePtr()->isDecltypeAuto(),
3937 NewTL.setNameLoc(TL.getNameLoc());
3947 QualType Apply(TypeLoc TL) { argument
3951 TLB.reserve(TL.getFullDataSize());
3952 return TransformType(TLB, TL);
/external/chromium_org/third_party/skia/samplecode/
H A DSamplePatch.cpp82 const int TL = 0; local
95 SkScalar x0 = SkScalarMul(UV, edge[TL].fX) + SkScalarMul(uV, edge[TR].fX) +
97 SkScalar y0 = SkScalarMul(UV, edge[TL].fY) + SkScalarMul(uV, edge[TR].fY) +
100 SkScalar x = SkScalarMul(SK_Scalar1 - v, edge[TL+iu].fX) +
104 SkScalar y = SkScalarMul(SK_Scalar1 - v, edge[TL+iu].fY) +
/external/llvm/lib/Target/XCore/
H A DXCoreFrameLowering.cpp162 const TargetLowering *TL) {
167 TL->getExceptionPointerRegister()));
170 TL->getExceptionSelectorRegister()));
160 GetEHSpillList(SmallVectorImpl<StackSlotInfo> &SpillList, MachineFrameInfo *MFI, XCoreFunctionInfo *XFI, const TargetLowering *TL) argument
/external/skia/samplecode/
H A DSamplePatch.cpp82 const int TL = 0; local
95 SkScalar x0 = SkScalarMul(UV, edge[TL].fX) + SkScalarMul(uV, edge[TR].fX) +
97 SkScalar y0 = SkScalarMul(UV, edge[TL].fY) + SkScalarMul(uV, edge[TR].fY) +
100 SkScalar x = SkScalarMul(SK_Scalar1 - v, edge[TL+iu].fX) +
104 SkScalar y = SkScalarMul(SK_Scalar1 - v, edge[TL+iu].fY) +
/external/clang/include/clang/AST/
H A DDataRecursiveASTVisitor.h172 bool TraverseTypeLoc(TypeLoc TL);
362 #define TYPELOC(CLASS, BASE) bool Traverse##CLASS##TypeLoc(CLASS##TypeLoc TL);
367 bool WalkUpFromTypeLoc(TypeLoc TL) { return getDerived().VisitTypeLoc(TL); } argument
368 bool VisitTypeLoc(TypeLoc TL) { return true; } argument
372 bool WalkUpFromQualifiedTypeLoc(QualifiedTypeLoc TL) { argument
373 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
375 bool VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { return true; } argument
376 bool WalkUpFromUnqualTypeLoc(UnqualTypeLoc TL) { argument
377 return getDerived().VisitUnqualTypeLoc(TL
379 VisitUnqualTypeLoc(UnqualTypeLoc TL) argument
561 TraverseTypeLoc(TypeLoc TL) argument
968 TraverseQualifiedTypeLoc(QualifiedTypeLoc TL) argument
1021 TraverseArrayTypeLocHelper(ArrayTypeLoc TL) argument
2126 TypeLoc TL = S->getCallOperator()->getTypeSourceInfo()->getTypeLoc(); local
[all...]
H A DRecursiveASTVisitor.h176 bool TraverseTypeLoc(TypeLoc TL);
364 #define TYPELOC(CLASS, BASE) bool Traverse##CLASS##TypeLoc(CLASS##TypeLoc TL);
369 bool WalkUpFromTypeLoc(TypeLoc TL) { return getDerived().VisitTypeLoc(TL); } argument
370 bool VisitTypeLoc(TypeLoc TL) { return true; } argument
374 bool WalkUpFromQualifiedTypeLoc(QualifiedTypeLoc TL) { argument
375 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
377 bool VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { return true; } argument
378 bool WalkUpFromUnqualTypeLoc(UnqualTypeLoc TL) { argument
379 return getDerived().VisitUnqualTypeLoc(TL
381 VisitUnqualTypeLoc(UnqualTypeLoc TL) argument
628 TraverseTypeLoc(TypeLoc TL) argument
1033 TraverseQualifiedTypeLoc(QualifiedTypeLoc TL) argument
1086 TraverseArrayTypeLocHelper(ArrayTypeLoc TL) argument
2148 TypeLoc TL = S->getCallOperator()->getTypeSourceInfo()->getTypeLoc(); local
[all...]
H A DTypeLoc.h193 static void initializeImpl(ASTContext &Context, TypeLoc TL,
195 static TypeLoc getNextTypeLocImpl(TypeLoc TL);
196 static TypeLoc IgnoreParensImpl(TypeLoc TL);
197 static SourceRange getLocalSourceRangeImpl(TypeLoc TL);
222 static bool isKind(const TypeLoc &TL) { argument
223 return !TL.getType().hasLocalQualifiers();
273 static bool isKind(const TypeLoc &TL) { argument
274 return TL.getType().hasLocalQualifiers();
320 static bool isKind(const TypeLoc &TL) { argument
321 return !TL
431 isKind(const TypeLoc &TL) argument
435 isKind(const UnqualTypeLoc &TL) argument
[all...]
/external/llvm/lib/Target/R600/
H A DAMDGPUISelDAGToDAG.cpp112 const SITargetLowering *TL local
114 return TL->analyzeImmediate(N) == 0;
/external/llvm/lib/Target/ARM/
H A DARMLoadStoreOptimizer.cpp71 const TargetLowering *TL; member in struct:__anon25980::ARMLoadStoreOpt
371 if (TL->isLegalAddImmediate(Offset)) {
471 if (!TL->isLegalAddImmediate(Offset))
1728 TL = TM.getTargetLowering();
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DRegionDataConstants.java1108 TL(new String[]{ enum constant in enum:RegionDataConstants.RegionDataEnum

Completed in 392 milliseconds

12