reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

gen/tools/clang/include/clang/AST/StmtDataCollectors.inc
  116     addData(llvm::hash_value(S->getValue()));
tools/clang/include/clang/ASTMatchers/ASTMatchersInternal.h
 1524     return Node.getValue().convertToFloat() == ExpectedValue;
 1526     return Node.getValue().convertToDouble() == ExpectedValue;
 1533     return Node.getValue().convertToFloat() == ExpectedValue;
 1535     return Node.getValue().convertToDouble() == ExpectedValue;
 1541   return ExpectedValue.compare(Node.getValue()) == llvm::APFloat::cmpEqual;
tools/clang/lib/AST/ASTImporter.cpp
 6364       Importer.getToContext(), E->getValue(), E->isExact(),
tools/clang/lib/AST/Expr.cpp
  995   llvm::APFloat V = getValue();
tools/clang/lib/AST/ExprConstant.cpp
12567   Result = E->getValue();
14139         if (FL->getValue().convertToInteger(IgnoredVal,
tools/clang/lib/AST/ItaniumMangle.cpp
 4233     mangleFloat(FL->getValue());
 4275       mangleFloat(llvm::APFloat(Imag->getValue().getSemantics()));
 4277       mangleFloat(Imag->getValue());
tools/clang/lib/AST/JSONNodeDumper.cpp
 1403   FL->getValue().toString(Buffer);
tools/clang/lib/AST/StmtPrinter.cpp
 1164   Node->getValue().toString(Str);
tools/clang/lib/AST/StmtProfile.cpp
 1074   S->getValue().Profile(ID);
tools/clang/lib/CodeGen/CGExprAgg.cpp
 1369     return FL->getValue().isPosZero();
tools/clang/lib/CodeGen/CGExprScalar.cpp
  462     return llvm::ConstantFP::get(VMContext, E->getValue());
tools/clang/lib/Serialization/ASTWriterStmt.cpp
  542   Record.AddAPFloat(E->getValue());
tools/clang/lib/StaticAnalyzer/Checkers/IdenticalExprChecker.cpp
  239     if (FloatLit1->getValue().bitwiseIsEqual(FloatLit2->getValue())) {
  239     if (FloatLit1->getValue().bitwiseIsEqual(FloatLit2->getValue())) {
  477     return FloatLit1->getValue().bitwiseIsEqual(FloatLit2->getValue());
  477     return FloatLit1->getValue().bitwiseIsEqual(FloatLit2->getValue());
tools/clang/lib/Tooling/ASTDiff/ASTDiff.cpp
  460     F->getValue().toString(Str);
tools/clang/tools/extra/clang-tidy/bugprone/IncorrectRoundingsCheck.cpp
   24   const auto &literal = Node.getValue();
tools/clang/tools/extra/clang-tidy/misc/RedundantExpressionCheck.cpp
   97     return cast<FloatingLiteral>(Left)->getValue().bitwiseIsEqual(
   98         cast<FloatingLiteral>(Right)->getValue());
tools/clang/tools/extra/clang-tidy/modernize/UseDefaultMemberInitCheck.cpp
  122     llvm::APFloat Value = cast<FloatingLiteral>(E)->getValue();
  168     return cast<FloatingLiteral>(E1)->getValue().bitwiseIsEqual(
  169         cast<FloatingLiteral>(E2)->getValue());
tools/clang/tools/extra/clang-tidy/readability/ImplicitBoolConversionCheck.cpp
  162     llvm::APFloat FloatLitAbsValue = FloatLit->getValue();
tools/clang/tools/extra/clang-tidy/readability/MagicNumbersCheck.cpp
  136   const llvm::APFloat FloatValue = Literal->getValue();