/external/clang/tools/libclang/ |
D | IndexTypeSourceInfo.cpp | 30 bool VisitTypedefTypeLoc(TypedefTypeLoc TL) { in VisitTypedefTypeLoc() argument 31 IndexCtx.handleReference(TL.getTypedefNameDecl(), TL.getNameLoc(), in VisitTypedefTypeLoc() 41 bool VisitTagTypeLoc(TagTypeLoc TL) { in VisitTagTypeLoc() argument 42 TagDecl *D = TL.getDecl(); in VisitTagTypeLoc() 46 if (TL.isDefinition()) { in VisitTagTypeLoc() 51 if (D->getLocation() == TL.getNameLoc()) in VisitTagTypeLoc() 54 IndexCtx.handleReference(D, TL.getNameLoc(), in VisitTagTypeLoc() 59 bool VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) { in VisitObjCInterfaceTypeLoc() argument 60 IndexCtx.handleReference(TL.getIFaceDecl(), TL.getNameLoc(), in VisitObjCInterfaceTypeLoc() 65 bool VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) { in VisitObjCObjectTypeLoc() argument [all …]
|
D | CIndex.cpp | 526 for (ASTUnit::top_level_iterator TL = CXXUnit->top_level_begin(), in VisitChildren() local 528 TL != TLEnd; ++TL) { in VisitChildren() 529 if (Visit(MakeCXCursor(*TL, TU, RegionOfInterest), true)) in VisitChildren() 712 TypeLoc TL = SpecType->getTypeLoc(); in VisitClassTemplateSpecializationDecl() local 714 TL.getAs<TemplateSpecializationTypeLoc>()) { in VisitClassTemplateSpecializationDecl() 797 TypeLoc TL = TSInfo->getTypeLoc().IgnoreParens(); in VisitFunctionDecl() local 798 FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>(); in VisitFunctionDecl() 804 (!FTL && Visit(TL))) in VisitFunctionDecl() 1450 bool CursorVisitor::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { in VisitQualifiedTypeLoc() argument 1451 return Visit(TL.getUnqualifiedLoc()); in VisitQualifiedTypeLoc() [all …]
|
D | CursorVisitor.h | 258 bool VisitTagTypeLoc(TagTypeLoc TL); 259 bool VisitArrayTypeLoc(ArrayTypeLoc TL); 260 bool VisitFunctionTypeLoc(FunctionTypeLoc TL, bool SkipResultType = false);
|
/external/clang/lib/AST/ |
D | Comment.cpp | 238 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 …]
|
D | TypeLoc.cpp | 40 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 …]
|
D | ASTTypeTraits.cpp | 122 else if (const TypeLoc *TL = get<TypeLoc>()) in print() local 123 TL->getType().print(OS, PP); in print() 148 if (const TypeLoc *TL = get<TypeLoc>()) in getSourceRange() local 149 return TL->getSourceRange(); in getSourceRange()
|
D | NestedNameSpecifier.cpp | 415 TypeLoc TL(Qualifier->getAsType(), TypeData); in getLocalSourceRange() local 416 return SourceRange(TL.getBeginLoc(), in getLocalSourceRange() 537 TypeLoc TL, in Extend() argument 541 TL.getTypePtr()); in Extend() 544 SavePointer(TL.getOpaqueData(), Buffer, BufferSize, BufferCapacity); in Extend()
|
/external/clang/lib/ARCMigrate/ |
D | TransGCAttrs.cpp | 41 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 …]
|
D | TransAutoreleasePool.cpp | 267 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/ |
D | RecursiveASTVisitor.h | 178 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); } 415 bool VisitTypeLoc(TypeLoc TL) { return true; } 419 bool WalkUpFromQualifiedTypeLoc(QualifiedTypeLoc TL) { 420 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc()); 422 bool VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { return true; } 423 bool WalkUpFromUnqualTypeLoc(UnqualTypeLoc TL) { 424 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc()); 426 bool VisitUnqualTypeLoc(UnqualTypeLoc TL) { return true; } [all …]
|
D | TypeLoc.h | 207 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/ |
D | TreeTransform.h | 308 QualType TransformType(TypeLocBuilder &TLB, TypeLoc TL); 573 FunctionProtoTypeLoc TL, 587 TemplateSpecializationTypeLoc TL, 592 DependentTemplateSpecializationTypeLoc TL, 597 TypeLocBuilder &TLB, DependentTemplateSpecializationTypeLoc TL, 623 QualType TransformReferenceType(TypeLocBuilder &TLB, ReferenceTypeLoc TL); 3043 TypeLoc TransformTypeInObjectScope(TypeLoc TL, 3053 TypeSourceInfo *TransformTSIInObjectScope(TypeLoc TL, QualType ObjectType, 3382 TypeLoc TL = TransformTypeInObjectScope(Q.getTypeLoc(), ObjectType, in TransformNestedNameSpecifierLoc() local 3385 if (!TL) in TransformNestedNameSpecifierLoc() [all …]
|
D | SemaType.cpp | 4491 static void fillAttributedTypeLoc(AttributedTypeLoc TL, in fillAttributedTypeLoc() argument 4498 AttributeList::Kind parsedKind = getAttrListKind(TL.getAttrKind()); in fillAttributedTypeLoc() 4513 TL.setAttrNameLoc(attrs->getLoc()); in fillAttributedTypeLoc() 4514 if (TL.hasAttrExprOperand()) { in fillAttributedTypeLoc() 4516 TL.setAttrExprOperand(attrs->getArgAsExpr(0)); in fillAttributedTypeLoc() 4517 } else if (TL.hasAttrEnumOperand()) { in fillAttributedTypeLoc() 4521 TL.setAttrEnumOperandLoc(attrs->getArgAsIdent(0)->Loc); in fillAttributedTypeLoc() 4523 TL.setAttrEnumOperandLoc(attrs->getArgAsExpr(0)->getExprLoc()); in fillAttributedTypeLoc() 4527 if (TL.hasAttrOperand()) in fillAttributedTypeLoc() 4528 TL.setAttrOperandParensRange(SourceRange()); in fillAttributedTypeLoc() [all …]
|
D | SemaTemplateInstantiate.cpp | 792 FunctionProtoTypeLoc TL) { in TransformFunctionProtoType() argument 794 return inherited::TransformFunctionProtoType(TLB, TL); in TransformFunctionProtoType() 799 FunctionProtoTypeLoc TL, 812 TemplateTypeParmTypeLoc TL); 818 SubstTemplateTypeParmPackTypeLoc TL); 1306 FunctionProtoTypeLoc TL, in TransformFunctionProtoType() argument 1313 TLB, TL, ThisContext, ThisTypeQuals, TransformExceptionSpec); in TransformFunctionProtoType() 1327 TemplateTypeParmTypeLoc TL) { in TransformTemplateTypeParmType() argument 1328 const TemplateTypeParmType *T = TL.getTypePtr(); in TransformTemplateTypeParmType() 1339 = TLB.push<TemplateTypeParmTypeLoc>(TL.getType()); in TransformTemplateTypeParmType() [all …]
|
D | SemaTemplateVariadic.cpp | 53 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/clang/lib/Serialization/ |
D | ASTWriter.cpp | 470 void TypeLocWriter::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { in VisitQualifiedTypeLoc() argument 473 void TypeLocWriter::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) { in VisitBuiltinTypeLoc() argument 474 Writer.AddSourceLocation(TL.getBuiltinLoc(), Record); in VisitBuiltinTypeLoc() 475 if (TL.needsExtraLocalData()) { in VisitBuiltinTypeLoc() 476 Record.push_back(TL.getWrittenTypeSpec()); in VisitBuiltinTypeLoc() 477 Record.push_back(TL.getWrittenSignSpec()); in VisitBuiltinTypeLoc() 478 Record.push_back(TL.getWrittenWidthSpec()); in VisitBuiltinTypeLoc() 479 Record.push_back(TL.hasModeAttr()); in VisitBuiltinTypeLoc() 482 void TypeLocWriter::VisitComplexTypeLoc(ComplexTypeLoc TL) { in VisitComplexTypeLoc() argument 483 Writer.AddSourceLocation(TL.getNameLoc(), Record); in VisitComplexTypeLoc() [all …]
|
D | ASTReader.cpp | 5695 void TypeLocReader::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { in VisitQualifiedTypeLoc() argument 5698 void TypeLocReader::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) { in VisitBuiltinTypeLoc() argument 5699 TL.setBuiltinLoc(ReadSourceLocation(Record, Idx)); in VisitBuiltinTypeLoc() 5700 if (TL.needsExtraLocalData()) { in VisitBuiltinTypeLoc() 5701 TL.setWrittenTypeSpec(static_cast<DeclSpec::TST>(Record[Idx++])); in VisitBuiltinTypeLoc() 5702 TL.setWrittenSignSpec(static_cast<DeclSpec::TSS>(Record[Idx++])); in VisitBuiltinTypeLoc() 5703 TL.setWrittenWidthSpec(static_cast<DeclSpec::TSW>(Record[Idx++])); in VisitBuiltinTypeLoc() 5704 TL.setModeAttr(Record[Idx++]); in VisitBuiltinTypeLoc() 5707 void TypeLocReader::VisitComplexTypeLoc(ComplexTypeLoc TL) { in VisitComplexTypeLoc() argument 5708 TL.setNameLoc(ReadSourceLocation(Record, Idx)); in VisitComplexTypeLoc() [all …]
|
/external/ImageMagick/coders/ |
D | wmf.c | 635 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/ |
D | dng_image.cpp | 300 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/llvm/lib/Analysis/ |
D | DependenceAnalysis.cpp | 1489 APInt TL(APInt::getSignedMinValue(Bits)); in exactSIVtest() local 1494 TL = maxAPInt(TL, ceilingOfQuotient(-X, TMUL)); in exactSIVtest() 1495 DEBUG(dbgs() << "\t TL = " << TL << "\n"); in exactSIVtest() 1505 TL = maxAPInt(TL, ceilingOfQuotient(UM - X, TMUL)); in exactSIVtest() 1506 DEBUG(dbgs() << "\t TL = " << TL << "\n"); in exactSIVtest() 1513 TL = maxAPInt(TL, ceilingOfQuotient(-Y, TMUL)); in exactSIVtest() 1514 DEBUG(dbgs() << "\t TL = " << TL << "\n"); in exactSIVtest() 1524 TL = maxAPInt(TL, ceilingOfQuotient(UM - Y, TMUL)); in exactSIVtest() 1525 DEBUG(dbgs() << "\t TL = " << TL << "\n"); in exactSIVtest() 1528 if (TL.sgt(TU)) { in exactSIVtest() [all …]
|
/external/skia/samplecode/ |
D | SamplePatch.cpp | 83 const int TL = 0; in eval_sheet() local 96 SkScalar x0 = SkScalarMul(UV, edge[TL].fX) + SkScalarMul(uV, edge[TR].fX) + in eval_sheet() 98 SkScalar y0 = SkScalarMul(UV, edge[TL].fY) + SkScalarMul(uV, edge[TR].fY) + in eval_sheet() 101 SkScalar x = SkScalarMul(SK_Scalar1 - v, edge[TL+iu].fX) + in eval_sheet() 105 SkScalar y = SkScalarMul(SK_Scalar1 - v, edge[TL+iu].fY) + in eval_sheet()
|
/external/icu/icu4c/source/data/region/ |
D | he.txt | 270 TL{"טימור לסטה"} 311 TL{"מזרח טימור"}
|
D | km.txt | 269 TL{"ទីម័រ"} 311 TL{"ទីម័រខាងកើត"}
|
D | ja.txt | 270 TL{"東ティモール"} 312 TL{"東チモール"}
|
D | te.txt | 270 TL{"టిమోర్-లెస్టె"} 311 TL{"తూర్పు తైమూర్"}
|