Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmtVisitor.h93 case UO_Plus: DISPATCH(UnaryPlus, UnaryOperator); in Visit()
/llvm-project-15.0.7/flang/lib/Parser/
H A Dexpr-parsers.cpp97 construct<Expr>(construct<Expr::UnaryPlus>("+" >> primary))),
169 construct<Expr>(construct<Expr::UnaryPlus>("+" >> addOperand)) || in Parse()
H A Dunparse.cpp849 void Before(const Expr::UnaryPlus &) { Put("+"); } in Before() argument
/llvm-project-15.0.7/flang/include/flang/Semantics/
H A Dexpression.h277 MaybeExpr Analyze(const parser::Expr::UnaryPlus &);
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Ddump-parse-tree.h297 NODE(Expr, UnaryPlus) in NODE()
H A Dparse-tree.h1644 struct UnaryPlus : public IntrinsicUnary { struct
1736 UnaryPlus, Negate, NOT, PercentLoc, DefinedUnary, Power, Multiply, Divide,
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dexpression.cpp2713 MaybeExpr ExpressionAnalyzer::Analyze(const parser::Expr::UnaryPlus &x) { in Analyze()