HomeSort by: relevance | last modified time | path
    Searched refs:FloatingLiteral (Results 1 - 25 of 32) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
IdenticalExprChecker.cpp 227 const FloatingLiteral *FloatLit1 = dyn_cast<FloatingLiteral>(LHS);
228 const FloatingLiteral *FloatLit2 = dyn_cast<FloatingLiteral>(RHS);
477 const FloatingLiteral *FloatLit1 = cast<FloatingLiteral>(Stmt1);
478 const FloatingLiteral *FloatLit2 = cast<FloatingLiteral>(Stmt2);
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h 1761 std::is_base_of<FloatingLiteral, T>::value ||
1780 inline bool ValueEqualsMatcher<FloatingLiteral, double>::matchesNode(
1781 const FloatingLiteral &Node) const {
1789 inline bool ValueEqualsMatcher<FloatingLiteral, float>::matchesNode(
1790 const FloatingLiteral &Node) const {
1798 inline bool ValueEqualsMatcher<FloatingLiteral, llvm::APFloat>::matchesNode(
1799 const FloatingLiteral &Node) const {
ASTMatchers.h 2375 extern const internal::VariadicDynCastAllOfMatcher<Stmt, FloatingLiteral>
5378 /// Matcher<FloatingLiteral>, Matcher<IntegerLiteral>
5409 FloatingLiteral,
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
JSONNodeDumper.h 305 void VisitFloatingLiteral(const FloatingLiteral *FL);
TextNodeDumper.h 256 void VisitFloatingLiteral(const FloatingLiteral *Node);
Expr.h 1433 /// Used by IntegerLiteral/FloatingLiteral to store the numeric without
1438 /// to allocate IntegerLiteral/FloatingLiteral nodes the memory associated with
1629 class FloatingLiteral : public Expr, private APFloatStorage {
1632 FloatingLiteral(const ASTContext &C, const llvm::APFloat &V, bool isexact,
1636 explicit FloatingLiteral(const ASTContext &C, EmptyShell Empty);
1639 static FloatingLiteral *Create(const ASTContext &C, const llvm::APFloat &V,
1641 static FloatingLiteral *Create(const ASTContext &C, EmptyShell Empty);
1704 /// like "1.0i". We represent these as a wrapper around FloatingLiteral and
RecursiveASTVisitor.h 2784 DEF_TRAVERSE_STMT(FloatingLiteral, {})
Stmt.h 385 friend class FloatingLiteral;
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
RetainCountDiagnostics.cpp 78 isa<FloatingLiteral>(E) ||
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CloneDetection.cpp 217 SKIP(FloatingLiteral)
  /src/external/apache2/llvm/dist/clang/lib/AST/
StmtPrinter.cpp 1158 static void PrintFloatingLiteral(raw_ostream &OS, FloatingLiteral *Node,
1181 void StmtPrinter::VisitFloatingLiteral(FloatingLiteral *Node) {
1863 auto *Float = cast<FloatingLiteral>(Node->getCookedLiteral());
ASTStructuralEquivalence.cpp 232 bool IsStmtEquivalent(const FloatingLiteral *E1, const FloatingLiteral *E2) {
ItaniumMangle.cpp 4858 const FloatingLiteral *FL = cast<FloatingLiteral>(E);
4907 if (const FloatingLiteral *Imag =
4908 dyn_cast<FloatingLiteral>(IE->getSubExpr())) {
JSONNodeDumper.cpp 1421 void JSONNodeDumper::VisitFloatingLiteral(const FloatingLiteral *FL) {
StmtProfile.cpp 1216 void StmtProfiler::VisitFloatingLiteral(const FloatingLiteral *S) {
ASTImporter.cpp 590 ExpectedStmt VisitFloatingLiteral(FloatingLiteral *E);
6745 ExpectedStmt ASTNodeImporter::VisitFloatingLiteral(FloatingLiteral *E) {
6754 return FloatingLiteral::Create(
ExprConstant.cpp 13563 bool VisitFloatingLiteral(const FloatingLiteral *E);
13745 bool FloatExprEvaluator::VisitFloatingLiteral(const FloatingLiteral *E) {
15371 if (const FloatingLiteral *FL
15372 = dyn_cast<FloatingLiteral>(SubExpr->IgnoreParenImpCasts())) {
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprAgg.cpp 1500 if (const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(E))
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 909 const internal::VariadicDynCastAllOfMatcher<Stmt, FloatingLiteral> floatLiteral;
  /src/external/apache2/llvm/dist/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 773 if (!isa<IntegerLiteral>(literalE) && !isa<FloatingLiteral>(literalE))
  /src/external/apache2/llvm/dist/clang/lib/Tooling/ASTDiff/
ASTDiff.cpp 459 if (auto *F = dyn_cast<FloatingLiteral>(S)) {
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/
BuildTree.cpp 1137 bool WalkUpFromFloatingLiteral(FloatingLiteral *S) {
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp 637 void ASTStmtReader::VisitFloatingLiteral(FloatingLiteral *E) {
2830 S = FloatingLiteral::Create(Context, Empty);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 10622 if (FloatingLiteral* FLL = dyn_cast<FloatingLiteral>(LeftExprSansParen)) {
10626 if (FloatingLiteral* FLR = dyn_cast<FloatingLiteral>(RightExprSansParen))
11831 isa<FloatingLiteral>(E) || isa<FloatingLiteral>(InnerE);
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp 2457 isa<FloatingLiteral>(Ex)) {

Completed in 108 milliseconds

1 2