Searched refs:AllowedOperand (Results 1 – 2 of 2) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/lib/FileCheck/ |
H A D | FileCheck.cpp | 556 StringRef &Expr, AllowedOperand AO, bool MaybeInvalidConstraint, in parseNumericOperand() 560 if (AO != AllowedOperand::Any) in parseNumericOperand() 566 if (AO == AllowedOperand::LineVar || AO == AllowedOperand::Any) { in parseNumericOperand() 573 if (AO != AllowedOperand::Any) in parseNumericOperand() 586 if (AO == AllowedOperand::LineVar) in parseNumericOperand() 597 if (!Expr.consumeInteger((AO == AllowedOperand::LegacyLiteral) ? 10 : 0, in parseNumericOperand() 602 if (AO == AllowedOperand::Any && !Expr.consumeInteger(0, SignedLiteralValue)) in parseNumericOperand() 627 Expr, AllowedOperand::Any, /*MaybeInvalidConstraint=*/false, LineNumber, in parseParenExpr() 678 AllowedOperand AO = in parseBinop() 679 IsLegacyLineExpr ? AllowedOperand::LegacyLiteral : AllowedOperand::Any; in parseBinop() [all …]
|
H A D | FileCheckImpl.h | 808 enum class AllowedOperand { LineVar, LegacyLiteral, Any }; enum 819 parseNumericOperand(StringRef &Expr, AllowedOperand AO, bool ConstraintParsed,
|