Lines Matching refs:allocator
31 LookAtTargetViewUpdater::Create(os::IAllocator* allocator) in Create() argument
33 NW_NULL_ASSERT(allocator); in Create()
35 void* updaterMemory = allocator->Alloc(sizeof(LookAtTargetViewUpdater)); in Create()
39 = AllocateAndFill<ResLookAtTargetViewUpdaterData>(allocator, 0); in Create()
51 return new(updaterMemory) LookAtTargetViewUpdater(allocator, true, resUpdater); in Create()
56 LookAtTargetViewUpdater::Create(os::IAllocator* allocator, ResLookAtTargetViewUpdater resUpdater) in Create() argument
58 NW_NULL_ASSERT(allocator); in Create()
60 void* updaterMemory = allocator->Alloc(sizeof(LookAtTargetViewUpdater)); in Create()
63 return new(updaterMemory) LookAtTargetViewUpdater(allocator, false, resUpdater); in Create()
68 os::IAllocator* allocator, in LookAtTargetViewUpdater() argument
71 : CameraViewUpdater(allocator, isDynamic), in LookAtTargetViewUpdater()