Home
last modified time | relevance | path

Searched refs:typedExpr (Results 1 – 25 of 75) sorted by relevance

123

/dports/devel/f18/f18-1688bef/lib/semantics/
H A Dtools.h180 const SomeExpr *Get(const parser::Expr &x) { return Get(x.typedExpr); } in Get()
181 const SomeExpr *Get(const parser::Variable &x) { return Get(x.typedExpr); } in Get()
H A Dexpression.h94 void Set(const parser::Expr &x) { Set(x.typedExpr); } in Set()
95 void Set(const parser::Variable &x) { Set(x.typedExpr); } in Set()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/flang/lib/Semantics/
H A Dtools.cpp336 CheckMissingAnalysis(!x.typedExpr, x); in Get()
337 return common::GetPtrFromOptional(x.typedExpr->v); in Get()
340 CheckMissingAnalysis(!x.typedExpr, x); in Get()
341 return common::GetPtrFromOptional(x.typedExpr->v); in Get()
344 CheckMissingAnalysis(!x.typedExpr, x); in Get()
345 return common::GetPtrFromOptional(x.typedExpr->v); in Get()
H A Dcheck-case.cpp75 auto *x{expr.typedExpr.get()}; in GetValue()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/flang/lib/Semantics/
H A Dtools.cpp360 CheckMissingAnalysis(!x.typedExpr, x); in Get()
361 return common::GetPtrFromOptional(x.typedExpr->v); in Get()
364 CheckMissingAnalysis(!x.typedExpr, x); in Get()
365 return common::GetPtrFromOptional(x.typedExpr->v); in Get()
368 CheckMissingAnalysis(!x.typedExpr, x); in Get()
369 return common::GetPtrFromOptional(x.typedExpr->v); in Get()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/flang/include/flang/Semantics/
H A Dexpression.h76 void Set(const parser::Expr &x) { Set(x.typedExpr); } in Set()
77 void Set(const parser::Variable &x) { Set(x.typedExpr); } in Set()
78 void Set(const parser::DataStmtConstant &x) { Set(x.typedExpr); } in Set()
/dports/devel/llvm12/llvm-project-12.0.1.src/flang/include/flang/Semantics/
H A Dexpression.h77 void Set(const parser::Expr &x) { Set(x.typedExpr); } in Set()
78 void Set(const parser::Variable &x) { Set(x.typedExpr); } in Set()
79 void Set(const parser::DataStmtConstant &x) { Set(x.typedExpr); } in Set()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/flang/include/flang/Semantics/
H A Dexpression.h77 void Set(const parser::Expr &x) { Set(x.typedExpr); } in Set()
78 void Set(const parser::Variable &x) { Set(x.typedExpr); } in Set()
79 void Set(const parser::DataStmtConstant &x) { Set(x.typedExpr); } in Set()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/flang/include/flang/Semantics/
H A Dexpression.h77 void Set(const parser::Expr &x) { Set(x.typedExpr); } in Set()
78 void Set(const parser::Variable &x) { Set(x.typedExpr); } in Set()
79 void Set(const parser::DataStmtConstant &x) { Set(x.typedExpr); } in Set()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/flang/lib/Semantics/
H A Dtools.cpp378 CheckMissingAnalysis(!x.typedExpr, x); in Get()
379 return common::GetPtrFromOptional(x.typedExpr->v); in Get()
382 CheckMissingAnalysis(!x.typedExpr, x); in Get()
383 return common::GetPtrFromOptional(x.typedExpr->v); in Get()
386 CheckMissingAnalysis(!x.typedExpr, x); in Get()
387 return common::GetPtrFromOptional(x.typedExpr->v); in Get()
/dports/devel/llvm12/llvm-project-12.0.1.src/flang/lib/Semantics/
H A Dtools.cpp378 CheckMissingAnalysis(!x.typedExpr, x); in Get()
379 return common::GetPtrFromOptional(x.typedExpr->v); in Get()
382 CheckMissingAnalysis(!x.typedExpr, x); in Get()
383 return common::GetPtrFromOptional(x.typedExpr->v); in Get()
386 CheckMissingAnalysis(!x.typedExpr, x); in Get()
387 return common::GetPtrFromOptional(x.typedExpr->v); in Get()
H A Dcheck-case.cpp76 auto *x{expr.typedExpr.get()}; in GetValue()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/flang/include/flang/Parser/
H A Dtools.h123 struct HasTypedExpr<A, decltype(static_cast<void>(A::typedExpr), 0)>
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/flang/include/flang/Parser/
H A Dtools.h123 struct HasTypedExpr<A, decltype(static_cast<void>(A::typedExpr), 0)>
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/flang/include/flang/Parser/
H A Dtools.h123 struct HasTypedExpr<A, decltype(static_cast<void>(A::typedExpr), 0)>
/dports/devel/llvm13/llvm-project-13.0.1.src/flang/include/flang/Parser/
H A Dtools.h123 struct HasTypedExpr<A, decltype(static_cast<void>(A::typedExpr), 0)>
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/flang/lib/Evaluate/
H A Dfold-implementation.h322 auto *typedExpr{UnwrapExpr<Expr<T>>(*expr)}; in ApplyComponent()
323 CHECK(typedExpr); in ApplyComponent()
324 array = std::make_unique<ArrayConstructor<T>>(*typedExpr); in ApplyComponent()
579 [](const auto &typedExpr) -> std::optional<std::vector<A>> { in GetIntegerVector()
580 using T = ResultType<decltype(typedExpr)>; in GetIntegerVector()
581 if (const auto *constant{UnwrapConstantValue<T>(typedExpr)}) { in GetIntegerVector()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/flang/lib/Evaluate/
H A Dfold-implementation.h266 auto *typedExpr{UnwrapExpr<Expr<T>>(expr.value())}; in ApplyComponent()
267 CHECK(typedExpr); in ApplyComponent()
268 array = std::make_unique<ArrayConstructor<T>>(*typedExpr); in ApplyComponent()
520 [](const auto &typedExpr) -> std::optional<std::vector<A>> { in GetIntegerVector()
521 using T = ResultType<decltype(typedExpr)>; in GetIntegerVector()
522 if (const auto *constant{UnwrapConstantValue<T>(typedExpr)}) { in GetIntegerVector()
/dports/devel/llvm12/llvm-project-12.0.1.src/flang/lib/Evaluate/
H A Dfold-implementation.h266 auto *typedExpr{UnwrapExpr<Expr<T>>(expr.value())}; in ApplyComponent()
267 CHECK(typedExpr); in ApplyComponent()
268 array = std::make_unique<ArrayConstructor<T>>(*typedExpr); in ApplyComponent()
520 [](const auto &typedExpr) -> std::optional<std::vector<A>> { in GetIntegerVector()
521 using T = ResultType<decltype(typedExpr)>; in GetIntegerVector()
522 if (const auto *constant{UnwrapConstantValue<T>(typedExpr)}) { in GetIntegerVector()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/flang/lib/Evaluate/
H A Dfold-implementation.h266 auto *typedExpr{UnwrapExpr<Expr<T>>(expr.value())}; in ApplyComponent()
267 CHECK(typedExpr); in ApplyComponent()
268 array = std::make_unique<ArrayConstructor<T>>(*typedExpr); in ApplyComponent()
520 [](const auto &typedExpr) -> std::optional<std::vector<A>> { in GetIntegerVector()
521 using T = ResultType<decltype(typedExpr)>; in GetIntegerVector()
522 if (const auto *constant{UnwrapConstantValue<T>(typedExpr)}) { in GetIntegerVector()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/flang/lib/Evaluate/
H A Dfold-implementation.h266 auto *typedExpr{UnwrapExpr<Expr<T>>(expr.value())}; in ApplyComponent()
267 CHECK(typedExpr); in ApplyComponent()
268 array = std::make_unique<ArrayConstructor<T>>(*typedExpr); in ApplyComponent()
520 [](const auto &typedExpr) -> std::optional<std::vector<A>> { in GetIntegerVector()
521 using T = ResultType<decltype(typedExpr)>; in GetIntegerVector()
522 if (const auto *constant{UnwrapConstantValue<T>(typedExpr)}) { in GetIntegerVector()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/flang/lib/Evaluate/
H A Dfold-implementation.h340 auto *typedExpr{UnwrapExpr<Expr<T>>(expr.value())}; in ApplyComponent()
341 CHECK(typedExpr); in ApplyComponent()
342 array = std::make_unique<ArrayConstructor<T>>(*typedExpr); in ApplyComponent()
597 [](const auto &typedExpr) -> std::optional<std::vector<A>> { in GetIntegerVector()
598 using T = ResultType<decltype(typedExpr)>; in GetIntegerVector()
599 if (const auto *constant{UnwrapConstantValue<T>(typedExpr)}) { in GetIntegerVector()
/dports/devel/llvm13/llvm-project-13.0.1.src/flang/lib/Evaluate/
H A Dfold-implementation.h266 auto *typedExpr{UnwrapExpr<Expr<T>>(expr.value())}; in ApplyComponent()
267 CHECK(typedExpr); in ApplyComponent()
268 array = std::make_unique<ArrayConstructor<T>>(*typedExpr); in ApplyComponent()
520 [](const auto &typedExpr) -> std::optional<std::vector<A>> { in GetIntegerVector()
521 using T = ResultType<decltype(typedExpr)>; in GetIntegerVector()
522 if (const auto *constant{UnwrapConstantValue<T>(typedExpr)}) { in GetIntegerVector()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/flang/lib/Semantics/
H A Dcheck-case.cpp76 auto *x{expr.typedExpr.get()}; in GetValue()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/flang/lib/Semantics/
H A Dcheck-case.cpp76 auto *x{expr.typedExpr.get()}; in GetValue()

123