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

/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DReferenceType.java353 List<Field> allFields(); method in interface:ReferenceType
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DReferenceTypeImpl.java263 public final List allFields() throws ClassNotPreparedException { method in class:ReferenceTypeImpl
264 List allFields = (allFieldsCache != null)? (List) allFieldsCache.get() : null;
265 if (allFields == null) {
270 allFields = new ArrayList(0);
279 allFields = new ArrayList(len);
283 allFields.add(new FieldImpl(vm, vm.referenceType(curField.getFieldHolder()), curField));
287 allFields = Collections.unmodifiableList(allFields);
288 allFieldsCache = new SoftReference(allFields);
290 return allFields;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DReferenceTypeImpl.java429 public List<Field> allFields() { method in class:ReferenceTypeImpl

Completed in 150 milliseconds