Home | History | Annotate | Download | only in Analysis

Lines Matching defs:SmartPointer

23 class SmartPointer {
26 SmartPointer(void *x) : X(x) {}
27 ~SmartPointer() {
35 SmartPointer Deleter(mem);
46 SmartPointer Deleter(mem);
55 class Subclass : public SmartPointer {
57 Subclass(void *x) : SmartPointer(x) {}
72 class MultipleInheritance : public Subclass, public SmartPointer {
74 MultipleInheritance(void *a, void *b) : Subclass(a), SmartPointer(b) {}
112 SmartPointer P;