Home
last modified time | relevance | path

Searched refs:Father (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dvirtual-near-miss.cpp73 class Father { class
75 Father();
77 virtual Father *create(int i);
91 class Child : private Father, private Mother {
/llvm-project-15.0.7/clang/test/Analysis/
H A Dpointer-to-member.cpp297 struct Father : public Grandfather {}; struct
298 struct Son : public Father {};
305 int Grandfather::*gpf2 = static_cast<int Grandfather::*>(static_cast<int Father::*>(sf)); in test()
306 …::*gpf3 = static_cast<int Grandfather::*>(static_cast<int Son::*>(static_cast<int Father::*>(sf))); in test()