Lines Matching defs:GetInstance
32 * class_name::GetInstance()->.
39 * `DelayedSingleton<MyClass>::GetInstance()`.
56 * `DelayedRefSingleton<MyClass>::GetInstance()`.
72 * `Singleton<MyClass>::GetInstance()`.
99 * every time `GetInstance()` is called, reducing overhead of the lock.
101 static std::shared_ptr<T> GetInstance();
105 * @note After this API is called successfully, 'GetInstance()' will create
123 std::shared_ptr<T> DelayedSingleton<T>::GetInstance()
164 static T& GetInstance();
178 T& DelayedRefSingleton<T>::GetInstance()
201 static T& GetInstance() { return instance_; }