reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
324 struct Derived : Base {
57 static inline bool doit(const From &Val) { 90 static inline bool doit(const From *Val) { 92 return isa_impl<To, From>::doit(*Val);unittests/Support/Casting.cpp
324 struct Derived : Base { 326 static bool classof(const Base *B) { return B->IsDerived; } 330 Base *B; 332 PTy(Base *B) : B(B) {} 334 Base *get() const { return B; } 343 typedef pointer_wrappers::Base *SimpleType; 349 typedef pointer_wrappers::Base *SimpleType; 361 pointer_wrappers::Base B;