Searched refs:ExpressionValue (Results 1 – 2 of 2) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/lib/FileCheck/ |
| H A D | FileCheckImpl.h | 34 class ExpressionValue; variable 121 class ExpressionValue { 159 Expected<ExpressionValue> operator+(const ExpressionValue &Lhs, 161 Expected<ExpressionValue> operator-(const ExpressionValue &Lhs, 163 Expected<ExpressionValue> operator*(const ExpressionValue &Lhs, 165 Expected<ExpressionValue> operator/(const ExpressionValue &Lhs, 167 Expected<ExpressionValue> max(const ExpressionValue &Lhs, 169 Expected<ExpressionValue> min(const ExpressionValue &Lhs, 202 ExpressionValue Value; 269 Optional<ExpressionValue> Value; [all …]
|
| H A D | FileCheck.cpp | 127 Expected<ExpressionValue> 188 ExpressionValue ExpressionValue::getAbsolute() const { in getAbsolute() 204 Expected<ExpressionValue> llvm::operator+(const ExpressionValue &LeftOperand, in operator +() 232 return ExpressionValue(*Result); in operator +() 235 Expected<ExpressionValue> llvm::operator-(const ExpressionValue &LeftOperand, in operator -() 285 Expected<ExpressionValue> llvm::operator*(const ExpressionValue &LeftOperand, in operator *() 314 return ExpressionValue(*Result); in operator *() 317 Expected<ExpressionValue> llvm::operator/(const ExpressionValue &LeftOperand, in operator /() 329 return ExpressionValue(0) - in operator /() 337 Expected<ExpressionValue> llvm::max(const ExpressionValue &LeftOperand, in max() [all …]
|