Searched refs:non_empty (Results 1 – 10 of 10) sorted by relevance
/third_party/grpc/include/grpc/support/ |
D | sync.h | 183 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/ |
D | is_index_list.hpp | 30 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/ |
D | is_empty_test.cpp | 42 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_empty<non_empty>::value, false); 43 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_empty<const non_empty&>::value, false);
|
D | test.hpp | 372 struct non_empty : private boost::noncopyable struct
|
/third_party/grpc/test/core/gpr/ |
D | sync_test.cc | 41 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/ |
D | exclusive_less_than.hpp | 23 return icl::non_empty::exclusive_less(left, right); in operator ()()
|
/third_party/glib/gio/ |
D | gcontenttype.c | 955 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/ |
D | googletest-printers-test.cc | 1018 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/ |
D | interval.hpp | 790 namespace non_empty namespace 842 return icl::is_empty(sub) || non_empty::contains(super, sub); in contains()
|
/third_party/python/Lib/test/ |
D | test_dataclasses.py | 636 for typ, empty, non_empty in [(list, [], [1]), 656 y: typ = non_empty
|