Searched defs:is_empty (Results 1 - 25 of 36) sorted by relevance

12

/openjdk7/hotspot/src/share/vm/runtime/
H A DstackValueCollection.hpp42 bool is_empty() const { return (size() == 0); } function in class:StackValueCollection
/openjdk7/hotspot/src/os/solaris/fix_empty_sec_hdr_flags/
H A Dfix_empty_sec_hdr_flags.c115 int is_empty; /* is section empty? */ local
136 is_empty = ((Elf64_Shdr *) shdr)->sh_addr == 0 &&
140 is_empty = ((Elf32_Shdr *) shdr)->sh_addr == 0 &&
144 if (is_empty && has_flag_set) {
/openjdk7/jdk/make/tools/fix_empty_sec_hdr_flags/
H A Dfix_empty_sec_hdr_flags.c115 int is_empty; /* is section empty? */ local
136 is_empty = ((Elf64_Shdr *) shdr)->sh_addr == 0 &&
140 is_empty = ((Elf32_Shdr *) shdr)->sh_addr == 0 &&
144 if (is_empty && has_flag_set) {
/openjdk7/hotspot/src/share/vm/utilities/
H A Darray.hpp78 bool is_empty() const { return length() == 0; } function in class:ResourceArray
112 bool is_empty() const { return length() == 0; } function in class:CHeapArray
202 assert(!is_empty(), "stack is empty"); \
207 assert(!is_empty(), "stack is empty"); \
H A Dstack.hpp107 inline bool is_empty() const { return this->_cur_seg == NULL; } function in class:Stack
110 // Performance sensitive code should use is_empty() instead of size() == 0 and
115 return is_empty() ? 0 : this->_full_seg_size + this->_cur_seg_size;
194 bool is_empty() const { return _cur_seg == NULL; } function in class:StackIterator
H A DgrowableArray.hpp198 bool is_empty() const { return _len == 0; } function in class:GrowableArray
H A DbitMap.cpp430 bool BitMap::is_empty() const { function in class:BitMap
/openjdk7/hotspot/src/share/vm/code/
H A DicBuffer.hpp71 bool is_empty() const { return _ic_site == NULL; } function in class:ICStub
130 static bool is_empty();
H A DicBuffer.cpp64 if (!is_empty()) {
172 bool InlineCacheBuffer::is_empty() { function in class:InlineCacheBuffer
H A Dstubs.hpp195 bool is_empty() const { return _queue_begin == _queue_end; } function in class:StubQueue
H A DcodeCache.cpp76 bool is_empty() { return count == 0; } function in class:CodeBlob_sizes
931 if (!live.is_empty()) {
934 if (!dead.is_empty()) {
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DcollectionSetChooser.hpp142 bool is_empty() { return remaining_regions() == 0; } function in class:CollectionSetChooser
H A DheapRegionSet.hpp160 bool is_empty() { return _length == 0; } function in class:VALUE_OBJ_CLASS_SPEC
H A Dg1CollectedHeap.hpp111 bool is_empty() { return _length == 0; } function in class:YoungList
1273 if (!_secondary_free_list.is_empty()) {
H A DptrQueue.hpp106 bool is_empty() { function in class:VALUE_OBJ_CLASS_SPEC
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsPromotionLAB.hpp82 bool is_empty() const { return used() == 0; } function in class:PSPromotionLAB
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmutableSpace.hpp115 bool is_empty() const { return used_in_words() == 0; } function in class:MutableSpace
/openjdk7/hotspot/src/share/vm/memory/
H A DmemRegion.hpp81 return ((is_empty() && mr2.is_empty()) ||
88 bool is_empty() const { return word_size() == 0; } function in class:VALUE_OBJ_CLASS_SPEC
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_FpuStackSim_x86.cpp144 bool FpuStackSim::is_empty() { function in class:FpuStackSim
/openjdk7/hotspot/src/share/vm/services/
H A DmemPtrArray.hpp50 virtual bool is_empty() const = 0;
185 bool is_empty() const { function in class:MemPointerArrayImpl
H A DmemRecorder.hpp81 bool is_empty() const { return _size == 0; } function in class:FixedSizeMemPointerArray
H A DdiagnosticFramework.hpp53 bool is_empty() { return _cmd_len == 0; } function in class:CmdLine
54 bool is_executable() { return is_empty() || _cmd[0] != '#'; }
55 bool is_stop() { return !is_empty() && strncmp("stop", _cmd, _cmd_len) == 0; }
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethodData.hpp239 bool is_empty() { return _state == empty_state; } function in class:ciMethodData
/openjdk7/hotspot/src/share/vm/compiler/
H A DoopMap.hpp299 static bool is_empty() { return _list == NULL || _list->is_empty(); } function in class:DerivedPointerTable
/openjdk7/hotspot/src/share/vm/interpreter/
H A DoopMapCache.cpp181 bool InterpreterOopMap::is_empty() { function in class:InterpreterOopMap
536 if (!_array[i].is_empty() && _array[i].method()->is_old()) {
573 assert(!entry_for->is_empty(), "A non-empty oop map should be returned");
600 if (entry->is_empty()) {
603 assert(!entry_for->is_empty(), "A non-empty oop map should be returned");
635 assert(!entry_for->is_empty(), "A non-empty oop map should be returned");

Completed in 68 milliseconds

12