Searched refs:is_empty (Results 1 - 25 of 164) sorted by relevance

1234567

/openjdk10/hotspot/test/native/memory/
H A Dtest_metachunk.cpp64 EXPECT_TRUE(metachunk->is_empty());
78 EXPECT_FALSE(metachunk->is_empty());
88 EXPECT_TRUE(metachunk->is_empty());
/openjdk10/hotspot/src/share/vm/utilities/
H A DnativeCallStack.hpp68 inline bool is_empty() const { function in class:NativeCallStack
H A Dstack.hpp112 inline bool is_empty() const { return this->_cur_seg == NULL; } function in class:Stack
115 // Performance sensitive code should use is_empty() instead of size() == 0 and
120 return is_empty() ? 0 : this->_full_seg_size + this->_cur_seg_size;
197 bool is_empty() const { return _cur_seg == NULL; } function in class:StackIterator
H A Dstack.inline.hpp73 assert(!is_empty(), "popping from an empty stack");
164 const bool at_empty_transition = is_empty();
224 assert(at_empty_transition || is_empty() == (size() == 0), "mismatch");
227 if (is_empty()) {
264 assert(!is_empty(), "no items left");
/openjdk10/hotspot/test/native/utilities/
H A Dtest_linkedlist.cpp67 ASSERT_TRUE(ll.is_empty()) << "Start with empty list";
70 ASSERT_TRUE(!ll.is_empty()) << "Should not be empty";
99 ASSERT_TRUE(sl.is_empty()) << "Start with empty list";
106 ASSERT_TRUE(ll.is_empty()) << "No more entries";
/openjdk10/hotspot/src/share/vm/gc/shared/
H A DreferenceProcessor.inline.hpp45 bool DiscoveredList::is_empty() const { function in class:DiscoveredList
H A DpreservedMarks.cpp33 while (!_stack.is_empty()) {
51 assert(_stack.is_empty(), "stack expected to be empty, size = " SIZE_FORMAT,
/openjdk10/hotspot/src/share/vm/opto/
H A Dreplacednodes.cpp37 bool ReplacedNodes::is_empty() const { function in class:ReplacedNodes
67 if (other.is_empty()) {
96 if (is_empty()) {
126 if (is_empty()) {
192 if (!is_empty()) {
205 if (is_empty()) {
208 if (other.is_empty()) {
H A Dreplacednodes.hpp76 bool is_empty() const;
/openjdk10/hotspot/src/share/vm/gc/g1/
H A DheapRegionSet.cpp38 assert(!hr->is_free() || hr->is_empty(), "Free region %u is not empty for set %s", hr->hrm_index(), name());
39 assert(!hr->is_empty() || hr->is_free() || hr->is_archive(),
51 guarantee_heap_region_set(( is_empty() && length() == 0) ||
52 (!is_empty() && length() > 0),
122 if (from_list->is_empty()) {
138 if (is_empty()) {
187 assert_free_region_list(!is_empty(), "pre-condition");
H A Dg1CodeCacheRemSet.hpp75 bool is_empty() { function in class:VALUE_OBJ_CLASS_SPEC
H A Dg1StringDedupQueue.cpp105 while (!queue->is_empty()) {
143 while (!iter.is_empty()) {
164 while (!iter.is_empty()) {
H A DheapRegionRemSet.hpp150 bool is_empty() const;
193 bool is_empty() const { function in class:HeapRegionRemSet
194 return (strong_code_roots_list_length() == 0) && _other_regions.is_empty();
H A Dg1ConcurrentMarkBitMap.cpp61 assert(!intersection.is_empty(),
/openjdk10/hotspot/src/share/vm/memory/
H A DmemRegion.hpp89 return ((is_empty() && mr2.is_empty()) ||
96 bool is_empty() const { return word_size() == 0; } function in class:VALUE_OBJ_CLASS_SPEC
H A DmemRegion.cpp47 if (is_empty()) return mr2;
48 if (mr2.is_empty()) return MemRegion(start(), end());
/openjdk10/hotspot/src/cpu/x86/vm/
H A Dc1_FpuStackSim_x86.hpp62 bool is_empty();
/openjdk10/hotspot/src/share/vm/runtime/
H A DstackValueCollection.hpp42 bool is_empty() const { return (size() == 0); } function in class:StackValueCollection
/openjdk10/hotspot/src/share/vm/code/
H A DicBuffer.hpp72 bool is_empty() const { return _ic_site == NULL; } function in class:ICStub
134 static bool is_empty();
/openjdk10/hotspot/src/share/vm/logging/
H A DlogFileStreamOutput.cpp76 const bool use_decorations = !_decorators.is_empty();
92 const bool use_decorations = !_decorators.is_empty();
H A DlogDecorators.hpp106 bool is_empty() const { function in class:VALUE_OBJ_CLASS_SPEC
/openjdk10/hotspot/test/native/logging/
H A Dtest_logDecorators.cpp196 EXPECT_FALSE(dec.is_empty());
199 EXPECT_TRUE(dec.is_empty());
213 TEST(LogDecorators, is_empty) {
215 EXPECT_FALSE(def.is_empty());
216 EXPECT_TRUE(none.is_empty());
/openjdk10/hotspot/src/share/vm/gc/serial/
H A DmarkSweep.cpp163 while (!_marking_stack.is_empty()) {
169 if (!_objarray_stack.is_empty()) {
173 } while (!_marking_stack.is_empty() || !_objarray_stack.is_empty());
245 while (!iter.is_empty()) {
262 while (!_preserved_oop_stack.is_empty()) {
/openjdk10/hotspot/src/share/vm/prims/
H A DjvmtiTagMap.hpp80 bool is_empty();
/openjdk10/hotspot/test/native/gc/g1/
H A Dtest_g1CodeCacheRemSet.cpp44 ASSERT_TRUE(root_set.is_empty()) << "Code root set must be initially empty "

Completed in 135 milliseconds

1234567