Lines Matching refs:allocator
29 LookAtTargetViewUpdater::Create(os::IAllocator* allocator) in Create() argument
31 NW_NULL_ASSERT(allocator); in Create()
33 void* updaterMemory = allocator->Alloc(sizeof(LookAtTargetViewUpdater)); in Create()
37 = AllocateAndFill<ResLookAtTargetViewUpdaterData>(allocator, 0); in Create()
49 return new(updaterMemory) LookAtTargetViewUpdater(allocator, true, resUpdater); in Create()
54 LookAtTargetViewUpdater::Create(os::IAllocator* allocator, ResLookAtTargetViewUpdater resUpdater) in Create() argument
56 NW_NULL_ASSERT(allocator); in Create()
58 void* updaterMemory = allocator->Alloc(sizeof(LookAtTargetViewUpdater)); in Create()
61 return new(updaterMemory) LookAtTargetViewUpdater(allocator, false, resUpdater); in Create()
66 os::IAllocator* allocator, in LookAtTargetViewUpdater() argument
69 : CameraViewUpdater(allocator, isDynamic), in LookAtTargetViewUpdater()