Home
last modified time | relevance | path

Searched refs:ExpressionStr (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/FileCheck/
H A DFileCheckImpl.h175 StringRef ExpressionStr;
178 ExpressionAST(StringRef ExpressionStr) : ExpressionStr(ExpressionStr) {} in ExpressionAST() argument
182 StringRef getExpressionStr() const { return ExpressionStr; } in getExpressionStr()
206 explicit ExpressionLiteral(StringRef ExpressionStr, T Val) in ExpressionLiteral() argument
207 : ExpressionAST(ExpressionStr), Value(Val) {} in ExpressionLiteral()
363 BinaryOperation(StringRef ExpressionStr, binop_eval_t EvalBinop, in BinaryOperation() argument
366 : ExpressionAST(ExpressionStr), EvalBinop(EvalBinop) { in BinaryOperation()
441 NumericSubstitution(FileCheckPatternContext *Context, StringRef ExpressionStr, in NumericSubstitution() argument
444 : Substitution(Context, ExpressionStr, InsertIdx), in NumericSubstitution()
529 Substitution *makeNumericSubstitution(StringRef ExpressionStr,
H A DFileCheck.cpp1529 StringRef ExpressionStr, std::unique_ptr<Expression> Expression, in makeNumericSubstitution() argument
1532 this, ExpressionStr, std::move(Expression), InsertIdx)); in makeNumericSubstitution()