Searched defs:underlyingType (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicBitType.java33 private Type underlyingType; field in class:BasicBitType
40 public BasicBitType(Type underlyingType, int sizeInBits, int lsbOffset) { argument
41 this(underlyingType, sizeInBits, lsbOffset, 0);
44 private BasicBitType(Type underlyingType, int sizeInBits, int lsbOffset, int cvAttributes) { argument
46 this.underlyingType = underlyingType;
53 public int getSize() { return underlyingType.getSize(); }
55 if (underlyingType.isInt()) {
56 return ((IntType) underlyingType).isUnsigned();
71 underlyingType
[all...]
H A DBasicEnumType.java34 private Type underlyingType; field in class:BasicEnumType
52 public BasicEnumType(String name, Type underlyingType) { argument
53 this(name, underlyingType, 0);
56 private BasicEnumType(String name, Type underlyingType, int cvAttributes) { argument
58 this.underlyingType = underlyingType;
63 public int getSize() { return underlyingType.getSize(); }
65 if (underlyingType.isInt()) {
66 return ((IntType) underlyingType).isUnsigned();
99 underlyingType
[all...]

Completed in 46 milliseconds