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

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DConstantIntValue.java29 /** A ConstantIntValue describes a constant int; i.e., the
33 public class ConstantIntValue extends ScopeValue { class in inherits:ScopeValue
36 public ConstantIntValue(int value) { method in class:ConstantIntValue
49 ConstantIntValue(DebugInfoReadStream stream) { method in class:ConstantIntValue
/openjdk7/hotspot/src/share/vm/code/
H A DdebugInfo.cpp82 case CONSTANT_INT_CODE: result = new ConstantIntValue(stream); break;
153 // ConstantIntValue
155 ConstantIntValue::ConstantIntValue(DebugInfoReadStream* stream) { function in class:ConstantIntValue
159 void ConstantIntValue::write_on(DebugInfoWriteStream* stream) {
164 void ConstantIntValue::print_on(outputStream* st) const {
H A DdebugInfo.hpp130 // A ConstantIntValue describes a constant int; i.e., the corresponding logical entity
133 class ConstantIntValue: public ScopeValue { class in inherits:ScopeValue
137 ConstantIntValue(jint value) { _value = value; } function in class:ConstantIntValue
143 ConstantIntValue(DebugInfoReadStream* stream);

Completed in 31 milliseconds