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

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DConstantLongValue.java29 /** A ConstantLongValue describes a constant long; i.e., the
33 public class ConstantLongValue extends ScopeValue { class in inherits:ScopeValue
36 public ConstantLongValue(long value) { method in class:ConstantLongValue
49 ConstantLongValue(DebugInfoReadStream stream) { method in class:ConstantLongValue
/openjdk7/hotspot/src/share/vm/code/
H A DdebugInfo.cpp84 case CONSTANT_LONG_CODE: result = new ConstantLongValue(stream); break;
168 // ConstantLongValue
170 ConstantLongValue::ConstantLongValue(DebugInfoReadStream* stream) { function in class:ConstantLongValue
174 void ConstantLongValue::write_on(DebugInfoWriteStream* stream) {
179 void ConstantLongValue::print_on(outputStream* st) const {
H A DdebugInfo.hpp150 class ConstantLongValue: public ScopeValue { class in inherits:ScopeValue
154 ConstantLongValue(jlong value) { _value = value; } function in class:ConstantLongValue
160 ConstantLongValue(DebugInfoReadStream* stream);

Completed in 32 milliseconds