Home
last modified time | relevance | path

Searched refs:non_empty (Results 1 – 10 of 10) sorted by relevance

/third_party/grpc/include/grpc/support/
Dsync.h183 gpr_cv non_empty; /* Signalled when length becomes non-zero. */
197 gpr_cv_init(&q->non_empty);
206 gpr_cv_destroy(&q->non_empty);
225 gpr_cv_broadcast(&q->non_empty);
239 gpr_cv_broadcast(&q->non_empty);
262 !gpr_cv_wait(&q->non_empty, &q->mu, abs_deadline)) {
/third_party/boost/boost/multi_index/detail/
Dis_index_list.hpp30 BOOST_STATIC_CONSTANT(bool,non_empty=!mpl::empty<T>::value);
31 BOOST_STATIC_CONSTANT(bool,value=mpl_sequence&&non_empty);
/third_party/boost/libs/type_traits/test/
Dis_empty_test.cpp42 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_empty<non_empty>::value, false);
43 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_empty<const non_empty&>::value, false);
Dtest.hpp372 struct non_empty : private boost::noncopyable struct
/third_party/grpc/test/core/gpr/
Dsync_test.cc41 gpr_cv non_empty; /* Signalled when length becomes non-zero. */ member
55 gpr_cv_init(&q->non_empty); in queue_init()
64 gpr_cv_destroy(&q->non_empty); in queue_destroy()
84 gpr_cv_broadcast(&q->non_empty); in queue_append()
98 gpr_cv_broadcast(&q->non_empty); in queue_try_append()
120 while (q->length == 0 && !gpr_cv_wait(&q->non_empty, &q->mu, abs_deadline)) { in queue_remove()
/third_party/boost/boost/icl/detail/
Dexclusive_less_than.hpp23 return icl::non_empty::exclusive_less(left, right); in operator ()()
/third_party/glib/gio/
Dgcontenttype.c955 guint non_empty : 1; member
1051 matchlet->non_empty = 1; in parse_match_line()
1413 if (result && matchlet->non_empty) in matchlet_match()
/third_party/googletest/googletest/test/
Dgoogletest-printers-test.cc1018 deque<int> non_empty; local
1019 non_empty.push_back(1);
1020 non_empty.push_back(3);
1021 EXPECT_EQ("{ 1, 3 }", Print(non_empty));
/third_party/boost/boost/icl/concept/
Dinterval.hpp790 namespace non_empty namespace
842 return icl::is_empty(sub) || non_empty::contains(super, sub); in contains()
/third_party/python/Lib/test/
Dtest_dataclasses.py636 for typ, empty, non_empty in [(list, [], [1]),
656 y: typ = non_empty