HomeSort by: relevance | last modified time | path
    Searched refs:ATL (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
Comment.cpp 146 if (AdjustedTypeLoc ATL = TL.getAs<AdjustedTypeLoc>())
147 return ATL.getOriginalLoc();
TypeLoc.cpp 429 if (auto ATL = getAs<AttributedTypeLoc>()) {
430 const Attr *A = ATL.getAttr();
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransGCAttrs.cpp 243 if (AttributedTypeLoc ATL =
245 ATLs.push_back(std::make_pair(ATL, PD));
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
TypeLoc.h 2552 else if (auto ATL = Cur.getAs<AttributedTypeLoc>())
2553 Cur = ATL.getModifiedLoc();
2556 else if (auto ATL = Cur.getAs<AdjustedTypeLoc>())
2557 Cur = ATL.getOriginalLoc();
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaType.cpp 6197 static void fillAtomicQualLoc(AtomicTypeLoc ATL, const DeclaratorChunk &Chunk) {
6217 ATL.setKWLoc(Loc);
6218 ATL.setParensRange(SourceRange());
6278 if (AtomicTypeLoc ATL = CurrTL.getAs<AtomicTypeLoc>()) {
6279 fillAtomicQualLoc(ATL, D.getTypeObject(i));
6280 CurrTL = ATL.getValueLoc().getUnqualifiedLoc();
SemaInit.cpp 6990 AttributedTypeLoc ATL;
6992 (ATL = TL.getAsAdjusted<AttributedTypeLoc>());
6993 TL = ATL.getModifiedLoc()) {
6994 if (ATL.getAttrAs<LifetimeBoundAttr>())
SemaDecl.cpp 6462 AttributedTypeLoc ATL;
6464 (ATL = TL.getAsAdjusted<AttributedTypeLoc>());
6465 TL = ATL.getModifiedLoc()) {
6469 if (const auto *A = ATL.getAttrAs<LifetimeBoundAttr>()) {
SemaExpr.cpp 6003 if (ArrayTypeLoc ATL = TL.getAs<ArrayTypeLoc>())
6005 << ATL.getLocalSourceRange();

Completed in 99 milliseconds