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

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DConstantDoubleValue.java29 /** A ConstantDoubleValue describes a constant double; i.e., the
33 public class ConstantDoubleValue extends ScopeValue { class in inherits:ScopeValue
36 public ConstantDoubleValue(double value) { method in class:ConstantDoubleValue
49 ConstantDoubleValue(DebugInfoReadStream stream) { method in class:ConstantDoubleValue
/openjdk7/hotspot/src/share/vm/code/
H A DdebugInfo.cpp85 case CONSTANT_DOUBLE_CODE: result = new ConstantDoubleValue(stream); break;
183 // ConstantDoubleValue
185 ConstantDoubleValue::ConstantDoubleValue(DebugInfoReadStream* stream) { function in class:ConstantDoubleValue
189 void ConstantDoubleValue::write_on(DebugInfoWriteStream* stream) {
194 void ConstantDoubleValue::print_on(outputStream* st) const {
H A DdebugInfo.hpp167 class ConstantDoubleValue: public ScopeValue { class in inherits:ScopeValue
171 ConstantDoubleValue(jdouble value) { _value = value; } function in class:ConstantDoubleValue
177 ConstantDoubleValue(DebugInfoReadStream* stream);

Completed in 29 milliseconds