Searched refs:getValue (Results 226 - 250 of 1264) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DInterningXmlVisitor.java137 public String getValue(int index) { method in class:InterningXmlVisitor.AttributesImpl
138 return core.getValue(index);
141 public String getValue(String qName) { method in class:InterningXmlVisitor.AttributesImpl
142 return core.getValue(qName);
145 public String getValue(String uri, String localName) { method in class:InterningXmlVisitor.AttributesImpl
146 return core.getValue(uri, localName);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/gc_implementation/parallelScavenge/
H A DPSYoungGen.java63 return (MutableSpace) VMObjectFactory.newObject(MutableSpace.class, edenSpaceField.getValue(addr));
67 return (MutableSpace) VMObjectFactory.newObject(MutableSpace.class, fromSpaceField.getValue(addr));
71 return (MutableSpace) VMObjectFactory.newObject(MutableSpace.class, toSpaceField.getValue(addr));
H A DParallelScavengeHeap.java62 return (PSYoungGen) VMObjectFactory.newObject(PSYoungGen.class, youngGenField.getValue());
66 return (PSOldGen) VMObjectFactory.newObject(PSOldGen.class, oldGenField.getValue());
70 return (PSPermGen) VMObjectFactory.newObject(PSPermGen.class, permGenField.getValue());
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DDefNewGeneration.java68 return (EdenSpace) VMObjectFactory.newObject(EdenSpace.class, edenSpaceField.getValue(addr));
72 return (ContiguousSpace) VMObjectFactory.newObject(ContiguousSpace.class, fromSpaceField.getValue(addr));
76 return (ContiguousSpace) VMObjectFactory.newObject(ContiguousSpace.class, toSpaceField.getValue(addr));
H A DBinaryTreeDictionary.java52 return totalSizeField.getValue(addr);
H A DCMSPermGen.java54 return GenerationFactory.newObject(genField.getValue(addr));
H A DCompactibleSpace.java62 return compactionTopField.getValue(addr);
H A DCompactingPermGen.java58 return GenerationFactory.newObject(genField.getValue(addr));
H A DLinearAllocBlock.java52 return word_sizeField.getValue(addr);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DObjectMonitor.java84 public long waiters() { return waitersField.getValue(addr); }
90 public long count() { return countField.getValue(addr); }
94 public long recursions() { return recursionsField.getValue(addr); }
H A DThread.java71 return (int) suspendFlagsField.getValue(addr);
123 Address monitorAddr = currentPendingMonitorField.getValue(addr);
131 Address monitorAddr = currentWaitingMonitorField.getValue(addr);
/openjdk7/jdk/test/java/util/Hashtable/
H A DSimpleSerialization.java72 System.err.println("h1.value::" + entry.getValue() + " d1.contains()::" + d1.contains(entry.getValue()));
73 System.err.println("h1.value == d1.value " + entry.getValue().equals(d1.get((String) entry.getKey())));
/openjdk7/jdk/test/java/util/concurrent/ConcurrentMap/
H A DConcurrentModification.java69 check(e.getValue() == 2);
82 check(e.getValue() == 2 || e.getValue() == 3);
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/extension/
H A DCopyObjectPolicy.java43 public int getValue() method in class:CopyObjectPolicy
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/monitoring/
H A DMonitoredAttributeBase.java36 * getValue(), if there is no need to clear the state and the attribute is not
84 public abstract Object getValue( ); method in class:MonitoredAttributeBase
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/tree/
H A DAddressTreeNodeAdapter.java61 public String getValue() { method in class:AddressTreeNodeAdapter
H A DDoubleTreeNodeAdapter.java60 public String getValue() { method in class:DoubleTreeNodeAdapter
H A DFloatTreeNodeAdapter.java60 public String getValue() { method in class:FloatTreeNodeAdapter
H A DLongTreeNodeAdapter.java60 public String getValue() { method in class:LongTreeNodeAdapter
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DRuntimeStub.java59 return callerMustGCArgumentsField.getValue(addr) != 0;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/
H A DDSO.java109 return (sym != null)? createClosestSymbol(sym.getName(), offset - sym.getValue()) : null;
119 return dso.getValue();
130 long value = sym.getValue();
151 return (ELFFile) file.getValue();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DBooleanField.java43 public boolean getValue(Oop obj) { return obj.getHandle().getJBooleanAt(getOffset()); } method in class:BooleanField
H A DByteField.java43 public byte getValue(Oop obj) { return obj.getHandle().getJByteAt(getOffset()); } method in class:ByteField
H A DCharField.java43 public char getValue(Oop obj) { return obj.getHandle().getJCharAt(getOffset()); } method in class:CharField
H A DDoubleField.java43 public double getValue(Oop obj) { return obj.getHandle().getJDoubleAt(getOffset()); } method in class:DoubleField

Completed in 112 milliseconds

1234567891011>>