Home
last modified time | relevance | path

Searched refs:not_empty (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython2/Lib/
DQueue.py36 self.not_empty = _threading.Condition(self.mutex)
138 self.not_empty.notify()
161 self.not_empty.acquire()
168 self.not_empty.wait()
177 self.not_empty.wait(remaining)
182 self.not_empty.release()
/external/python/cpython2/Lib/multiprocessing/dummy/
Dconnection.py81 self._in.not_empty.acquire()
82 self._in.not_empty.wait(timeout)
83 self._in.not_empty.release()
/external/rust/crates/regex/tests/
Dset.rs64 let not_empty = regex_set!(&["ab", "b"]); in len_and_empty() localVariable
65 assert_eq!(not_empty.len(), 2); in len_and_empty()
66 assert!(!not_empty.is_empty()); in len_and_empty()
/external/python/cpython3/Lib/
Dqueue.py46 self.not_empty = threading.Condition(self.mutex)
152 self.not_empty.notify()
165 with self.not_empty:
171 self.not_empty.wait()
180 self.not_empty.wait(remaining)
/external/python/cpython3/Lib/multiprocessing/dummy/
Dconnection.py64 with self._in.not_empty:
65 self._in.not_empty.wait(timeout)
/external/python/cpython3/Lib/test/
Dtest_bdb.py432 not_empty = ''
434 not_empty += 'All paired tuples have not been processed, '
435 not_empty += ('the last one was number %d' %
442 if not_empty:
443 err_msg += '\n' + not_empty
452 if not_empty:
454 print(not_empty)
456 self.test_case.fail(not_empty)
/external/llvm-project/clang/test/CXX/drs/
Ddr19xx.cpp87 int not_empty; member
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dmodernize-use-nodiscard.cpp161 static bool not_empty();
/external/python/cpython2/Lib/multiprocessing/
Dpool.py743 inqueue.not_empty.acquire()
747 inqueue.not_empty.notify_all()
749 inqueue.not_empty.release()
/external/rust/crates/rayon/src/
Dstr.rs742 fn not_empty(s: &&str) -> bool { in not_empty() function
755 .filter(not_empty) in drive_unindexed()
/external/tensorflow/tensorflow/python/kernel_tests/linalg/sparse/
Dcsr_sparse_matrix_ops_test.py1035 not_empty = sparsify(np.random.randn(*dense_shape)).astype(np.float32)
1038 sparse_not_empty = dense_to_csr_sparse_matrix(not_empty)