Home
last modified time | relevance | path

Searched refs:GetApproxValue (Results 1 – 3 of 3) sorted by relevance

/external/clang/lib/AST/
DAPValue.cpp263 static double GetApproxValue(const llvm::APFloat &F) { in GetApproxValue() function
280 OS << "Float: " << GetApproxValue(getFloat()); in dump()
294 OS << "ComplexFloat: " << GetApproxValue(getComplexFloatReal()) in dump()
295 << ", " << GetApproxValue(getComplexFloatImag()); in dump()
356 Out << GetApproxValue(getFloat()); in printPretty()
373 Out << GetApproxValue(getComplexFloatReal()) << "+" in printPretty()
374 << GetApproxValue(getComplexFloatImag()) << "i"; in printPretty()
/external/llvm-project/clang/lib/AST/
DAPValue.cpp612 static double GetApproxValue(const llvm::APFloat &F) { in GetApproxValue() function
648 Out << GetApproxValue(getFloat()); in printPretty()
668 Out << GetApproxValue(getComplexFloatReal()) << "+" in printPretty()
669 << GetApproxValue(getComplexFloatImag()) << "i"; in printPretty()
DTextNodeDumper.cpp358 static double GetApproxValue(const llvm::APFloat &F) { in GetApproxValue() function
456 OS << GetApproxValue(Value.getFloat()); in Visit()
490 OS << GetApproxValue(Value.getComplexFloatReal()) << " + " in Visit()
491 << GetApproxValue(Value.getComplexFloatImag()) << 'i'; in Visit()