HomeSort by relevance Sort by last modified time
    Searched defs:TraceTrait (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/heap/
Visitor.h 159 // The TraceTrait is used to specify how to mark an object pointer and
165 // However, the TraceTrait can be specialized to use a different
166 // implementation. A common case where a TraceTrait specialization is
171 class TraceTrait {
173 // Default implementation of TraceTrait<T>::trace just statically
193 template<typename T> class TraceTrait<const T> : public TraceTrait<T> { };
217 // the argument to get the TraceTrait. By default, the mark method
218 // of the TraceTrait just calls the virtual two-argument mark method on this
226 TraceTrait<T>::checkGCInfo(this, t)
    [all...]
Handle.h 629 class TraceTrait<Member<T> > {
633 TraceTrait<T>::mark(visitor, *static_cast<Member<T>*>(self));
637 // TraceTrait to allow compilation of trace method bodies when oilpan is disabled.
640 class TraceTrait<RefPtr<T> > {
649 class TraceTrait<OwnPtr<T> > {
653 TraceTrait<T>::trace(visitor, ptr->get());
677 class TraceTrait<std::pair<T, U> > {
    [all...]

Completed in 434 milliseconds