Home
last modified time | relevance | path

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

123

/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDComment.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 …]
HDTypeLoc.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 …]
HDASTTypeTraits.cpp122 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()
HDNestedNameSpecifier.cpp415 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()
/NextBSD/contrib/llvm/tools/clang/lib/ARCMigrate/
HDTransGCAttrs.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 …]
HDTransAutoreleasePool.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()
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDDataRecursiveASTVisitor.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); } in WalkUpFromTypeLoc() argument
368 bool VisitTypeLoc(TypeLoc TL) { return true; } in VisitTypeLoc() argument
372 bool WalkUpFromQualifiedTypeLoc(QualifiedTypeLoc TL) { in WalkUpFromQualifiedTypeLoc() argument
373 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc()); in WalkUpFromQualifiedTypeLoc()
375 bool VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { return true; } in VisitQualifiedTypeLoc() argument
376 bool WalkUpFromUnqualTypeLoc(UnqualTypeLoc TL) { in WalkUpFromUnqualTypeLoc() argument
377 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc()); in WalkUpFromUnqualTypeLoc()
379 bool VisitUnqualTypeLoc(UnqualTypeLoc TL) { return true; } in VisitUnqualTypeLoc() argument
[all …]
HDRecursiveASTVisitor.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); } in WalkUpFromTypeLoc() argument
370 bool VisitTypeLoc(TypeLoc TL) { return true; } in VisitTypeLoc() argument
374 bool WalkUpFromQualifiedTypeLoc(QualifiedTypeLoc TL) { in WalkUpFromQualifiedTypeLoc() argument
375 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc()); in WalkUpFromQualifiedTypeLoc()
377 bool VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { return true; } in VisitQualifiedTypeLoc() argument
378 bool WalkUpFromUnqualTypeLoc(UnqualTypeLoc TL) { in WalkUpFromUnqualTypeLoc() argument
379 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc()); in WalkUpFromUnqualTypeLoc()
381 bool VisitUnqualTypeLoc(UnqualTypeLoc TL) { return true; } in VisitUnqualTypeLoc() argument
[all …]
HDTypeLoc.h200 static void initializeImpl(ASTContext &Context, TypeLoc TL,
202 static TypeLoc getNextTypeLocImpl(TypeLoc TL);
203 static TypeLoc IgnoreParensImpl(TypeLoc TL);
204 static SourceRange getLocalSourceRangeImpl(TypeLoc TL);
229 static bool isKind(const TypeLoc &TL) { in isKind() argument
230 return !TL.getType().hasLocalQualifiers(); in isKind()
284 static bool isKind(const TypeLoc &TL) { in isKind() argument
285 return TL.getType().hasLocalQualifiers(); in isKind()
331 static bool isKind(const TypeLoc &TL) { in isKind() argument
332 return !TL.getType().hasLocalQualifiers() && in isKind()
[all …]
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDTreeTransform.h307 QualType TransformType(TypeLocBuilder &TLB, TypeLoc TL);
568 FunctionProtoTypeLoc TL,
582 TemplateSpecializationTypeLoc TL,
587 DependentTemplateSpecializationTypeLoc TL,
592 TypeLocBuilder &TLB, DependentTemplateSpecializationTypeLoc TL,
618 QualType TransformReferenceType(TypeLocBuilder &TLB, ReferenceTypeLoc TL);
2885 TypeLoc TransformTypeInObjectScope(TypeLoc TL,
2895 TypeSourceInfo *TransformTSIInObjectScope(TypeLoc TL, QualType ObjectType,
3224 TypeLoc TL = TransformTypeInObjectScope(Q.getTypeLoc(), ObjectType, in TransformNestedNameSpecifierLoc() local
3227 if (!TL) in TransformNestedNameSpecifierLoc()
[all …]
HDSemaType.cpp4449 static void fillAttributedTypeLoc(AttributedTypeLoc TL, in fillAttributedTypeLoc() argument
4456 AttributeList::Kind parsedKind = getAttrListKind(TL.getAttrKind()); in fillAttributedTypeLoc()
4471 TL.setAttrNameLoc(attrs->getLoc()); in fillAttributedTypeLoc()
4472 if (TL.hasAttrExprOperand()) { in fillAttributedTypeLoc()
4474 TL.setAttrExprOperand(attrs->getArgAsExpr(0)); in fillAttributedTypeLoc()
4475 } else if (TL.hasAttrEnumOperand()) { in fillAttributedTypeLoc()
4479 TL.setAttrEnumOperandLoc(attrs->getArgAsIdent(0)->Loc); in fillAttributedTypeLoc()
4481 TL.setAttrEnumOperandLoc(attrs->getArgAsExpr(0)->getExprLoc()); in fillAttributedTypeLoc()
4485 if (TL.hasAttrOperand()) in fillAttributedTypeLoc()
4486 TL.setAttrOperandParensRange(SourceRange()); in fillAttributedTypeLoc()
[all …]
HDSemaTemplateInstantiate.cpp792 FunctionProtoTypeLoc TL) { in TransformFunctionProtoType() argument
794 return inherited::TransformFunctionProtoType(TLB, TL); in TransformFunctionProtoType()
799 FunctionProtoTypeLoc TL,
812 TemplateTypeParmTypeLoc TL);
818 SubstTemplateTypeParmPackTypeLoc TL);
1314 FunctionProtoTypeLoc TL, in TransformFunctionProtoType() argument
1321 TLB, TL, ThisContext, ThisTypeQuals, TransformExceptionSpec); in TransformFunctionProtoType()
1335 TemplateTypeParmTypeLoc TL) { in TransformTemplateTypeParmType() argument
1336 const TemplateTypeParmType *T = TL.getTypePtr(); in TransformTemplateTypeParmType()
1347 = TLB.push<TemplateTypeParmTypeLoc>(TL.getType()); in TransformTemplateTypeParmType()
[all …]
HDSemaTemplateVariadic.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 …]
/NextBSD/contrib/llvm/tools/clang/lib/Serialization/
HDASTWriter.cpp467 void TypeLocWriter::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { in VisitQualifiedTypeLoc() argument
470 void TypeLocWriter::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) { in VisitBuiltinTypeLoc() argument
471 Writer.AddSourceLocation(TL.getBuiltinLoc(), Record); in VisitBuiltinTypeLoc()
472 if (TL.needsExtraLocalData()) { in VisitBuiltinTypeLoc()
473 Record.push_back(TL.getWrittenTypeSpec()); in VisitBuiltinTypeLoc()
474 Record.push_back(TL.getWrittenSignSpec()); in VisitBuiltinTypeLoc()
475 Record.push_back(TL.getWrittenWidthSpec()); in VisitBuiltinTypeLoc()
476 Record.push_back(TL.hasModeAttr()); in VisitBuiltinTypeLoc()
479 void TypeLocWriter::VisitComplexTypeLoc(ComplexTypeLoc TL) { in VisitComplexTypeLoc() argument
480 Writer.AddSourceLocation(TL.getNameLoc(), Record); in VisitComplexTypeLoc()
[all …]
HDASTReader.cpp5461 void TypeLocReader::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { in VisitQualifiedTypeLoc() argument
5464 void TypeLocReader::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) { in VisitBuiltinTypeLoc() argument
5465 TL.setBuiltinLoc(ReadSourceLocation(Record, Idx)); in VisitBuiltinTypeLoc()
5466 if (TL.needsExtraLocalData()) { in VisitBuiltinTypeLoc()
5467 TL.setWrittenTypeSpec(static_cast<DeclSpec::TST>(Record[Idx++])); in VisitBuiltinTypeLoc()
5468 TL.setWrittenSignSpec(static_cast<DeclSpec::TSS>(Record[Idx++])); in VisitBuiltinTypeLoc()
5469 TL.setWrittenWidthSpec(static_cast<DeclSpec::TSW>(Record[Idx++])); in VisitBuiltinTypeLoc()
5470 TL.setModeAttr(Record[Idx++]); in VisitBuiltinTypeLoc()
5473 void TypeLocReader::VisitComplexTypeLoc(ComplexTypeLoc TL) { in VisitComplexTypeLoc() argument
5474 TL.setNameLoc(ReadSourceLocation(Record, Idx)); in VisitComplexTypeLoc()
[all …]
/NextBSD/sys/mips/conf/
HDTL-WDR43002 # TPLink TL-WDR4300 - AR9344 based dual-band 2x2 wifi
12 ident TL-WDR4300
15 hints "TL-WDR4300.hints"
HDTL-WR1043NDv22 # TP-Link TL-WR1043nd v2 - based on the AP135 reference design.
15 ident TL-WR1043NDv2
18 hints "TL-WR1043NDv2.hints"
HDTL-WR740Nv417 ident TL-WR740Nv4
20 hints "TL-WR740Nv4.hints"
HDTL-ARCHERC7V220 ident TL-ARCHERC7V2
23 hints "TL-ARCHERC7V2.hints"
/NextBSD/contrib/llvm/lib/Analysis/
HDDependenceAnalysis.cpp1490 APInt TL(APInt::getSignedMinValue(Bits)); in exactSIVtest() local
1495 TL = maxAPInt(TL, ceilingOfQuotient(-X, TMUL)); in exactSIVtest()
1496 DEBUG(dbgs() << "\t TL = " << TL << "\n"); in exactSIVtest()
1506 TL = maxAPInt(TL, ceilingOfQuotient(UM - X, TMUL)); in exactSIVtest()
1507 DEBUG(dbgs() << "\t TL = " << TL << "\n"); in exactSIVtest()
1514 TL = maxAPInt(TL, ceilingOfQuotient(-Y, TMUL)); in exactSIVtest()
1515 DEBUG(dbgs() << "\t TL = " << TL << "\n"); in exactSIVtest()
1525 TL = maxAPInt(TL, ceilingOfQuotient(UM - Y, TMUL)); in exactSIVtest()
1526 DEBUG(dbgs() << "\t TL = " << TL << "\n"); in exactSIVtest()
1529 if (TL.sgt(TU)) { in exactSIVtest()
[all …]
/NextBSD/sys/dev/pms/RefTisa/sat/src/
HDsmsat.c4803 bit8 TL[8]; in smsatRead10() local
4869 TL[0] = 0; in smsatRead10()
4870 TL[1] = 0; in smsatRead10()
4871 TL[2] = 0; in smsatRead10()
4872 TL[3] = 0; in smsatRead10()
4873 TL[4] = 0; in smsatRead10()
4874 TL[5] = 0; in smsatRead10()
4875 TL[6] = scsiCmnd->cdb[7]; in smsatRead10()
4876 TL[7] = scsiCmnd->cdb[8]; /* LSB */ in smsatRead10()
4904 AllChk = smsatCheckLimit(LBA, TL, agFALSE, pSatDevData); in smsatRead10()
[all …]
/NextBSD/sys/dev/pms/RefTisa/tisa/sassata/sata/host/
HDsat.c1214 bit8 TL[4]; in satRead10() local
1269 osti_memset(TL, 0, sizeof(TL)); in satRead10()
1277 TL[0] = 0; in satRead10()
1278 TL[1] = 0; in satRead10()
1279 TL[2] = scsiCmnd->cdb[7]; /* MSB */ in satRead10()
1280 TL[3] = scsiCmnd->cdb[8]; /* LSB */ in satRead10()
1282 rangeChk = satAddNComparebit32(LBA, TL); in satRead10()
1942 bit8 TL[4]; in satRead12() local
1995 osti_memset(TL, 0, sizeof(TL)); in satRead12()
2003 TL[0] = scsiCmnd->cdb[6]; /* MSB */ in satRead12()
[all …]
/NextBSD/tools/kerneldoc/subsys/
HDDoxyfile-dev_tl8 PROJECT_NAME = "FreeBSD kernel TL device code"
/NextBSD/share/monetdef/
HDtr_TR.ISO8859-9.src10 TL
/NextBSD/contrib/llvm/lib/CodeGen/
HDCallingConvLower.cpp240 const TargetLowering *TL = MF.getSubtarget().getTargetLowering(); in analyzeMustTailForwardedRegisters() local
241 const TargetRegisterClass *RC = TL->getRegClassFor(RegVT); in analyzeMustTailForwardedRegisters()

123