Searched refs:is_null (Results 1 – 10 of 10) sorted by relevance
157 static_assert(!fit::is_null(5), "");233 bool is_null() { in is_null() function239 EXPECT_FALSE(fit::is_null(ncf)); in is_null()242 EXPECT_TRUE(fit::is_null(nct)); in is_null()245 EXPECT_FALSE(fit::is_null(nf)); in is_null()248 EXPECT_TRUE(fit::is_null(nt)); in is_null()251 EXPECT_FALSE(fit::is_null(nif)); in is_null()254 EXPECT_TRUE(fit::is_null(nit)); in is_null()260 EXPECT_TRUE(fit::is_null(npt)); in is_null()263 EXPECT_FALSE(fit::is_null(nn)); in is_null()[all …]
21 EXPECT_TRUE(view->is_null()); in string_view_test()44 EXPECT_TRUE(view->is_null()); in vector_view_test()
44 constexpr inline bool is_null(const T& value) {237 return (lhs.has_value() != is_null(rhs)) && (!lhs.has_value() || *lhs == rhs);241 return (lhs.has_value() == is_null(rhs)) || (lhs.has_value() && *lhs != rhs);246 return (is_null(lhs) != rhs.has_value()) && (!rhs.has_value() || lhs == *rhs);250 return (is_null(lhs) == rhs.has_value()) || (rhs.has_value() && lhs != *rhs);
468 assert(!is_null(handler)); in then()525 assert(!is_null(handler)); in and_then()576 assert(!is_null(handler)); in or_else()636 assert(!is_null(handler)); in inspect()858 assert(!is_null(handler)); in make_promise()
248 if (is_null(target)) { in initialize_target()
24 bool is_null() const { return fidl_string_t::data == nullptr; } in is_null() function
25 bool is_null() const { return fidl_vector_t::data == nullptr; } in is_null() function
59 virtual bool is_null() const = 0;74 bool is_null() const final { return true; }98 bool is_null() const final { return false; }125 bool is_null() const final { return false; }235 return !holder_.target().is_null();
621 bool is_null; member622 bool operator==(decltype(nullptr)) const { return is_null; } in operator ==()
131 null closures and enter an "invalid" state. Using fit::is_null and
Completed in 159 milliseconds