Searched refs:containingType (Results 1 - 22 of 22) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DCPPExpressions.java58 private String containingType; field in class:CPPExpressions.StaticFieldExpr
61 private StaticFieldExpr(String containingType, String fieldName) { argument
62 this.containingType = containingType;
67 return containingType;
99 String containingType = expr.substring(0, idx);
101 return new StaticFieldExpr(containingType, fieldName);
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DParameterizedType.java107 Type containingType(); method in interface:ParameterizedType
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DResolveListener.java33 public void resolveFailed(Type containingType, LazyType failedResolve, String detail); argument
37 public void resolveFailed(Type containingType, String staticFieldName); argument
H A DBasicBaseClass.java44 public void resolveTypes(Type containingType, BasicCDebugInfoDataBase db, ResolveListener listener) { argument
45 type = db.resolveType(containingType, type, listener, "resolving base class");
H A DBasicField.java81 public void resolveTypes(Type containingType, BasicCDebugInfoDataBase db, ResolveListener listener) { argument
82 type = db.resolveType(containingType, type, listener, "resolving field type");
H A DBasicCDebugInfoDataBase.java255 public Type resolveType(Type containingType, Type targetType, ResolveListener listener, String detail) { argument
266 listener.resolveFailed(containingType, (LazyType) targetType, detail + " because target type was not found");
275 listener.resolveFailed(containingType, (LazyType) targetType,
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicJBooleanField.java36 public BasicJBooleanField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
H A DBasicJByteField.java36 public BasicJByteField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
H A DBasicJCharField.java36 public BasicJCharField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
H A DBasicJDoubleField.java36 public BasicJDoubleField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
H A DBasicJFloatField.java36 public BasicJFloatField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
H A DBasicJIntField.java36 public BasicJIntField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
H A DBasicJLongField.java36 public BasicJLongField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
H A DBasicJShortField.java36 public BasicJShortField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
H A DBasicCIntegerField.java36 public BasicCIntegerField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
H A DBasicNarrowOopField.java42 public BasicNarrowOopField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
44 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
H A DBasicOopField.java41 public BasicOopField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
43 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
H A DBasicField.java37 private Type containingType; field in class:BasicField
51 this.containingType = field.containingType;
61 public BasicField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
64 this.containingType = containingType;
92 containingType.getName() + " is static");
100 containingType.getName() + " is not static");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DHotSpotTypeDataBase.java247 BasicType containingType = (BasicType)lookupType(t.sval);
265 Iterator i = containingType.getFields();
294 createField(containingType,
446 BasicType containingType = lookupOrFail(typeName);
452 createField(containingType, fieldName, fieldType,
741 public void createField(BasicType containingType, argument
745 containingType.addField(internalCreateField(containingType, name, type, isStatic, offset, staticFieldAddress));
748 Field internalCreateField(BasicType containingType, argument
753 return new BasicOopField(this, containingType, nam
[all...]
H A DCommandProcessor.java1014 BasicType containingType = (BasicType)agent.getTypeDataBase().lookupType(t.nextToken());
1025 staticAddress = lookup(containingType.getName() + "::" + fieldName);
1029 Iterator i = containingType.getFields();
1054 db.createField(containingType,
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DParameterizedTypeImpl.java92 public com.sun.javadoc.Type containingType() { method in class:ParameterizedTypeImpl
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DWindbgCDebugInfoBuilder.java578 public void resolveFailed(Type containingType, LazyType failedResolve, String detail) {
581 " in type " + containingType.getName() + " (class " +
582 containingType.getClass().getName() + ") while " + detail);
585 public void resolveFailed(Type containingType, String staticFieldName) {
587 staticFieldName + "\" in type " + containingType.getName());

Completed in 97 milliseconds