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

1 2

  /external/clang/lib/AST/
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...]
MicrosoftMangle.cpp 318 TypeLoc TL = VD->getTypeSourceInfo()->getTypeLoc();
319 QualType Ty = TL.getType();
321 mangleType(Ty, TL.getSourceRange(), QMM_Drop);
331 mangleType(Ty, TL.getSourceRange(), QMM_Drop);
    [all...]
ASTContext.cpp     [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/
SemaCXXScopeSpec.cpp 606 SubstTemplateTypeParmTypeLoc TL
608 TL.setNameLoc(IdentifierLoc);
610 SubstTemplateTypeParmPackTypeLoc TL
612 TL.setNameLoc(IdentifierLoc);
    [all...]
SemaExceptionSpec.cpp 274 TypeLoc TL = TSInfo->getTypeLoc().IgnoreParens();
275 if (FunctionTypeLoc FTLoc = TL.getAs<FunctionTypeLoc>())
    [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...]
SemaTemplateInstantiate.cpp     [all...]
SemaStmt.cpp 266 PointerTypeLoc TL = TI->getTypeLoc().castAs<PointerTypeLoc>();
269 << FixItHint::CreateRemoval(TL.getStarLoc());
    [all...]
SemaTemplateInstantiateDecl.cpp     [all...]
SemaCodeComplete.cpp     [all...]
SemaDeclAttr.cpp     [all...]
SemaInit.cpp     [all...]
SemaTemplate.cpp     [all...]
SemaType.cpp     [all...]
SemaChecking.cpp     [all...]
  /frameworks/native/services/surfaceflinger/
DisplayDevice.cpp 422 Transform TL, TP, S;
437 TL.set(-src_x, -src_y);
443 mGlobalTransform = R * TP * S * TL;
  /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...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 571 TypeLoc TL = TSInfo->getTypeLoc();
572 R = SourceRange(TL.getBeginLoc(), TL.getEndLoc());
  /external/clang/tools/libclang/
CXCursor.cpp 913 TypeLoc TL = Type->getTypeLoc();
914 SourceLocation Loc = TL.getBeginLoc();
918 ElaboratedTypeLoc ElabTL = TL.castAs<ElaboratedTypeLoc>();
    [all...]
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...]
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...]
  /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,
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp     [all...]

Completed in 303 milliseconds

1 2