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 154 // The TraceTrait is used to specify how to mark an object pointer and
160 // However, the TraceTrait can be specialized to use a different
161 // implementation. A common case where a TraceTrait specialization is
166 class TraceTrait {
168 // Default implementation of TraceTrait<T>::trace just statically
188 template<typename T> class TraceTrait<const T> : public TraceTrait<T> { };
223 // the argument to get the TraceTrait. By default, the mark method
224 // of the TraceTrait just calls the virtual two-argument mark method on this
232 TraceTrait<T>::checkGCInfo(this, t)
    [all...]
Handle.h 844 class TraceTrait<Member<T> > {
848 TraceTrait<T>::mark(visitor, *static_cast<Member<T>*>(self));
852 // TraceTrait to allow compilation of trace method bodies when oilpan is disabled.
855 class TraceTrait<RefPtr<T> > {
864 class TraceTrait<OwnPtr<T> > {
903 class TraceTrait<std::pair<T, U> > {
    [all...]

Completed in 51 milliseconds