Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/
H A Dpro-type-static-cast-downcast.cpp12 class MultiDerived : public Base, public Base2 { class
36 auto P2 = static_cast<Base*>(new MultiDerived()); // OK, upcast to a public base in pointers()
37 auto P3 = static_cast<Base2*>(new MultiDerived()); // OK, upcast to a public base in pointers()
H A Dpro-type-cstyle-cast.cpp35 class MultiDerived : public Base, public Base2 { class
59 auto P2 = (Base*)new MultiDerived(); // OK, upcast to a public base in pointers()
60 auto P3 = (Base2*)new MultiDerived(); // OK, upcast to a public base in pointers()
/llvm-project-15.0.7/clang/unittests/ASTMatchers/
H A DASTMatchersNarrowingTest.cpp4563 StringRef MultiDerived = R"cc( in TEST_P() local
4570 MultiDerived, in TEST_P()
4574 MultiDerived, in TEST_P()