Searched refs:typeName (Results 1 - 25 of 158) sorted by relevance

1234567

/openjdk7/jdk/src/share/classes/java/lang/
H A DTypeNotPresentException.java49 private String typeName; field in class:TypeNotPresentException
55 * @param typeName the fully qualified name of the unavailable type
59 public TypeNotPresentException(String typeName, Throwable cause) { argument
60 super("Type " + typeName + " not present", cause);
61 this.typeName = typeName;
69 public String typeName() { return typeName;} method in class:TypeNotPresentException
/openjdk7/jdk/src/share/classes/sun/reflect/annotation/
H A DTypeNotPresentExceptionProxy.java37 String typeName; field in class:TypeNotPresentExceptionProxy
40 public TypeNotPresentExceptionProxy(String typeName, Throwable cause) { argument
41 this.typeName = typeName;
46 return new TypeNotPresentException(typeName, cause);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DTypeImpl.java31 private String typeName; field in class:TypeImpl
40 if (typeName == null) {
42 typeName = parser.typeName();
44 return typeName;
H A DValueContainer.java38 String typeName(); method in interface:ValueContainer
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJType.java40 public static JPrimitiveType parse(JCodeModel codeModel, String typeName) { argument
41 if (typeName.equals("void"))
43 else if (typeName.equals("boolean"))
45 else if (typeName.equals("byte"))
47 else if (typeName.equals("short"))
49 else if (typeName.equals("char"))
51 else if (typeName.equals("int"))
53 else if (typeName.equals("float"))
55 else if (typeName.equals("long"))
57 else if (typeName
[all...]
H A DJPrimitiveType.java37 private final String typeName; field in class:JPrimitiveType
45 JPrimitiveType(JCodeModel owner, String typeName, Class<?> wrapper ) { argument
47 this.typeName = typeName;
54 return typeName;
117 return exp.invoke(typeName+"Value");
121 f.p(typeName);
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DParameter.java55 String typeName(); method in interface:Parameter
H A DType.java47 String typeName(); method in interface:Type
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DLeafInfoImpl.java42 private final QName typeName; field in class:LeafInfoImpl
44 protected LeafInfoImpl(TypeT type,QName typeName) { argument
48 this.typeName = typeName;
69 return typeName;
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.hpp67 const char* typeName; // The type name containing the given field (example: "Klass") member in struct:__anon456
79 const char* typeName; // Type name (example: "methodOopDesc") member in struct:__anon457
107 // the fact that it has a NULL typeName
112 // the fact that it has a NULL typeName
117 // the fact that it has a NULL typeName
127 // debug_only(static int findType(const char* typeName);)
128 static int findType(const char* typeName);
/openjdk7/jdk/src/share/classes/java/sql/
H A DSQLData.java106 * @param typeName the SQL type name of the value on the data stream
113 void readSQL (SQLInput stream, String typeName) throws SQLException; argument
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DField.java55 String typeName(); method in interface:Field
H A DLocalVariable.java67 String typeName(); method in interface:LocalVariable
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DValueContainer.java39 String typeName(); method in interface:ValueContainer
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DTypeInfoImpl.java80 private final String typeName; field in class:TypeInfoImpl
84 typeName = null;
86 public TypeInfoImpl(String typeNamespace, String typeName) { argument
88 this.typeName = typeName;
96 return typeName;
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DMimeEntry.java32 private String typeName; // of the form: "type/subtype" field in class:MimeEntry
73 typeName = type.toLowerCase();
78 starred = isStarred(typeName);
82 MimeEntry(String typeName, int action, String command, argument
84 this.typeName = typeName.toLowerCase();
94 MimeEntry(String typeName, int action, String command, argument
97 this.typeName = typeName.toLowerCase();
103 starred = isStarred(typeName);
202 isStarred(String typeName) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVirtualConstructor.java74 String typeName = (String) iter.next();
75 if (db.addressTypeIsEqualToType(addr, db.lookupType(typeName))) {
76 return (VMObject) VMObjectFactory.newObject((Class) map.get(typeName), addr);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DCTypeRef.java62 /*package*/ final @Nullable QName typeName; field in class:CTypeRef
73 return typeName;
78 QName typeName = null;
80 typeName = BGMBuilder.getName(decl.getType());
81 return typeName;
84 public CTypeRef(CNonElement type, QName elementName, QName typeName, boolean nillable, XmlString defaultValue) { argument
90 this.typeName = typeName;
H A DCSingleTypePropertyInfo.java51 * @param typeName
56 protected CSingleTypePropertyInfo(String name, TypeUse type, QName typeName, XSComponent source, CCustomizations customizations, Locator locator) { argument
60 if(needsExplicitTypeName(type,typeName))
61 schemaType = typeName;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/annotation/
H A DTypeMonikerFactory.java55 public static TypeMoniker getTypeMoniker(String typeName) { argument
56 return new StringMoniker(typeName);
102 private String typeName; field in class:TypeMonikerFactory.StringMoniker
104 public StringMoniker(String typeName) { argument
105 this.typeName = typeName;
109 return apEnv.getTypeUtils().getDeclaredType(apEnv.getTypeDeclaration(typeName));
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DOpenType.java138 private String typeName; field in class:OpenType
167 * @param typeName The name given to the open type this instance represents; cannot be a null or empty string.
172 * @throws IllegalArgumentException if <var>className</var>, <var>typeName</var> or <var>description</var>
178 String typeName,
181 this.typeName = valid("typeName", typeName);
188 OpenType(String className, String typeName, String description, argument
191 this.typeName = valid("typeName", typeNam
177 OpenType(String className, String typeName, String description) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DAbstractTypeImpl.java52 public String typeName() { method in class:AbstractTypeImpl
65 return typeName();
H A DParameterImpl.java76 public String typeName() { method in class:ParameterImpl
78 ? type.typeName() // omit formal type params or bounds
90 return typeName() + " " + sym;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/gmbal/util/
H A DGenericConstructor.java42 private String typeName ; field in class:GenericConstructor
66 this.typeName = className ;
75 type = (Class<T>)Class.forName( typeName ) ;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DHotSpotTypeDataBase.java174 String typeName = CStringUtilities.getString(typeNameAddr);
187 createType(typeName, superclassName, isOopType, isIntegerType, isUnsigned, size);
216 private Type lookupPrimitiveType(String typeName) { argument
217 Type type = lookupType(typeName, false);
220 typeName + "\" in the remote VM's VMStructs table. This type is required in " +
302 String typeName = t.sval;
319 type = (BasicType)lookupType(typeName);
324 throw new RuntimeException("oop mismatch in type definition: " + typeName);
327 throw new RuntimeException("integer type mismatch in type definition: " + typeName);
330 throw new RuntimeException("unsigned mismatch in type definition: " + typeName);
555 lookupOrFail(String typeName) argument
591 lookupOrCreateClass(String typeName, boolean isOopType, boolean isIntegerType, boolean isUnsigned) argument
605 createBasicType(String typeName, boolean isOopType, boolean isIntegerType, boolean isUnsigned) argument
640 recursiveCreateBasicPointerType(String typeName) argument
686 typeNameIsPointerType(String typeName) argument
697 createType(String typeName, String superclassName, boolean isOopType, boolean isIntegerType, boolean isUnsigned, long size) argument
[all...]

Completed in 119 milliseconds

1234567