Lines Matching defs:Trace
23 * signature `void Trace(cppgc::Visitor*) const` that dispatchs all managed
32 * void Trace(cppgc::Visitor* visitor) const {
33 * // Dispatch using visitor->Trace(...);
40 * virtual void Trace(cppgc::Visitor*) const {}
45 * void Trace(cppgc::Visitor* visitor) const final {
46 * // Dispatch using visitor->Trace(...);
47 * NonFinalBase::Trace(visitor);
81 * of signature `void Trace(cppgc::Visitor*) const` that dispatchs all managed
87 * void Trace(cppgc::Visitor* visitor) const override {
88 * // Dispatch using visitor->Trace(...);
98 * This Trace method must be overriden by objects inheriting from
101 virtual void Trace(cppgc::Visitor*) const {}