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

References

tools/clang/tools/extra/unittests/clang-tidy/GoogleModuleTest.cpp
   85   EXPECT_TRUE(runCheckOnCode("using std::string;", "foo.h"));
   86   EXPECT_FALSE(runCheckOnCode("using std::string;", "foo.cpp"));
   87   EXPECT_FALSE(runCheckOnCode("namespace my_namespace {\n"
   91   EXPECT_FALSE(runCheckOnCode("SOME_MACRO(std::string);", "foo.h"));
   95   EXPECT_TRUE(runCheckOnCode("using namespace std;", "foo.h"));
   96   EXPECT_FALSE(runCheckOnCode("using namespace std;", "foo.cpp"));
   97   EXPECT_FALSE(runCheckOnCode("namespace my_namespace {\n"
  101   EXPECT_FALSE(runCheckOnCode("SOME_MACRO(namespace std);", "foo.h"));
  105   EXPECT_FALSE(runCheckOnCode("namespace {}", "foo.h"));