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

12

/external/opencv3/modules/cudalegacy/src/cuda/
H A DNCVRuntimeTemplates.hpp109 namespace TL namespace in namespace:Loki
/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.cpp1023 TypeLoc TL = Type->getTypeLoc(); local
1024 SourceLocation Loc = TL.getBeginLoc();
1028 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.cpp238 TypeLoc TL = TSI->getTypeLoc().getUnqualifiedLoc(); local
240 TL = TL.IgnoreParens();
242 if (QualifiedTypeLoc QualifiedTL = TL.getAs<QualifiedTypeLoc>()) {
243 TL = QualifiedTL.getUnqualifiedLoc();
247 if (PointerTypeLoc PointerTL = TL.getAs<PointerTypeLoc>()) {
248 TL = PointerTL.getPointeeLoc().getUnqualifiedLoc();
252 if (ReferenceTypeLoc ReferenceTL = TL.getAs<ReferenceTypeLoc>()) {
253 TL = ReferenceTL.getPointeeLoc().getUnqualifiedLoc();
257 if (AdjustedTypeLoc ATL = TL
294 TypeLoc TL = MaybeFunctionTSI->getTypeLoc().getUnqualifiedLoc(); local
[all...]
H A DTypeLoc.cpp40 SourceRange TypeLoc::getLocalSourceRangeImpl(TypeLoc TL) { argument
41 if (TL.isNull()) return SourceRange();
42 return TypeLocRanger().Visit(TL);
105 TypeLoc TypeLoc::getNextTypeLocImpl(TypeLoc TL) { argument
106 return NextLoc().Visit(TL);
112 void TypeLoc::initializeImpl(ASTContext &Context, TypeLoc TL, argument
115 switch (TL.getTypeLocClass()) {
119 CLASS##TypeLoc TLCasted = TL.castAs<CLASS##TypeLoc>(); \
121 TL = TLCasted.getNextTypeLoc(); \
122 if (!TL) retur
272 isKind(const TypeLoc &TL) argument
362 IgnoreParensImpl(TypeLoc TL) argument
[all...]
H A DNestedNameSpecifier.cpp415 TypeLoc TL(Qualifier->getAsType(), TypeData);
416 return SourceRange(TL.getBeginLoc(),
537 TypeLoc TL,
541 TL.getTypePtr());
544 SavePointer(TL.getOpaqueData(), Buffer, BufferSize, BufferCapacity);
535 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());
/external/dng_sdk/source/
H A Ddng_rect.h163 dng_point TL () const function in class:dng_rect
298 dng_point_real64 TL () const function in class:dng_rect_real64
/external/clang/include/clang/AST/
H A DASTTypeTraits.h340 auto TL = Val.getUnchecked<TypeLoc>(); local
341 return llvm::hash_combine(TL.getType().getAsOpaquePtr(),
342 TL.getOpaqueData());
H A DRecursiveASTVisitor.h178 bool TraverseTypeLoc(TypeLoc TL);
409 #define TYPELOC(CLASS, BASE) bool Traverse##CLASS##TypeLoc(CLASS##TypeLoc TL);
414 bool WalkUpFromTypeLoc(TypeLoc TL) { return getDerived().VisitTypeLoc(TL); } argument
415 bool VisitTypeLoc(TypeLoc TL) { return true; } argument
419 bool WalkUpFromQualifiedTypeLoc(QualifiedTypeLoc TL) { argument
420 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
422 bool VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { return true; } argument
423 bool WalkUpFromUnqualTypeLoc(UnqualTypeLoc TL) { argument
424 return getDerived().VisitUnqualTypeLoc(TL
426 VisitUnqualTypeLoc(UnqualTypeLoc TL) argument
588 TraverseTypeLoc(TypeLoc TL) argument
1002 TraverseQualifiedTypeLoc(QualifiedTypeLoc TL) argument
1055 TraverseArrayTypeLocHelper(ArrayTypeLoc TL) argument
[all...]
H A DTypeLoc.h207 static void initializeImpl(ASTContext &Context, TypeLoc TL,
209 static TypeLoc getNextTypeLocImpl(TypeLoc TL);
210 static TypeLoc IgnoreParensImpl(TypeLoc TL);
211 static SourceRange getLocalSourceRangeImpl(TypeLoc TL);
237 static bool isKind(const TypeLoc &TL) { argument
238 return !TL.getType().hasLocalQualifiers();
292 static bool isKind(const TypeLoc &TL) { argument
293 return TL.getType().hasLocalQualifiers();
339 static bool isKind(const TypeLoc &TL) { argument
340 return !TL
464 isKind(const TypeLoc &TL) argument
468 isKind(const UnqualTypeLoc &TL) argument
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DSafeStack.cpp103 const TargetLoweringBase *TL; member in class:__anon12461::SafeStack
176 : FunctionPass(ID), TM(TM), TL(nullptr), DL(nullptr) {
347 if (TL)
348 if (Value *V = TL->getSafeStackPointerLocation(IRB))
681 TL = TM ? TM->getSubtargetImpl(F)->getTargetLowering() : nullptr;
/external/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp714 SubstTemplateTypeParmTypeLoc TL local
716 TL.setNameLoc(IdentifierLoc);
718 SubstTemplateTypeParmPackTypeLoc TL local
720 TL.setNameLoc(IdentifierLoc);
H A DSemaExceptionSpec.cpp343 TypeLoc TL = TSInfo->getTypeLoc().IgnoreParens(); local
346 if (auto FTLoc = TL.getAs<FunctionProtoTypeLoc>())
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);
390 void Sema::collectUnexpandedParameterPacks(TypeLoc TL, argument
392 CollectUnexpandedParameterPacksVisitor(Unexpanded).TraverseTypeLoc(TL);
479 PackExpansionTypeLoc TL = TLB.push<PackExpansionTypeLoc>(Result); local
[all...]
H A DDeclSpec.cpp48 TypeLoc TL, SourceLocation ColonColonLoc) {
49 Builder.Extend(Context, TemplateKWLoc, TL, ColonColonLoc);
51 Range.setBegin(TL.getBeginLoc());
47 Extend(ASTContext &Context, SourceLocation TemplateKWLoc, TypeLoc TL, SourceLocation ColonColonLoc) argument
H A DSemaTemplateInstantiate.cpp792 FunctionProtoTypeLoc TL) {
794 return inherited::TransformFunctionProtoType(TLB, TL);
799 FunctionProtoTypeLoc TL,
812 TemplateTypeParmTypeLoc TL);
818 SubstTemplateTypeParmPackTypeLoc TL);
1306 FunctionProtoTypeLoc TL,
1313 TLB, TL, ThisContext, ThisTypeQuals, TransformExceptionSpec);
1327 TemplateTypeParmTypeLoc TL) {
1328 const TemplateTypeParmType *T = TL.getTypePtr();
1339 = TLB.push<TemplateTypeParmTypeLoc>(TL
791 TransformFunctionProtoType(TypeLocBuilder &TLB, FunctionProtoTypeLoc TL) argument
1305 TransformFunctionProtoType(TypeLocBuilder &TLB, FunctionProtoTypeLoc TL, CXXRecordDecl *ThisContext, unsigned ThisTypeQuals, Fn TransformExceptionSpec) argument
1326 TransformTemplateTypeParmType(TypeLocBuilder &TLB, TemplateTypeParmTypeLoc TL) argument
1400 TransformSubstTemplateTypeParmPackType( TypeLocBuilder &TLB, SubstTemplateTypeParmPackTypeLoc TL) argument
1467 SubstType(TypeLoc TL, const MultiLevelTemplateArgumentList &Args, SourceLocation Loc, DeclarationName Entity) argument
1567 TypeLoc TL = T->getTypeLoc(); local
[all...]
/external/llvm/lib/Target/XCore/
H A DXCoreFrameLowering.cpp164 const TargetLowering *TL) {
169 TL->getExceptionPointerRegister(PersonalityFn)));
172 TL->getExceptionSelectorRegister(PersonalityFn)));
161 GetEHSpillList(SmallVectorImpl<StackSlotInfo> &SpillList, MachineFrameInfo *MFI, XCoreFunctionInfo *XFI, const Constant *PersonalityFn, const TargetLowering *TL) argument
/external/skia/samplecode/
H A DSamplePatch.cpp83 const int TL = 0; local
96 SkScalar x0 = SkScalarMul(UV, edge[TL].fX) + SkScalarMul(uV, edge[TR].fX) +
98 SkScalar y0 = SkScalarMul(UV, edge[TL].fY) + SkScalarMul(uV, edge[TR].fY) +
101 SkScalar x = SkScalarMul(SK_Scalar1 - v, edge[TL+iu].fX) +
105 SkScalar y = SkScalarMul(SK_Scalar1 - v, edge[TL+iu].fY) +
/external/llvm/lib/Target/ARM/
H A DARMLoadStoreOptimizer.cpp82 const TargetLowering *TL; member in struct:__anon12100::ARMLoadStoreOpt
487 if (Offset >= 0 && TL->isLegalAddImmediate(Offset)) {
666 if (!TL->isLegalAddImmediate(Offset))
1856 TL = STI->getTargetLowering();
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.cpp102 const NVPTXTargetLowering *TL = Subtarget->getTargetLowering(); local
103 return TL->allowFMA(*MF, OptLevel);
/external/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp170 const SITargetLowering *TL local
172 return TL->analyzeImmediate(N) == 0;

Completed in 800 milliseconds

12