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

References

tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp
  121       MATCHER_OVERLOAD_ENTRY(equals, 2),
tools/clang/tools/extra/clang-tidy/abseil/DurationFactoryScaleCheck.cpp
  129                   integerLiteral(equals(0)), floatLiteral(equals(0.0)),
tools/clang/tools/extra/clang-tidy/abseil/DurationRewriter.cpp
  162       anyOf(integerLiteral(equals(0)), floatLiteral(equals(0.0)));
tools/clang/unittests/AST/ASTImporterTest.cpp
  515           floatLiteral(equals(1.0), hasType(asString("double"))))));
  689                   hasDescendant(floatLiteral(equals(1.0))),
  693                   hasDescendant(floatLiteral(equals(2.0))),
  697                   hasDescendant(floatLiteral(equals(1.0))),
  731                       has(floatLiteral(equals(1.0))),
  737                       has(floatLiteral(equals(2.0))),
  738                       has(floatLiteral(equals(1.0)))))))));
tools/clang/unittests/ASTMatchers/ASTMatchersNodeTest.cpp
  741   EXPECT_TRUE(matches("double i = 5.0;", floatLiteral(equals(5.0))));
  747   EXPECT_TRUE(notMatches("double i = 5.0;", floatLiteral(equals(6.0))));
  784           has(floatLiteral(equals(1.0))),
  790           has(floatLiteral(equals(2.0))),
  791           has(floatLiteral(equals(1.0)))))
  802                                      equals(1.0))),
  809                                      equals(2.0))),
  816                                      equals(1.0))),