Searched refs:NEQV (Results 1 – 14 of 14) sorted by relevance
/external/llvm-project/flang/unittests/Evaluate/ |
D | logical.cpp | 30 TEST(!Value{false}.NEQV(Value{false}).IsTrue()); in testKind() 31 TEST(Value{false}.NEQV(Value{true}).IsTrue()); in testKind() 32 TEST(Value{true}.NEQV(Value{false}).IsTrue()); in testKind() 33 TEST(!Value{true}.NEQV(Value{true}).IsTrue()); in testKind()
|
/external/llvm-project/flang/test/Evaluate/ |
D | folding01.f90 | 28 logical, parameter :: test_neqv1 = .true..NEQV..false. 29 logical, parameter :: test_neqv2 = .false..NEQV..true. 30 logical, parameter :: test_neqv3 = .NOT.(.false..NEQV..false.) 31 logical, parameter :: test_neqv4 = .NOT.(.true..NEQV..true.)
|
/external/llvm-project/flang/include/flang/Evaluate/ |
D | logical.h | 82 constexpr Logical EQV(const Logical &that) const { return NEQV(that).NOT(); } in EQV() 84 constexpr Logical NEQV(const Logical &that) const { in NEQV() function
|
/external/llvm-project/flang/lib/Parser/ |
D | Fortran-parsers.cpp | 73 ".NEQV." >> pure(DefinedOperator::IntrinsicOperator::NEQV) || 75 ".XOR." >> pure(DefinedOperator::IntrinsicOperator::NEQV)) || 81 ".X." >> pure(DefinedOperator::IntrinsicOperator::NEQV)))};
|
D | preprocessor.cpp | 743 NEQV, in ExpressionValue() enumerator 785 opNameMap[".neqv."] = opNameMap[".xor."] = opNameMap[".x."] = NEQV; in ExpressionValue() 1016 case NEQV: in ExpressionValue()
|
D | expr-parsers.cpp | 354 return Expr{Expr::NEQV(std::move(result).value(), std::move(right))}; in Parse()
|
D | unparse.cpp | 850 void Unparse(const Expr::NEQV &x) { Walk(x.t, ".NEQV."); } in Unparse()
|
/external/llvm-project/flang/include/flang/Semantics/ |
D | expression.h | 289 MaybeExpr Analyze(const parser::Expr::NEQV &);
|
/external/llvm-project/flang/lib/Semantics/ |
D | resolve-names-utils.cpp | 187 case IntrinsicOperator::NEQV: in MapIntrinsicOperator()
|
D | expression.cpp | 2534 MaybeExpr ExpressionAnalyzer::Analyze(const parser::Expr::NEQV &x) { in Analyze()
|
/external/llvm-project/flang/docs/ |
D | OpenMP-4.5-grammar.md | 449 .AND. | .OR. | .EQV. | .NEQV. |
|
D | f2018-grammar.md | 399 R1021 equiv-op -> .EQV. | .NEQV.
|
/external/llvm-project/flang/include/flang/Parser/ |
D | parse-tree.h | 588 LT, LE, EQ, NE, GE, GT, NOT, AND, OR, EQV, NEQV) 1701 struct NEQV : public IntrinsicBinary { struct 1728 Add, Subtract, Concat, LT, LE, EQ, NE, GE, GT, AND, OR, EQV, NEQV,
|
D | dump-parse-tree.h | 309 NODE(Expr, NEQV) in NODE()
|