Searched defs:_valid (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A DvframeArray.hpp146 unsigned char _valid[RegisterMap::reg_count]; member in class:vframeArray
152 bool is_location_valid(int i) const { return _valid[i] != 0; }
153 void set_location_valid(int i, bool valid) { _valid[i] = valid; }
/openjdk7/hotspot/src/share/vm/adlc/
H A Ddfa.cpp55 const char *_valid; member in class:Production
65 const char *valid() const { return _valid; }
921 _valid = valid;
927 _valid = knownInvalid;
935 printf("%s", (_valid == NULL ? "NULL" : _valid ) );
981 p->_valid = knownValid;
983 if( p->_valid != knownValid ) {
984 p->_valid = unknownValid;
1000 if( p->_valid
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiTagMap.cpp1777 bool _valid; member in class:VALUE_OBJ_CLASS_SPEC
1779 HeapWalkContext(bool valid) { _valid = valid; }
1780 void invalidate() { _valid = false; }
1781 bool is_valid() const { return _valid; }

Completed in 247 milliseconds