HomeSort by relevance Sort by last modified time
    Searched refs:TL (Results 1 - 25 of 67) 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...]
CIndex.cpp 522 for (ASTUnit::top_level_iterator TL = CXXUnit->top_level_begin(),
524 TL != TLEnd; ++TL) {
525 if (Visit(MakeCXCursor(*TL, TU, RegionOfInterest), true))
701 TypeLoc TL = SpecType->getTypeLoc();
703 TL.getAs<TemplateSpecializationTypeLoc>()) {
786 TypeLoc TL = TSInfo->getTypeLoc().IgnoreParens();
787 FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>();
793 (!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);
  /external/clang/lib/AST/
Comment.cpp 241 TypeLoc TL = TSI->getTypeLoc().getUnqualifiedLoc();
243 TL = TL.IgnoreParens();
245 if (QualifiedTypeLoc QualifiedTL = TL.getAs<QualifiedTypeLoc>()) {
246 TL = QualifiedTL.getUnqualifiedLoc();
250 if (PointerTypeLoc PointerTL = TL.getAs<PointerTypeLoc>()) {
251 TL = PointerTL.getPointeeLoc().getUnqualifiedLoc();
255 if (ReferenceTypeLoc ReferenceTL = TL.getAs<ReferenceTypeLoc>()) {
256 TL = ReferenceTL.getPointeeLoc().getUnqualifiedLoc();
260 if (AdjustedTypeLoc ATL = TL.getAs<AdjustedTypeLoc>())
    [all...]
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...]
ASTTypeTraits.cpp 75 else if (const TypeLoc *TL = get<TypeLoc>())
76 TL->getType().print(OS, PP);
101 if (const TypeLoc *TL = get<TypeLoc>())
102 return TL->getSourceRange();
  /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/
DataRecursiveASTVisitor.h 172 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); }
368 bool VisitTypeLoc(TypeLoc TL) { return true; }
372 bool WalkUpFromQualifiedTypeLoc(QualifiedTypeLoc TL) {
373 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
375 bool VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { return true; }
376 bool WalkUpFromUnqualTypeLoc(UnqualTypeLoc TL) {
377 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc())
    [all...]
RecursiveASTVisitor.h 176 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); }
370 bool VisitTypeLoc(TypeLoc TL) { return true; }
374 bool WalkUpFromQualifiedTypeLoc(QualifiedTypeLoc TL) {
375 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc());
377 bool VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { return true; }
378 bool WalkUpFromUnqualTypeLoc(UnqualTypeLoc TL) {
379 return getDerived().VisitUnqualTypeLoc(TL.getUnqualifiedLoc())
    [all...]
TypeLoc.h 56 TypeLoc& tl = t; local
57 tl = *this;
68 TypeLoc& tl = t; local
69 tl = *this;
193 static void initializeImpl(ASTContext &Context, TypeLoc TL,
195 static TypeLoc getNextTypeLocImpl(TypeLoc TL);
196 static TypeLoc IgnoreParensImpl(TypeLoc TL);
197 static SourceRange getLocalSourceRangeImpl(TypeLoc TL);
222 static bool isKind(const TypeLoc &TL) {
223 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 307 QualType TransformType(TypeLocBuilder &TLB, TypeLoc TL);
546 FunctionProtoTypeLoc TL,
554 TemplateSpecializationTypeLoc TL,
559 DependentTemplateSpecializationTypeLoc TL,
565 DependentTemplateSpecializationTypeLoc TL,
591 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 450 void TypeLocWriter::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
453 void TypeLocWriter::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
454 Writer.AddSourceLocation(TL.getBuiltinLoc(), Record);
455 if (TL.needsExtraLocalData()) {
456 Record.push_back(TL.getWrittenTypeSpec());
457 Record.push_back(TL.getWrittenSignSpec());
458 Record.push_back(TL.getWrittenWidthSpec());
459 Record.push_back(TL.hasModeAttr());
462 void TypeLocWriter::VisitComplexTypeLoc(ComplexTypeLoc TL) {
463 Writer.AddSourceLocation(TL.getNameLoc(), Record)
    [all...]
ASTReader.cpp     [all...]
  /external/llvm/lib/Analysis/
DependenceAnalysis.cpp     [all...]
  /external/chromium_org/third_party/skia/samplecode/
SamplePatch.cpp 82 const int TL = 0;
95 SkScalar x0 = SkScalarMul(UV, edge[TL].fX) + SkScalarMul(uV, edge[TR].fX) +
97 SkScalar y0 = SkScalarMul(UV, edge[TL].fY) + SkScalarMul(uV, edge[TR].fY) +
100 SkScalar x = SkScalarMul(SK_Scalar1 - v, edge[TL+iu].fX) +
104 SkScalar y = SkScalarMul(SK_Scalar1 - v, edge[TL+iu].fY) +
  /external/skia/samplecode/
SamplePatch.cpp 82 const int TL = 0;
95 SkScalar x0 = SkScalarMul(UV, edge[TL].fX) + SkScalarMul(uV, edge[TR].fX) +
97 SkScalar y0 = SkScalarMul(UV, edge[TL].fY) + SkScalarMul(uV, edge[TR].fY) +
100 SkScalar x = SkScalarMul(SK_Scalar1 - v, edge[TL+iu].fX) +
104 SkScalar y = SkScalarMul(SK_Scalar1 - v, edge[TL+iu].fY) +
  /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,

Completed in 584 milliseconds

1 2 3