Home
last modified time | relevance | path

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

12345678910>>...22

/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/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 …]
DASTTypeTraits.cpp118 else if (const TypeLoc *TL = get<TypeLoc>()) in print() local
119 TL->getType().print(OS, PP); in print()
144 if (const TypeLoc *TL = get<TypeLoc>()) in getSourceRange() local
145 return TL->getSourceRange(); in getSourceRange()
/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 …]
DTransAutoreleasePool.cpp267 bool VisitTypedefTypeLoc(TypedefTypeLoc TL) { in VisitTypedefTypeLoc() argument
268 return checkRef(TL.getBeginLoc(), TL.getTypedefNameDecl()->getLocation()); in VisitTypedefTypeLoc()
271 bool VisitTagTypeLoc(TagTypeLoc TL) { in VisitTagTypeLoc() argument
272 return checkRef(TL.getBeginLoc(), TL.getDecl()->getLocation()); in VisitTagTypeLoc()
/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 …]
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) { in isKind() argument
238 return !TL.getType().hasLocalQualifiers(); in isKind()
292 static bool isKind(const TypeLoc &TL) { in isKind() argument
293 return TL.getType().hasLocalQualifiers(); in isKind()
339 static bool isKind(const TypeLoc &TL) { in isKind() argument
340 return !TL.getType().hasLocalQualifiers() && in isKind()
[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 …]
DSemaTemplateInstantiate.cpp794 FunctionProtoTypeLoc TL) { in TransformFunctionProtoType() argument
796 return inherited::TransformFunctionProtoType(TLB, TL); in TransformFunctionProtoType()
801 FunctionProtoTypeLoc TL,
814 TemplateTypeParmTypeLoc TL);
820 SubstTemplateTypeParmPackTypeLoc TL);
1308 FunctionProtoTypeLoc TL, in TransformFunctionProtoType() argument
1315 TLB, TL, ThisContext, ThisTypeQuals, TransformExceptionSpec); in TransformFunctionProtoType()
1329 TemplateTypeParmTypeLoc TL) { in TransformTemplateTypeParmType() argument
1330 const TemplateTypeParmType *T = TL.getTypePtr(); in TransformTemplateTypeParmType()
1341 = TLB.push<TemplateTypeParmTypeLoc>(TL.getType()); in TransformTemplateTypeParmType()
[all …]
DSemaTemplateVariadic.cpp53 bool VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) { in VisitTemplateTypeParmTypeLoc() argument
54 if (TL.getTypePtr()->isParameterPack()) in VisitTemplateTypeParmTypeLoc()
55 Unexpanded.push_back(std::make_pair(TL.getTypePtr(), TL.getNameLoc())); in VisitTemplateTypeParmTypeLoc()
132 bool TraverseTypeLoc(TypeLoc TL) { in TraverseTypeLoc() argument
133 if ((!TL.getType().isNull() && in TraverseTypeLoc()
134 TL.getType()->containsUnexpandedParameterPack()) || in TraverseTypeLoc()
136 return inherited::TraverseTypeLoc(TL); in TraverseTypeLoc()
390 void Sema::collectUnexpandedParameterPacks(TypeLoc TL, in collectUnexpandedParameterPacks() argument
392 CollectUnexpandedParameterPacksVisitor(Unexpanded).TraverseTypeLoc(TL); in collectUnexpandedParameterPacks()
479 PackExpansionTypeLoc TL = TLB.push<PackExpansionTypeLoc>(Result); in CheckPackExpansion() local
[all …]
/external/ltp/testcases/open_posix_testsuite/functional/threads/pi_test/
DREADME55 rt-nptl supports priority inheritance, if task TL with priority P(TL)
57 a waiter, P(TB)>P(TL), TL will boost to TB's priority until it
75 A sampling thread will sample the progress of working threads (TL, TPs
77 Progress of TL and TP is measured by how many times they execute a
82 second column indicates the progress of TL thread at that time. The
87 If the priority of TL is higher than (or equal to) the priority of TP,
89 it will not be scheduled to execute). Otherwise, TP and TL will both
91 TL by the progress of TP.
103 progress of TL and TP. ('gnuplot has to be installed in the system').
109 when TL is created; at this time TP's slope should go down a wee bit
[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 …]
DASTReader.cpp5737 void TypeLocReader::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { in VisitQualifiedTypeLoc() argument
5740 void TypeLocReader::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) { in VisitBuiltinTypeLoc() argument
5741 TL.setBuiltinLoc(ReadSourceLocation(Record, Idx)); in VisitBuiltinTypeLoc()
5742 if (TL.needsExtraLocalData()) { in VisitBuiltinTypeLoc()
5743 TL.setWrittenTypeSpec(static_cast<DeclSpec::TST>(Record[Idx++])); in VisitBuiltinTypeLoc()
5744 TL.setWrittenSignSpec(static_cast<DeclSpec::TSS>(Record[Idx++])); in VisitBuiltinTypeLoc()
5745 TL.setWrittenWidthSpec(static_cast<DeclSpec::TSW>(Record[Idx++])); in VisitBuiltinTypeLoc()
5746 TL.setModeAttr(Record[Idx++]); in VisitBuiltinTypeLoc()
5749 void TypeLocReader::VisitComplexTypeLoc(ComplexTypeLoc TL) { in VisitComplexTypeLoc() argument
5750 TL.setNameLoc(ReadSourceLocation(Record, Idx)); in VisitComplexTypeLoc()
[all …]
/external/ImageMagick/coders/
Dwmf.c635 XC(rop_draw->TL.x), YC(rop_draw->TL.y), in ipa_rop_draw()
864 XC(ddata->bbox.TL.x),YC(ddata->bbox.TL.y), in ipa_device_begin()
912 XC(ddata->bbox.TL.x),YC(ddata->bbox.TL.y), in ipa_device_begin()
1025 TL, in util_draw_arc() local
1043 center.x = (draw_arc->TL.x + draw_arc->BR.x) / 2; in util_draw_arc()
1044 center.y = (draw_arc->TL.y + draw_arc->BR.y) / 2; in util_draw_arc()
1057 TL = draw_arc->TL; in util_draw_arc()
1068 Rx = (BR.x - TL.x) / 2; in util_draw_arc()
1069 Ry = (BR.y - TL.y) / 2; in util_draw_arc()
1107 DrawArc(WmfDrawingWand, XC(draw_arc->TL.x), YC(draw_arc->TL.y), in util_draw_arc()
[all …]
/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()
/external/clang/tools/libclang/
DCIndex.cpp523 for (ASTUnit::top_level_iterator TL = CXXUnit->top_level_begin(), in VisitChildren() local
525 TL != TLEnd; ++TL) { in VisitChildren()
526 const Optional<bool> V = handleDeclForVisitation(*TL); in VisitChildren()
719 TypeLoc TL = SpecType->getTypeLoc(); in VisitClassTemplateSpecializationDecl() local
721 TL.getAs<TemplateSpecializationTypeLoc>()) { in VisitClassTemplateSpecializationDecl()
801 TypeLoc TL = TSInfo->getTypeLoc().IgnoreParens(); in VisitFunctionDecl() local
802 FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>(); in VisitFunctionDecl()
808 (!FTL && Visit(TL))) in VisitFunctionDecl()
1460 bool CursorVisitor::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { in VisitQualifiedTypeLoc() argument
1461 return Visit(TL.getUnqualifiedLoc()); in VisitQualifiedTypeLoc()
[all …]
/external/icu/icu4c/source/data/region/
Des_US.txt13 TL{"TL"}
Dfr_CA.txt29 TL{"Timor-Leste"}
38 TL{"Timor oriental"}
/external/llvm/lib/Analysis/
DDependenceAnalysis.cpp1463 APInt TL(APInt::getSignedMinValue(Bits)); in exactSIVtest() local
1468 TL = maxAPInt(TL, ceilingOfQuotient(-X, TMUL)); in exactSIVtest()
1469 DEBUG(dbgs() << "\t TL = " << TL << "\n"); in exactSIVtest()
1479 TL = maxAPInt(TL, ceilingOfQuotient(UM - X, TMUL)); in exactSIVtest()
1480 DEBUG(dbgs() << "\t TL = " << TL << "\n"); in exactSIVtest()
1487 TL = maxAPInt(TL, ceilingOfQuotient(-Y, TMUL)); in exactSIVtest()
1488 DEBUG(dbgs() << "\t TL = " << TL << "\n"); in exactSIVtest()
1498 TL = maxAPInt(TL, ceilingOfQuotient(UM - Y, TMUL)); in exactSIVtest()
1499 DEBUG(dbgs() << "\t TL = " << TL << "\n"); in exactSIVtest()
1502 if (TL.sgt(TU)) { in exactSIVtest()
[all …]
/external/webp/src/dsp/
Dlossless_neon.c355 const uint8x16_t avgLTL = vhaddq_u8(L, TL); \
368 const uint8x16_t TL = LOADQ_U32P_AS_U8(&upper[i - 1]); in PredictorAdd10_NEON() local
384 const uint8x16_t pLTL = vabdq_u8(L, TL); /* |L - TL| */ \
399 const uint8x16_t TL = LOADQ_U32P_AS_U8(&upper[i - 1]); in PredictorAdd11_NEON() local
400 const uint8x16_t pTTL = vabdq_u8(T, TL); // |T - TL| in PredictorAdd11_NEON()
434 const uint8x16_t TL = LOADQ_U32P_AS_U8(&upper[i - 1]); in PredictorAdd12_NEON() local
437 vreinterpretq_s16_u16(vsubl_u8(vget_low_u8(T), vget_low_u8(TL))); in PredictorAdd12_NEON()
439 vreinterpretq_s16_u16(vsubl_u8(vget_high_u8(T), vget_high_u8(TL))); in PredictorAdd12_NEON()
453 const uint8x16_t cmp = vcgtq_u8(TL, avg); \
454 const uint8x16_t TL_1 = vaddq_u8(TL, cmp); \
[all …]
Dlossless_sse2.c281 __m128i TL = _mm_loadu_si128((const __m128i*)&upper[i - 1]); local
288 Average2_m128i(&L, &TL, &avgLTL);
294 TL = _mm_srli_si128(TL, 4);
323 __m128i TL = _mm_loadu_si128((const __m128i*)&upper[i - 1]); in PredictorAdd11_SSE2() local
326 GetSumAbsDiff32(&T, &TL, &pa); // pa = sum |T-TL| in PredictorAdd11_SSE2()
329 const __m128i TL_lo = _mm_unpacklo_epi32(TL, L); in PredictorAdd11_SSE2()
339 TL = _mm_srli_si128(TL, 4); in PredictorAdd11_SSE2()
374 const __m128i TL = _mm_loadu_si128((const __m128i*)&upper[i - 1]); in PredictorAdd12_SSE2() local
375 const __m128i TL_lo = _mm_unpacklo_epi8(TL, zero); in PredictorAdd12_SSE2()
376 const __m128i TL_hi = _mm_unpackhi_epi8(TL, zero); in PredictorAdd12_SSE2()
Dlossless_enc_sse2.c561 const __m128i TL = _mm_loadu_si128((const __m128i*)&upper[i - 1]); in PredictorSub10_SSE2() local
566 Average2_m128i(&L, &TL, &avgLTL); in PredictorSub10_SSE2()
596 const __m128i TL = _mm_loadu_si128((const __m128i*)&upper[i - 1]); in PredictorSub11_SSE2() local
599 GetSumAbsDiff32(&T, &TL, &pa); // pa = sum |T-TL| in PredictorSub11_SSE2()
600 GetSumAbsDiff32(&L, &TL, &pb); // pb = sum |L-TL| in PredictorSub11_SSE2()
628 const __m128i TL = _mm_loadu_si128((const __m128i*)&upper[i - 1]); in PredictorSub12_SSE2() local
629 const __m128i TL_lo = _mm_unpacklo_epi8(TL, zero); in PredictorSub12_SSE2()
630 const __m128i TL_hi = _mm_unpackhi_epi8(TL, zero); in PredictorSub12_SSE2()
654 const __m128i TL = _mm_loadl_epi64((const __m128i*)&upper[i - 1]); in PredictorSub13_SSE2() local
657 const __m128i TL_lo = _mm_unpacklo_epi8(TL, zero); in PredictorSub13_SSE2()
/external/skia/samplecode/
DSamplePatch.cpp83 const int TL = 0; in eval_sheet() local
96 SkScalar x0 = UV * edge[TL].fX + uV * edge[TR].fX + Uv * edge[BL].fX + uv * edge[BR].fX; in eval_sheet()
97 SkScalar y0 = UV * edge[TL].fY + uV * edge[TR].fY + Uv * edge[BL].fY + uv * edge[BR].fY; in eval_sheet()
99 SkScalar x = (1 - v) * edge[TL+iu].fX + u * edge[TR+iv].fX + in eval_sheet()
101 SkScalar y = (1 - v) * edge[TL+iu].fY + u * edge[TR+iv].fY + in eval_sheet()

12345678910>>...22