Searched defs:newMovePtr (Results 1 – 1 of 1) sorted by relevance
174 inline MovePtr<T> newMovePtr (void) { return MovePtr<T>(new T()); } in newMovePtr() function176 inline MovePtr<T> newMovePtr (P0 p0) { return MovePtr<T>(new T(p0)); } in newMovePtr() function178 inline MovePtr<T> newMovePtr (P0 p0, P1 p1) { return MovePtr<T>(new T(p0, p1)); } in newMovePtr() function180 inline MovePtr<T> newMovePtr (P0 p0, P1 p1, P2 p2) { return MovePtr<T>(new T(p0, p1, p2)); } in newMovePtr() function