Searched defs:newMovePtr (Results 1 - 1 of 1) sorted by relevance

/external/deqp/framework/delibs/decpp/
H A DdeUniquePtr.hpp174 inline MovePtr<T> newMovePtr (void) { return MovePtr<T>(new T()); } function in namespace:de::details
176 inline MovePtr<T> newMovePtr (P0 p0) { return MovePtr<T>(new T(p0)); } function in namespace:de::details
178 inline MovePtr<T> newMovePtr (P0 p0, P1 p1) { return MovePtr<T>(new T(p0, p1)); } function in namespace:de::details
180 inline MovePtr<T> newMovePtr (P0 p0, P1 p1, P2 p2) { return MovePtr<T>(new T(p0, p1, p2)); } function in namespace:de::details
247 using details::newMovePtr;

Completed in 92 milliseconds