Home
last modified time | relevance | path

Searched refs:CollectSymbols (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/flang/lib/Semantics/
Dcheck-do-forall.cpp577 for (const Symbol &symbol : evaluate::CollectSymbols(*expr)) { in GatherSymbolsFromExpression()
741 SymbolSet symbols{evaluate::CollectSymbols(assignment.lhs)}; in CheckForallIndexesUsed()
749 auto boundSymbols{evaluate::CollectSymbols(bound)}; in CheckForallIndexesUsed()
752 symbols.merge(evaluate::CollectSymbols(bound)); in CheckForallIndexesUsed()
759 auto lbSymbols{evaluate::CollectSymbols(bounds.first)}; in CheckForallIndexesUsed()
761 auto ubSymbols{evaluate::CollectSymbols(bounds.second)}; in CheckForallIndexesUsed()
764 symbols.merge(evaluate::CollectSymbols(bounds.first)); in CheckForallIndexesUsed()
765 symbols.merge(evaluate::CollectSymbols(bounds.second)); in CheckForallIndexesUsed()
Dmod-file.cpp46 static void CollectSymbols(const Scope &, SymbolVector &, SymbolVector &);
96 for (const Symbol &symbol : evaluate::CollectSymbols(expr)) { in DoExpr()
183 CollectSymbols(scope, sorted, uses); in PutSymbols()
442 void CollectSymbols( in CollectSymbols() function
Dtools.cpp942 for (const Symbol &symbol : evaluate::CollectSymbols(*expr)) { in HasCoarray()
/external/llvm-project/flang/lib/Evaluate/
Dtools.cpp764 template <typename A> semantics::SymbolSet CollectSymbols(const A &x) { in CollectSymbols() function
767 template semantics::SymbolSet CollectSymbols(const Expr<SomeType> &);
768 template semantics::SymbolSet CollectSymbols(const Expr<SomeInteger> &);
769 template semantics::SymbolSet CollectSymbols(const Expr<SubscriptInteger> &);
954 for (const SymbolRef &ref : evaluate::CollectSymbols(*expr)) { in IsPureProcedure()
/external/llvm-project/flang/include/flang/Evaluate/
Dtools.h814 template <typename A> semantics::SymbolSet CollectSymbols(const A &);
815 extern template semantics::SymbolSet CollectSymbols(const Expr<SomeType> &);
816 extern template semantics::SymbolSet CollectSymbols(const Expr<SomeInteger> &);
817 extern template semantics::SymbolSet CollectSymbols(
/external/llvm-project/flang/lib/Lower/
DPFTBuilder.cpp1002 for (const auto &s : evaluate::CollectSymbols(*e)) in analyze()
1009 for (const auto &s : evaluate::CollectSymbols(e)) in analyze()
1027 for (const auto &s : evaluate::CollectSymbols(*e)) in analyze()
/external/llvm-project/clang-tools-extra/clangd/unittests/
DSymbolCollectorTests.cpp297 TEST_F(SymbolCollectorTest, CollectSymbols) { in TEST_F() argument