Searched refs:AllowedOperand (Results 1 – 4 of 4) sorted by relevance
/external/llvm-project/llvm/lib/FileCheck/ |
D | FileCheck.cpp | 537 StringRef &Expr, AllowedOperand AO, bool MaybeInvalidConstraint, in parseNumericOperand() 541 if (AO != AllowedOperand::Any) in parseNumericOperand() 547 if (AO == AllowedOperand::LineVar || AO == AllowedOperand::Any) { in parseNumericOperand() 554 if (AO != AllowedOperand::Any) in parseNumericOperand() 567 if (AO == AllowedOperand::LineVar) in parseNumericOperand() 578 if (!Expr.consumeInteger((AO == AllowedOperand::LegacyLiteral) ? 10 : 0, in parseNumericOperand() 583 if (AO == AllowedOperand::Any && !Expr.consumeInteger(0, SignedLiteralValue)) in parseNumericOperand() 608 Expr, AllowedOperand::Any, /*MaybeInvalidConstraint=*/false, LineNumber, in parseParenExpr() 659 AllowedOperand AO = in parseBinop() 660 IsLegacyLineExpr ? AllowedOperand::LegacyLiteral : AllowedOperand::Any; in parseBinop() [all …]
|
D | FileCheckImpl.h | 758 enum class AllowedOperand { LineVar, LegacyLiteral, Any }; enum 769 parseNumericOperand(StringRef &Expr, AllowedOperand AO, bool ConstraintParsed,
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | FileCheck.cpp | 183 StringRef &Expr, AllowedOperand AO, Optional<size_t> LineNumber, in parseNumericOperand() 185 if (AO == AllowedOperand::LineVar || AO == AllowedOperand::Any) { in parseNumericOperand() 193 if (AO == AllowedOperand::LineVar) in parseNumericOperand() 246 AllowedOperand AO = in parseBinop() 247 IsLegacyLineExpr ? AllowedOperand::Literal : AllowedOperand::Any; in parseBinop() 277 AllowedOperand AO = in parseNumericSubstitutionBlock() 278 IsLegacyLineExpr ? AllowedOperand::LineVar : AllowedOperand::Any; in parseNumericSubstitutionBlock()
|
D | FileCheckImpl.h | 539 enum class AllowedOperand { LineVar, Literal, Any }; enum 548 parseNumericOperand(StringRef &Expr, AllowedOperand AO,
|