Searched refs:ObjectType (Results 1 - 25 of 33) sorted by relevance

12

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DReferenceType.java115 if ((this instanceof ObjectType) && (((ObjectType) this).referencesClass())) {
119 if ((T instanceof ObjectType) && (((ObjectType) T).referencesClass())) {
123 if (Repository.instanceOf(((ObjectType) this).getClassName(),
124 ((ObjectType) T).getClassName()))
130 if ((T instanceof ObjectType) && (((ObjectType) T).referencesInterface())) {
131 if (Repository.implementationOf(((ObjectType) this).getClassName(),
132 ((ObjectType)
[all...]
H A DLoadClass.java69 * Returns the ObjectType of the referenced class or interface
74 public ObjectType getLoadClassType(ConstantPoolGen cpg);
H A DObjectType.java69 public final class ObjectType extends ReferenceType { class in inherits:ReferenceType
75 public ObjectType(String class_name) { method in class:ObjectType
91 return (type instanceof ObjectType)?
92 ((ObjectType)type).class_name.equals(class_name) : false;
119 public boolean subclassOf(ObjectType superclass){
129 public boolean accessibleTo(ObjectType accessor) {
H A DINSTANCEOF.java83 public ObjectType getLoadClassType(ConstantPoolGen cpg) {
89 return (t instanceof ObjectType)? (ObjectType) t : null;
H A DANEWARRAY.java108 public ObjectType getLoadClassType(ConstantPoolGen cpg) {
115 return (t instanceof ObjectType)? (ObjectType) t : null;
H A DCHECKCAST.java94 public ObjectType getLoadClassType(ConstantPoolGen cpg) {
100 return (t instanceof ObjectType)? (ObjectType) t : null;
H A DFieldOrMethod.java111 public ObjectType getClassType(ConstantPoolGen cpg) {
112 return new ObjectType(getClassName(cpg));
117 public ObjectType getLoadClassType(ConstantPoolGen cpg) {
H A DType.java86 public static final ObjectType OBJECT = new ObjectType("java.lang.Object");
87 public static final ObjectType STRING = new ObjectType("java.lang.String");
88 public static final ObjectType STRINGBUFFER = new ObjectType("java.lang.StringBuffer");
89 public static final ObjectType THROWABLE = new ObjectType("java.lang.Throwable");
186 return new ObjectType(signature.substring(1, index).replace('/', '.'));
274 return new ObjectType(c
[all...]
H A DMULTIANEWARRAY.java149 public ObjectType getLoadClassType(ConstantPoolGen cpg) {
156 return (t instanceof ObjectType)? (ObjectType) t : null;
H A DCodeExceptionGen.java82 private ObjectType catch_type;
94 InstructionHandle handler_pc, ObjectType catch_type) {
181 public void setCatchType(ObjectType catch_type) { this.catch_type = catch_type; }
183 public ObjectType getCatchType() { return catch_type; }
H A DNEW.java93 public ObjectType getLoadClassType(ConstantPoolGen cpg) {
94 return (ObjectType)getType(cpg);
H A DArrayType.java86 this(new ObjectType(class_name), dimensions);
H A DInstructionFactory.java212 return ((type instanceof ObjectType) &&
213 ((ObjectType)type).getClassName().equals("java.lang.String"));
504 return new CHECKCAST(cp.addClass(((ObjectType)dest_type).getClassName()));
530 return new CHECKCAST(cp.addClass((ObjectType)t));
537 return new INSTANCEOF(cp.addClass((ObjectType)t));
540 public NEW createNew(ObjectType t) {
545 return createNew(new ObjectType(s));
553 if(t instanceof ObjectType)
554 return new ANEWARRAY(cp.addClass((ObjectType)t));
H A DFieldGen.java124 checkType(new ObjectType("java.lang.String"));
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueType.hpp43 class ObjectType;
62 extern ObjectType* objectType;
142 virtual ObjectType* as_ObjectType() { return NULL; }
293 class ObjectType: public ValueType { class in inherits:ValueType
295 ObjectType(): ValueType(objectTag, 1) {} function in class:ObjectType
299 virtual ObjectType* as_ObjectType() { return this; }
307 class ObjectConstant: public ObjectType {
323 class ArrayType: public ObjectType {
345 class InstanceType: public ObjectType {
367 class ClassType: public ObjectType {
[all...]
H A Dc1_ValueType.cpp38 ObjectType* objectType = NULL;
62 objectType = new (arena) ObjectType();
89 jobject ObjectType::encoding() const {
94 bool ObjectType::is_loaded() const {
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DObjectType.java21 * $Id: ObjectType.java,v 1.2.4.1 2005/09/12 11:45:54 pvedula Exp $
43 public final class ObjectType extends Type { class in inherits:Type
53 protected ObjectType(String javaClassName) { method in class:ObjectType
64 protected ObjectType(Class clazz) { method in class:ObjectType
70 * Must return the same value for all ObjectType instances. This is
78 return (obj instanceof ObjectType);
H A DType.java47 public static final Type Object = new ObjectType(java.lang.Object.class);
48 public static final Type ObjectString = new ObjectType(java.lang.String.class);
73 return new ObjectType(javaClassName);
89 return new ObjectType(clazz);
H A DNodeSetType.java60 return new com.sun.org.apache.bcel.internal.generic.ObjectType(NODE_ITERATOR);
89 translateTo(classGen, methodGen, (ObjectType) type);
206 * Subsume node-set into ObjectType.
211 ObjectType type) {
H A DNodeType.java108 translateTo(classGen, methodGen, (ObjectType) type);
209 * Subsume Node into ObjectType.
214 ObjectType type) {
H A DReferenceType.java94 translateTo(classGen, methodGen, (ObjectType) type);
216 * Subsume reference into ObjectType.
221 ObjectType type) {
H A DResultTreeType.java111 translateTo(classGen, methodGen, (ObjectType) type);
363 * Subsume result tree into ObjectType.
368 ObjectType type) {
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DCastCall.java35 import com.sun.org.apache.xalan.internal.xsltc.compiler.util.ObjectType;
86 tright instanceof ObjectType == false)
H A DFunctionCall.java52 import com.sun.org.apache.xalan.internal.xsltc.compiler.util.ObjectType;
473 else if (intType instanceof ObjectType) {
474 ObjectType objectType = (ObjectType)intType;
540 && firstArgType instanceof ObjectType
542 && _clazz.isAssignableFrom(((ObjectType)firstArgType).getJavaClass()))
548 if (firstArgType instanceof ObjectType) {
549 _className = ((ObjectType) firstArgType).getJavaClassName();
608 else if (intType instanceof ObjectType) {
609 ObjectType objec
[all...]
H A DParam.java41 import com.sun.org.apache.xalan.internal.xsltc.compiler.util.ObjectType;
159 if (_type instanceof ReferenceType == false && !(_type instanceof ObjectType)) {

Completed in 54 milliseconds

12