Home
last modified time | relevance | path

Searched refs:tryEmplace (Results 1 – 5 of 5) sorted by relevance

/dports/devel/folly/folly-2021.12.27.00/folly/test/
H A DTryTest.cpp212 TEST(Try, tryEmplace) { in TEST() argument
214 A* a = tryEmplace(t, 10); in TEST()
237 EXPECT_EQ(nullptr, tryEmplace(t, true)); in TEST()
244 EXPECT_EQ(nullptr, tryEmplace(t)); in TEST()
251 EXPECT_NE(nullptr, tryEmplace(t, false)); in TEST()
253 EXPECT_EQ(nullptr, tryEmplace(t, true)); in TEST()
276 tryEmplace(t); in TEST()
/dports/security/keybase/client-v5.7.1/shared/ios/Pods/Folly/folly/
H A DTry.h620 T* tryEmplace(Try<T>& t, Args&&... args) noexcept;
625 inline void tryEmplace(Try<void>& t) noexcept;
H A DTry-inl.h249 T* tryEmplace(Try<T>& t, Args&&... args) noexcept { in tryEmplace() function
261 void tryEmplace(Try<void>& t) noexcept { in tryEmplace() function
/dports/devel/folly/folly-2021.12.27.00/folly/
H A DTry.h661 T* tryEmplace(Try<T>& t, Args&&... args) noexcept;
666 inline void tryEmplace(Try<void>& t) noexcept;
H A DTry-inl.h292 T* tryEmplace(Try<T>& t, Args&&... args) noexcept { in tryEmplace() function
301 void tryEmplace(Try<void>& t) noexcept { in tryEmplace() function