HomeSort by relevance Sort by last modified time
    Searched refs:TL (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/clang/tools/libclang/
IndexTypeSourceInfo.cpp 30 bool VisitTypedefTypeLoc(TypedefTypeLoc TL) {
31 IndexCtx.handleReference(TL.getTypedefNameDecl(), TL.getNameLoc(),
41 bool VisitTagTypeLoc(TagTypeLoc TL) {
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) {
60 IndexCtx.handleReference(TL.getIFaceDecl(), TL.getNameLoc()
    [all...]
RecursiveASTVisitor.h 176 bool TraverseTypeLoc(TypeLoc TL);
344 bool Traverse##CLASS##TypeLoc(CLASS##TypeLoc TL);
349 bool WalkUpFromTypeLoc(TypeLoc TL) { return getDerived().VisitTypeLoc(TL); }
350 bool VisitTypeLoc(TypeLoc TL) { return true; }
354 bool WalkUpFromQualifiedTypeLoc(QualifiedTypeLoc TL) {
355 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
357 bool VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { return true; }
358 bool WalkUpFromUnqualTypeLoc(UnqualTypeLoc TL) {
359 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc())
    [all...]
CIndex.cpp 503 for (ASTUnit::top_level_iterator TL = CXXUnit->top_level_begin(),
505 TL != TLEnd; ++TL) {
506 if (Visit(MakeCXCursor(*TL, TU, RegionOfInterest), true))
681 TypeLoc TL = SpecType->getTypeLoc();
683 TL.getAs<TemplateSpecializationTypeLoc>()) {
774 TypeLoc TL = TSInfo->getTypeLoc().IgnoreParens();
775 FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>();
781 (!FTL && Visit(TL)))
    [all...]
IndexBody.cpp 31 bool TraverseTypeLoc(TypeLoc TL) {
32 IndexCtx.indexTypeLoc(TL, Parent, ParentDC);
CursorVisitor.h 255 bool VisitTagTypeLoc(TagTypeLoc TL);
256 bool VisitArrayTypeLoc(ArrayTypeLoc TL);
257 bool VisitFunctionTypeLoc(FunctionTypeLoc TL, bool SkipResultType = false);
IndexingContext.cpp 162 TypeLoc TL;
164 TL = Base.getTypeSourceInfo()->getTypeLoc();
165 if (TL.isNull())
168 if (QualifiedTypeLoc QL = TL.getAs<QualifiedTypeLoc>())
169 TL = QL.getUnqualifiedLoc();
171 if (ElaboratedTypeLoc EL = TL.getAs<ElaboratedTypeLoc>())
173 if (DependentNameTypeLoc DL = TL.getAs<DependentNameTypeLoc>())
176 TL.getAs<DependentTemplateSpecializationTypeLoc>())
    [all...]
  /external/clang/lib/AST/
TypeLoc.cpp 38 SourceRange TypeLoc::getLocalSourceRangeImpl(TypeLoc TL) {
39 if (TL.isNull()) return SourceRange();
40 return TypeLocRanger().Visit(TL);
103 TypeLoc TypeLoc::getNextTypeLocImpl(TypeLoc TL) {
104 return NextLoc().Visit(TL);
110 void TypeLoc::initializeImpl(ASTContext &Context, TypeLoc TL,
113 switch (TL.getTypeLocClass()) {
117 CLASS##TypeLoc TLCasted = TL.castAs<CLASS##TypeLoc>(); \
119 TL = TLCasted.getNextTypeLoc(); \
120 if (!TL) return;
    [all...]
Comment.cpp 240 TypeLoc TL = TSI->getTypeLoc().getUnqualifiedLoc();
242 TL = TL.IgnoreParens();
244 if (QualifiedTypeLoc QualifiedTL = TL.getAs<QualifiedTypeLoc>()) {
245 TL = QualifiedTL.getUnqualifiedLoc();
249 if (PointerTypeLoc PointerTL = TL.getAs<PointerTypeLoc>()) {
250 TL = PointerTL.getPointeeLoc().getUnqualifiedLoc();
254 TL.getAs<BlockPointerTypeLoc>()) {
255 TL = BlockPointerTL.getPointeeLoc().getUnqualifiedLoc();
259 TL.getAs<MemberPointerTypeLoc>())
    [all...]
NestedNameSpecifier.cpp 378 TypeLoc TL(Qualifier->getAsType(), TypeData);
379 return SourceRange(TL.getBeginLoc(),
502 TypeLoc TL,
506 TL.getTypePtr());
509 SavePointer(TL.getOpaqueData(), Buffer, BufferSize, BufferCapacity);
  /external/clang/lib/ARCMigrate/
TransGCAttrs.cpp 41 bool VisitAttributedTypeLoc(AttributedTypeLoc TL) {
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 = Arr.getElementLoc()
    [all...]
TransAutoreleasePool.cpp 267 bool VisitTypedefTypeLoc(TypedefTypeLoc TL) {
268 return checkRef(TL.getBeginLoc(), TL.getTypedefNameDecl()->getLocation());
271 bool VisitTagTypeLoc(TagTypeLoc TL) {
272 return checkRef(TL.getBeginLoc(), TL.getDecl()->getLocation());
  /external/clang/include/clang/AST/
RecursiveASTVisitor.h 183 bool TraverseTypeLoc(TypeLoc TL);
357 bool Traverse##CLASS##TypeLoc(CLASS##TypeLoc TL);
362 bool WalkUpFromTypeLoc(TypeLoc TL) { return getDerived().VisitTypeLoc(TL); }
363 bool VisitTypeLoc(TypeLoc TL) { return true; }
367 bool WalkUpFromQualifiedTypeLoc(QualifiedTypeLoc TL) {
368 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
370 bool VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { return true; }
371 bool WalkUpFromUnqualTypeLoc(UnqualTypeLoc TL) {
372 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc())
    [all...]
TypeLoc.h 53 TypeLoc& tl = t; local
54 tl = *this;
65 TypeLoc& tl = t; local
66 tl = *this;
190 static void initializeImpl(ASTContext &Context, TypeLoc TL,
192 static TypeLoc getNextTypeLocImpl(TypeLoc TL);
193 static TypeLoc IgnoreParensImpl(TypeLoc TL);
194 static SourceRange getLocalSourceRangeImpl(TypeLoc TL);
219 static bool isKind(const TypeLoc &TL) {
220 return !TL.getType().hasLocalQualifiers()
    [all...]
  /frameworks/native/services/sensorservice/
traits.h 42 namespace TL {
63 }; // namespace TL
104 enum { isStdUnsignedInt = TL::IndexOf<UnsignedInts, T>::value >= 0 };
105 enum { isStdSignedInt = TL::IndexOf<SignedInts, T>::value >= 0 };
106 enum { isStdIntegral = TL::IndexOf<OtherInts, T>::value >= 0 || isStdUnsignedInt || isStdSignedInt };
107 enum { isStdFloat = TL::IndexOf<Floats, T>::value >= 0 };
  /external/clang/lib/Sema/
TreeTransform.h 304 QualType TransformType(TypeLocBuilder &TLB, TypeLoc TL);
543 FunctionProtoTypeLoc TL,
552 TemplateSpecializationTypeLoc TL,
557 DependentTemplateSpecializationTypeLoc TL,
563 DependentTemplateSpecializationTypeLoc TL,
589 QualType TransformReferenceType(TypeLocBuilder &TLB, ReferenceTypeLoc TL);
    [all...]
SemaType.cpp     [all...]
SemaTemplateInstantiate.cpp     [all...]
SemaTemplateVariadic.cpp 53 bool VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
54 if (TL.getTypePtr()->isParameterPack())
55 Unexpanded.push_back(std::make_pair(TL.getTypePtr(), TL.getNameLoc()));
132 bool TraverseTypeLoc(TypeLoc TL) {
133 if ((!TL.getType().isNull() &&
134 TL.getType()->containsUnexpandedParameterPack()) ||
136 return inherited::TraverseTypeLoc(TL);
381 void Sema::collectUnexpandedParameterPacks(TypeLoc TL,
383 CollectUnexpandedParameterPacksVisitor(Unexpanded).TraverseTypeLoc(TL);
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
unit_test_suite.hpp 122 #define BOOST_FIXTURE_TEST_CASE_TEMPLATE( test_name, type_name, TL, F ) \
138 BOOST_AUTO_TC_INVOKER( test_name ),TL >( \
149 #define BOOST_AUTO_TEST_CASE_TEMPLATE( test_name, type_name, TL ) \
150 BOOST_FIXTURE_TEST_CASE_TEMPLATE( test_name, type_name, TL, BOOST_AUTO_TEST_CASE_FIXTURE )
test_tools.hpp 72 // TL - tool level
76 #define BOOST_TEST_TOOL_IMPL( func, P, check_descr, TL, CT ) \
82 ::boost::test_tools::tt_detail::TL, \
88 #define BOOST_CHECK_IMPL( P, check_descr, TL, CT ) \
91 BOOST_TEST_TOOL_IMPL( check_impl, P, check_descr, TL, CT ), 0 );\
99 #define BOOST_CHECK_WITH_ARGS_IMPL( P, check_descr, TL, CT, ARGS ) \
102 BOOST_TEST_TOOL_IMPL( check_frwd, P, check_descr, TL, CT ) \
126 #define BOOST_CHECK_THROW_IMPL( S, E, P, prefix, TL ) \
130 BOOST_CHECK_IMPL( false, "exception " BOOST_STRINGIZE( E ) " is expected", TL, CHECK_MSG ); } \
133 BOOST_CHECK_IMPL( P, prefix BOOST_STRINGIZE( E ) " is caught", TL, CHECK_MSG );
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp 437 void TypeLocWriter::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
440 void TypeLocWriter::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
441 Writer.AddSourceLocation(TL.getBuiltinLoc(), Record);
442 if (TL.needsExtraLocalData()) {
443 Record.push_back(TL.getWrittenTypeSpec());
444 Record.push_back(TL.getWrittenSignSpec());
445 Record.push_back(TL.getWrittenWidthSpec());
446 Record.push_back(TL.hasModeAttr());
449 void TypeLocWriter::VisitComplexTypeLoc(ComplexTypeLoc TL) {
450 Writer.AddSourceLocation(TL.getNameLoc(), Record)
    [all...]
ASTReader.cpp     [all...]
  /external/llvm/lib/Analysis/
DependenceAnalysis.cpp     [all...]
  /libcore/luni/src/test/java/libcore/java/util/
EnumSetTest.java 105 HF, TA, W, RE, OS, IR, PT, AU, HG, TL, PB, BI, PO, AT, RN, FR, RA, AC, TH, PA, U, NP, PU,
  /frameworks/native/services/surfaceflinger/
DisplayDevice.cpp 422 Transform TL, TP, S;
437 TL.set(-src_x, -src_y);
443 mGlobalTransform = R * TP * S * TL;

Completed in 211 milliseconds

1 2 3