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

  /external/chromium_org/third_party/WebKit/Source/platform/
PODFreeListArena.h 48 T* allocateObject()
58 // PODArena::allocateObject calls T's constructor.
59 return static_cast<T*>(m_arena->allocateObject<T>());
62 template<class Argument1Type> T* allocateObject(const Argument1Type& argument1)
72 // PODArena::allocateObject calls T's constructor.
73 return static_cast<T*>(m_arena->allocateObject<T>(argument1));
PODArena.h 87 template<class T> T* allocateObject()
93 template<class T, class Argument1Type> T* allocateObject(const Argument1Type& argument1)

Completed in 60 milliseconds