Home
last modified time | relevance | path

Searched refs:TL (Results 1 – 25 of 707) sorted by relevance

12345678910>>...29

/external/llvm-project/clang/lib/Index/
DIndexTypeSourceInfo.cpp56 bool VisitTypedefTypeLoc(TypedefTypeLoc TL) { in VisitTypedefTypeLoc() argument
57 SourceLocation Loc = TL.getNameLoc(); in VisitTypedefTypeLoc()
58 TypedefNameDecl *ND = TL.getTypedefNameDecl(); in VisitTypedefTypeLoc()
67 if (auto *CD = TL.getType()->getAsCXXRecordDecl()) { in VisitTypedefTypeLoc()
108 bool VisitTagTypeLoc(TagTypeLoc TL) { in VisitTagTypeLoc() argument
109 TagDecl *D = TL.getDecl(); in VisitTagTypeLoc()
114 if (TL.isDefinition()) { in VisitTagTypeLoc()
119 return IndexCtx.handleReference(D, TL.getNameLoc(), in VisitTagTypeLoc()
124 bool VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) { in VisitObjCInterfaceTypeLoc() argument
125 return IndexCtx.handleReference(TL.getIFaceDecl(), TL.getNameLoc(), in VisitObjCInterfaceTypeLoc()
[all …]
/external/clang/lib/Index/
DIndexTypeSourceInfo.cpp39 bool VisitTypedefTypeLoc(TypedefTypeLoc TL) { in VisitTypedefTypeLoc() argument
40 return IndexCtx.handleReference(TL.getTypedefNameDecl(), TL.getNameLoc(), in VisitTypedefTypeLoc()
79 bool VisitTagTypeLoc(TagTypeLoc TL) { in VisitTagTypeLoc() argument
80 TagDecl *D = TL.getDecl(); in VisitTagTypeLoc()
84 if (TL.isDefinition()) { in VisitTagTypeLoc()
89 return IndexCtx.handleReference(D, TL.getNameLoc(), in VisitTagTypeLoc()
94 bool VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) { in VisitObjCInterfaceTypeLoc() argument
95 return IndexCtx.handleReference(TL.getIFaceDecl(), TL.getNameLoc(), in VisitObjCInterfaceTypeLoc()
99 bool VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) { in VisitObjCObjectTypeLoc() argument
100 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i) { in VisitObjCObjectTypeLoc()
[all …]
/external/llvm-project/clang/lib/AST/
DComment.cpp131 TypeLoc TL = SrcTL.IgnoreParens(); in lookThroughTypedefOrTypeAliasLocs() local
134 if (AttributedTypeLoc AttributeTL = TL.getAs<AttributedTypeLoc>()) in lookThroughTypedefOrTypeAliasLocs()
137 if (QualifiedTypeLoc QualifiedTL = TL.getAs<QualifiedTypeLoc>()) in lookThroughTypedefOrTypeAliasLocs()
140 if (PointerTypeLoc PointerTL = TL.getAs<PointerTypeLoc>()) in lookThroughTypedefOrTypeAliasLocs()
143 if (ReferenceTypeLoc ReferenceTL = TL.getAs<ReferenceTypeLoc>()) in lookThroughTypedefOrTypeAliasLocs()
146 if (AdjustedTypeLoc ATL = TL.getAs<AdjustedTypeLoc>()) in lookThroughTypedefOrTypeAliasLocs()
148 if (BlockPointerTypeLoc BlockPointerTL = TL.getAs<BlockPointerTypeLoc>()) in lookThroughTypedefOrTypeAliasLocs()
150 if (MemberPointerTypeLoc MemberPointerTL = TL.getAs<MemberPointerTypeLoc>()) in lookThroughTypedefOrTypeAliasLocs()
152 if (ElaboratedTypeLoc ETL = TL.getAs<ElaboratedTypeLoc>()) in lookThroughTypedefOrTypeAliasLocs()
155 return TL; in lookThroughTypedefOrTypeAliasLocs()
[all …]
DTypeLoc.cpp53 SourceRange TypeLoc::getLocalSourceRangeImpl(TypeLoc TL) { in getLocalSourceRangeImpl() argument
54 if (TL.isNull()) return SourceRange(); in getLocalSourceRangeImpl()
55 return TypeLocRanger().Visit(TL); in getLocalSourceRangeImpl()
124 TypeLoc TypeLoc::getNextTypeLocImpl(TypeLoc TL) { in getNextTypeLocImpl() argument
125 return NextLoc().Visit(TL); in getNextTypeLocImpl()
131 void TypeLoc::initializeImpl(ASTContext &Context, TypeLoc TL, in initializeImpl() argument
134 switch (TL.getTypeLocClass()) { in initializeImpl()
138 CLASS##TypeLoc TLCasted = TL.castAs<CLASS##TypeLoc>(); \ in initializeImpl()
140 TL = TLCasted.getNextTypeLoc(); \ in initializeImpl()
141 if (!TL) return; \ in initializeImpl()
[all …]
/external/tcpdump/tests/
Dl2tp-avp-overflow.out2 127.0.0.229.12416 > 127.0.128.1.1701: l2tp:[TL](560/2056) AVP-#60963() |...
4 127.0.0.229.12416 > 127.236.0.1.1701: l2tp:[TL](560/2056) AVP-#48() |...
6 127.0.0.229.32767 > 127.236.0.1.1701: l2tp:[TL](560/2056) ACCM(AVP too short) |...
8 127.0.0.229.12416 > 127.236.0.1.1701: l2tp:[TL](560/2056) ACCM(AVP too short) |...
10 127.0.0.229.12416 > 127.236.0.1.1701: l2tp:[TL](560/2056) ACCM(AVP too short) |...
15 127.0.0.229.12416 > 127.236.0.1.1701: l2tp:[TL](560/2056) AVP-#48() |...
17 127.0.0.229.12416 > 127.236.0.1.1701: l2tp:[TL](560/2056) ACCM(AVP too short) |...
19 127.0.0.229.12416 > 127.236.0.1.1701: l2tp:[TL](560/2056) ACCM(AVP too short) |...
21 127.0.0.229.12416 > 127.236.0.1.1701: l2tp:[TL](560/2056) ACCM(AVP too short) |...
26 127.0.0.229.12416 > 127.236.0.1.1701: l2tp:[TL](560/2056) AVP-#48() |...
[all …]
/external/clang/lib/AST/
DComment.cpp238 TypeLoc TL = TSI->getTypeLoc().getUnqualifiedLoc(); in fill() local
240 TL = TL.IgnoreParens(); in fill()
242 if (QualifiedTypeLoc QualifiedTL = TL.getAs<QualifiedTypeLoc>()) { in fill()
243 TL = QualifiedTL.getUnqualifiedLoc(); in fill()
247 if (PointerTypeLoc PointerTL = TL.getAs<PointerTypeLoc>()) { in fill()
248 TL = PointerTL.getPointeeLoc().getUnqualifiedLoc(); in fill()
252 if (ReferenceTypeLoc ReferenceTL = TL.getAs<ReferenceTypeLoc>()) { in fill()
253 TL = ReferenceTL.getPointeeLoc().getUnqualifiedLoc(); in fill()
257 if (AdjustedTypeLoc ATL = TL.getAs<AdjustedTypeLoc>()) { in fill()
258 TL = ATL.getOriginalLoc(); in fill()
[all …]
DTypeLoc.cpp40 SourceRange TypeLoc::getLocalSourceRangeImpl(TypeLoc TL) { in getLocalSourceRangeImpl() argument
41 if (TL.isNull()) return SourceRange(); in getLocalSourceRangeImpl()
42 return TypeLocRanger().Visit(TL); in getLocalSourceRangeImpl()
105 TypeLoc TypeLoc::getNextTypeLocImpl(TypeLoc TL) { in getNextTypeLocImpl() argument
106 return NextLoc().Visit(TL); in getNextTypeLocImpl()
112 void TypeLoc::initializeImpl(ASTContext &Context, TypeLoc TL, in initializeImpl() argument
115 switch (TL.getTypeLocClass()) { in initializeImpl()
119 CLASS##TypeLoc TLCasted = TL.castAs<CLASS##TypeLoc>(); \ in initializeImpl()
121 TL = TLCasted.getNextTypeLoc(); \ in initializeImpl()
122 if (!TL) return; \ in initializeImpl()
[all …]
/external/llvm-project/clang/lib/ARCMigrate/
DTransGCAttrs.cpp40 bool VisitAttributedTypeLoc(AttributedTypeLoc TL) { in VisitAttributedTypeLoc() argument
41 handleAttr(TL); in VisitAttributedTypeLoc()
63 TypeLoc TL = TInfo->getTypeLoc(); in lookForAttribute() local
64 while (TL) { in lookForAttribute()
65 if (QualifiedTypeLoc QL = TL.getAs<QualifiedTypeLoc>()) { in lookForAttribute()
66 TL = QL.getUnqualifiedLoc(); in lookForAttribute()
67 } else if (AttributedTypeLoc Attr = TL.getAs<AttributedTypeLoc>()) { in lookForAttribute()
70 TL = Attr.getModifiedLoc(); in lookForAttribute()
72 TL.getAs<MacroQualifiedTypeLoc>()) { in lookForAttribute()
73 TL = MDTL.getInnerLoc(); in lookForAttribute()
[all …]
/external/clang/lib/ARCMigrate/
DTransGCAttrs.cpp41 bool VisitAttributedTypeLoc(AttributedTypeLoc TL) { in VisitAttributedTypeLoc() argument
42 handleAttr(TL); in VisitAttributedTypeLoc()
64 TypeLoc TL = TInfo->getTypeLoc(); in lookForAttribute() local
65 while (TL) { in lookForAttribute()
66 if (QualifiedTypeLoc QL = TL.getAs<QualifiedTypeLoc>()) { in lookForAttribute()
67 TL = QL.getUnqualifiedLoc(); in lookForAttribute()
68 } else if (AttributedTypeLoc Attr = TL.getAs<AttributedTypeLoc>()) { in lookForAttribute()
71 TL = Attr.getModifiedLoc(); in lookForAttribute()
72 } else if (ArrayTypeLoc Arr = TL.getAs<ArrayTypeLoc>()) { in lookForAttribute()
73 TL = Arr.getElementLoc(); in lookForAttribute()
[all …]
/external/llvm-project/clang/include/clang/AST/
DRecursiveASTVisitor.h233 bool TraverseTypeLoc(TypeLoc TL);
413 #define TYPELOC(CLASS, BASE) bool Traverse##CLASS##TypeLoc(CLASS##TypeLoc TL);
418 bool WalkUpFromTypeLoc(TypeLoc TL) { return getDerived().VisitTypeLoc(TL); }
419 bool VisitTypeLoc(TypeLoc TL) { return true; }
423 bool WalkUpFromQualifiedTypeLoc(QualifiedTypeLoc TL) {
424 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
426 bool VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { return true; }
427 bool WalkUpFromUnqualTypeLoc(UnqualTypeLoc TL) {
428 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
430 bool VisitUnqualTypeLoc(UnqualTypeLoc TL) { return true; }
[all …]
/external/llvm-project/clang-tools-extra/clangd/
DDumpAST.cpp126 std::string getKind(const TypeLoc &TL) { in getKind() argument
128 if (TL.getTypeLocClass() == TypeLoc::Qualified) in getKind()
130 return TL.getType()->getTypeClassName(); in getKind()
255 std::string getDetail(const TypeLoc &TL) { in getDetail() argument
256 if (TL.getType().hasLocalQualifiers()) in getDetail()
257 return TL.getType().getLocalQualifiers().getAsString( in getDetail()
259 if (const auto *TT = dyn_cast<TagType>(TL.getTypePtr())) in getDetail()
261 if (const auto *DT = dyn_cast<DeducedType>(TL.getTypePtr())) in getDetail()
264 if (const auto *BT = dyn_cast<BuiltinType>(TL.getTypePtr())) in getDetail()
266 if (const auto *TTPT = dyn_cast<TemplateTypeParmType>(TL.getTypePtr())) in getDetail()
[all …]
/external/llvm-project/clang/lib/Tooling/Refactoring/Rename/
DUSRLocFinder.cpp110 SourceLocation StartLocationForType(TypeLoc TL) { in StartLocationForType() argument
113 if (auto ElaboratedTypeLoc = TL.getAs<clang::ElaboratedTypeLoc>()) { in StartLocationForType()
118 TL = TL.getNextTypeLoc(); in StartLocationForType()
120 return TL.getBeginLoc(); in StartLocationForType()
123 SourceLocation EndLocationForType(TypeLoc TL) { in EndLocationForType() argument
125 while (TL.getTypeLocClass() == TypeLoc::Elaborated || in EndLocationForType()
126 TL.getTypeLocClass() == TypeLoc::Qualified) in EndLocationForType()
127 TL = TL.getNextTypeLoc(); in EndLocationForType()
132 if (TL.getTypeLocClass() == TypeLoc::TemplateSpecialization) { in EndLocationForType()
133 return TL.castAs<TemplateSpecializationTypeLoc>() in EndLocationForType()
[all …]
/external/clang/include/clang/AST/
DRecursiveASTVisitor.h199 bool TraverseTypeLoc(TypeLoc TL);
431 #define TYPELOC(CLASS, BASE) bool Traverse##CLASS##TypeLoc(CLASS##TypeLoc TL);
436 bool WalkUpFromTypeLoc(TypeLoc TL) { return getDerived().VisitTypeLoc(TL); }
437 bool VisitTypeLoc(TypeLoc TL) { return true; }
441 bool WalkUpFromQualifiedTypeLoc(QualifiedTypeLoc TL) {
442 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
444 bool VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { return true; }
445 bool WalkUpFromUnqualTypeLoc(UnqualTypeLoc TL) {
446 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
448 bool VisitUnqualTypeLoc(UnqualTypeLoc TL) { return true; }
[all …]
/external/clang/lib/Sema/
DTreeTransform.h308 QualType TransformType(TypeLocBuilder &TLB, TypeLoc TL);
581 FunctionProtoTypeLoc TL,
595 TemplateSpecializationTypeLoc TL,
600 DependentTemplateSpecializationTypeLoc TL,
605 TypeLocBuilder &TLB, DependentTemplateSpecializationTypeLoc TL,
632 QualType TransformReferenceType(TypeLocBuilder &TLB, ReferenceTypeLoc TL);
3126 TypeLoc TransformTypeInObjectScope(TypeLoc TL,
3136 TypeSourceInfo *TransformTSIInObjectScope(TypeLoc TL, QualType ObjectType,
3488 TypeLoc TL = TransformTypeInObjectScope(Q.getTypeLoc(), ObjectType, in TransformNestedNameSpecifierLoc() local
3491 if (!TL) in TransformNestedNameSpecifierLoc()
[all …]
DSemaType.cpp4780 static void fillAttributedTypeLoc(AttributedTypeLoc TL, in fillAttributedTypeLoc() argument
4787 AttributeList::Kind parsedKind = getAttrListKind(TL.getAttrKind()); in fillAttributedTypeLoc()
4802 TL.setAttrNameLoc(attrs->getLoc()); in fillAttributedTypeLoc()
4803 if (TL.hasAttrExprOperand()) { in fillAttributedTypeLoc()
4805 TL.setAttrExprOperand(attrs->getArgAsExpr(0)); in fillAttributedTypeLoc()
4806 } else if (TL.hasAttrEnumOperand()) { in fillAttributedTypeLoc()
4810 TL.setAttrEnumOperandLoc(attrs->getArgAsIdent(0)->Loc); in fillAttributedTypeLoc()
4812 TL.setAttrEnumOperandLoc(attrs->getArgAsExpr(0)->getExprLoc()); in fillAttributedTypeLoc()
4816 if (TL.hasAttrOperand()) in fillAttributedTypeLoc()
4817 TL.setAttrOperandParensRange(SourceRange()); in fillAttributedTypeLoc()
[all …]
/external/tensorflow/tensorflow/core/kernels/
Dsparse_matmul_op.cc614 template <typename TL, typename TR, int Cols>
616 const std::vector<SparseSlice<TL>*>& left_slices, in GEPP()
778 template <typename TL, typename TR>
780 using MatrixL = BasicMatrix<TL>;
782 using ConstMatrixMapL = BasicMatrixMap<const TL>;
805 const std::vector<SparseSlice<TL>*>& left, const ConstMatrixMapR& right,
817 std::vector<std::vector<SparseSlice<TL>*>>* mat_slices,
859 template <typename TL, typename TR>
861 using MatrixL = BasicMatrix<TL>;
863 using ConstMatrixMapL = BasicMatrixMap<const TL>;
[all …]
/external/llvm-project/clang/lib/Sema/
DTreeTransform.h334 QualType TransformType(TypeLocBuilder &TLB, TypeLoc TL);
641 FunctionProtoTypeLoc TL,
655 TemplateSpecializationTypeLoc TL,
660 DependentTemplateSpecializationTypeLoc TL,
665 TypeLocBuilder &TLB, DependentTemplateSpecializationTypeLoc TL,
698 QualType TransformReferenceType(TypeLocBuilder &TLB, ReferenceTypeLoc TL);
745 QualType RebuildQualifiedType(QualType T, QualifiedTypeLoc TL);
3631 TypeLoc TransformTypeInObjectScope(TypeLoc TL,
3641 TypeSourceInfo *TransformTSIInObjectScope(TypeLoc TL, QualType ObjectType,
3646 DependentNameTypeLoc TL,
[all …]
DSemaType.cpp5795 static void fillAttributedTypeLoc(AttributedTypeLoc TL, in fillAttributedTypeLoc() argument
5797 TL.setAttr(State.takeAttrForAttributedType(TL.getTypePtr())); in fillAttributedTypeLoc()
5812 void VisitAttributedTypeLoc(AttributedTypeLoc TL) { in VisitAttributedTypeLoc() argument
5813 Visit(TL.getModifiedLoc()); in VisitAttributedTypeLoc()
5814 fillAttributedTypeLoc(TL, State); in VisitAttributedTypeLoc()
5816 void VisitMacroQualifiedTypeLoc(MacroQualifiedTypeLoc TL) { in VisitMacroQualifiedTypeLoc() argument
5817 Visit(TL.getInnerLoc()); in VisitMacroQualifiedTypeLoc()
5818 TL.setExpansionLoc( in VisitMacroQualifiedTypeLoc()
5819 State.getExpansionLocForMacroQualifiedType(TL.getTypePtr())); in VisitMacroQualifiedTypeLoc()
5821 void VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { in VisitQualifiedTypeLoc() argument
[all …]
/external/llvm-project/clang/unittests/Tooling/RecursiveASTVisitorTests/
DMemberPointerTypeLoc.cpp19 bool VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) { in VisitTemplateTypeParmTypeLoc() argument
20 if (!TL) in VisitTemplateTypeParmTypeLoc()
22 Match(TL.getDecl()->getName(), TL.getNameLoc()); in VisitTemplateTypeParmTypeLoc()
/external/llvm-project/clang/lib/Serialization/
DASTWriter.cpp193 void TypeLocWriter::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { in VisitQualifiedTypeLoc() argument
197 void TypeLocWriter::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) { in VisitBuiltinTypeLoc() argument
198 Record.AddSourceLocation(TL.getBuiltinLoc()); in VisitBuiltinTypeLoc()
199 if (TL.needsExtraLocalData()) { in VisitBuiltinTypeLoc()
200 Record.push_back(TL.getWrittenTypeSpec()); in VisitBuiltinTypeLoc()
201 Record.push_back(static_cast<uint64_t>(TL.getWrittenSignSpec())); in VisitBuiltinTypeLoc()
202 Record.push_back(static_cast<uint64_t>(TL.getWrittenWidthSpec())); in VisitBuiltinTypeLoc()
203 Record.push_back(TL.hasModeAttr()); in VisitBuiltinTypeLoc()
207 void TypeLocWriter::VisitComplexTypeLoc(ComplexTypeLoc TL) { in VisitComplexTypeLoc() argument
208 Record.AddSourceLocation(TL.getNameLoc()); in VisitComplexTypeLoc()
[all …]
/external/clang/lib/Serialization/
DASTWriter.cpp504 void TypeLocWriter::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { in VisitQualifiedTypeLoc() argument
507 void TypeLocWriter::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) { in VisitBuiltinTypeLoc() argument
508 Record.AddSourceLocation(TL.getBuiltinLoc()); in VisitBuiltinTypeLoc()
509 if (TL.needsExtraLocalData()) { in VisitBuiltinTypeLoc()
510 Record.push_back(TL.getWrittenTypeSpec()); in VisitBuiltinTypeLoc()
511 Record.push_back(TL.getWrittenSignSpec()); in VisitBuiltinTypeLoc()
512 Record.push_back(TL.getWrittenWidthSpec()); in VisitBuiltinTypeLoc()
513 Record.push_back(TL.hasModeAttr()); in VisitBuiltinTypeLoc()
516 void TypeLocWriter::VisitComplexTypeLoc(ComplexTypeLoc TL) { in VisitComplexTypeLoc() argument
517 Record.AddSourceLocation(TL.getNameLoc()); in VisitComplexTypeLoc()
[all …]
/external/ImageMagick/coders/
Dwmf.c634 XC(rop_draw->TL.x), YC(rop_draw->TL.y), in ipa_rop_draw()
865 XC(ddata->bbox.TL.x),YC(ddata->bbox.TL.y), in ipa_device_begin()
913 XC(ddata->bbox.TL.x),YC(ddata->bbox.TL.y), in ipa_device_begin()
1026 TL, in util_draw_arc() local
1044 center.x = (draw_arc->TL.x + draw_arc->BR.x) / 2; in util_draw_arc()
1045 center.y = (draw_arc->TL.y + draw_arc->BR.y) / 2; in util_draw_arc()
1058 TL = draw_arc->TL; in util_draw_arc()
1069 Rx = (BR.x - TL.x) / 2; in util_draw_arc()
1070 Ry = (BR.y - TL.y) / 2; in util_draw_arc()
1108 DrawArc(WmfDrawingWand, XC(draw_arc->TL.x), YC(draw_arc->TL.y), in util_draw_arc()
[all …]
/external/llvm-project/clang-tools-extra/clang-tidy/modernize/
DUseTrailingReturnTypeCheck.cpp45 bool TraverseTypeLoc(TypeLoc TL, bool Elaborated = false) { in TraverseTypeLoc()
46 if (TL.isNull()) in TraverseTypeLoc()
50 switch (TL.getTypeLocClass()) { in TraverseTypeLoc()
53 TL.getAs<RecordTypeLoc>().getTypePtr()->getDecl()->getName())) in TraverseTypeLoc()
58 TL.getAs<EnumTypeLoc>().getTypePtr()->getDecl()->getName())) in TraverseTypeLoc()
62 if (VisitUnqualName(TL.getAs<TemplateSpecializationTypeLoc>() in TraverseTypeLoc()
71 TL.getAs<TypedefTypeLoc>().getTypePtr()->getDecl()->getName())) in TraverseTypeLoc()
79 return RecursiveASTVisitor<UnqualNameVisitor>::TraverseTypeLoc(TL); in TraverseTypeLoc()
84 bool TraverseQualifiedTypeLoc(QualifiedTypeLoc TL) { in TraverseQualifiedTypeLoc()
85 return TraverseTypeLoc(TL.getUnqualifiedLoc()); in TraverseQualifiedTypeLoc()
[all …]
/external/llvm-project/clang-tools-extra/clang-tidy/google/
DIntegerTypesCheck.cpp70 auto TL = *Result.Nodes.getNodeAs<TypeLoc>("tl"); in check() local
71 SourceLocation Loc = TL.getBeginLoc(); in check()
77 if (auto QualLoc = TL.getAs<QualifiedTypeLoc>()) in check()
78 TL = QualLoc.getUnqualifiedLoc(); in check()
80 auto BuiltinLoc = TL.getAs<BuiltinTypeLoc>(); in check()
/external/dng_sdk/source/
Ddng_image.cpp300 dng_rect newArea = srcArea + (dstArea.TL () - in GetRepeat()
301 srcArea.TL ()); in GetRepeat()
320 temp.fArea = dst1 + (srcArea.TL () - in GetRepeat()
321 dstArea.TL () + in GetRepeat()
344 temp.fArea = dst2 + (srcArea.TL () - in GetRepeat()
345 dstArea.TL () + in GetRepeat()
368 temp.fArea = dst3 + (srcArea.TL () - in GetRepeat()
369 dstArea.TL () + in GetRepeat()
392 temp.fArea = dst4 + (srcArea.TL () - in GetRepeat()
393 dstArea.TL () + in GetRepeat()

12345678910>>...29