Searched refs:objectType (Results 1 - 25 of 38) sorted by relevance

12

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DObjectPool.java42 private final Class objectType; field in class:ObjectPool
55 objectType = type;
68 objectType = ObjectFactory.findProviderClass(className, true);
87 objectType = type;
97 objectType = null;
138 return objectType.newInstance();
166 // if (objectType.isInstance(obj))
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xs/
H A DXSModel.java48 * @param objectType The type of the declaration, i.e.
52 * <code>objectType</code> to retrieve only complex types or simple
55 * <code>objectType</code> or an empty <code>XSNamedMap</code> if no
58 public XSNamedMap getComponents(short objectType); argument
64 * @param objectType The type of the declaration, i.e.
69 * <code>objectType</code> and defined in the specified
72 public XSNamedMap getComponentsByNamespace(short objectType, argument
H A DXSNamespaceItem.java37 * @param objectType The type of the declaration, i.e.
41 * <code>objectType</code> to retrieve only complex types or simple
44 * <code>objectType</code> or an empty <code>XSNamedMap</code> if no
47 public XSNamedMap getComponents(short objectType); argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSModelImpl.java289 * @param objectType The type of the declaration, i.e.
293 * <code>objectType</code> to retrieve only complex types or simple
296 * <code>objectType</code> or an empty <code>XSNamedMap</code> if no
299 public synchronized XSNamedMap getComponents(short objectType) { argument
300 if (objectType <= 0 || objectType > MAX_COMP_IDX ||
301 !GLOBAL_COMP[objectType]) {
307 if (fGlobalComponents[objectType] == null) {
309 switch (objectType) {
334 if (objectType
358 getComponentsByNamespace(short objectType, String namespace) argument
[all...]
H A DSchemaGrammar.java1445 * @param objectType The type of the declaration, i.e.
1449 * <code>objectType</code> to retrieve only complex types or simple
1452 * <code>objectType</code> or an empty <code>XSNamedMap</code> if no
1455 public synchronized XSNamedMap getComponents(short objectType) { argument
1456 if (objectType <= 0 || objectType > MAX_COMP_IDX ||
1457 !GLOBAL_COMP[objectType]) {
1465 if (fComponents[objectType] == null) {
1467 switch (objectType) {
1492 if (objectType
1504 getComponentsExt(short objectType) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapSchemaCtx.java62 private int objectType; field in class:LdapSchemaCtx
83 private LdapSchemaCtx(int objectType, Hashtable environment, SchemaInfo info) { argument
86 this.objectType = objectType;
188 final LdapSchemaCtx setup(int objectType, String name, Attributes attrs) argument
196 answer.objectType = objectType;
264 switch (objectType) {
310 switch (objectType) {
354 switch (objectType) {
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltCommon.java56 * The Xalan extensions MethodResolver converts 'object-type' to 'objectType'.
59 * @return objectType 'string', 'number', 'boolean', 'node-set', 'RTF', or 'external'.
63 public static String objectType (Object obj) method in class:ExsltCommon
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/type/
H A DClassTypeImpl.java59 if (type.tsym == env.symtab.objectType.tsym) {
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DClassDeclarationImpl.java62 t.tsym != env.symtab.objectType.tsym && !t.isErroneous();
78 if (sym == env.symtab.objectType.tsym) {
H A DTypeParameterDeclarationImpl.java117 return (tv.getUpperBound().tsym == env.symtab.objectType.tsym)
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueType.cpp38 ObjectType* objectType = NULL; variable
62 objectType = new (arena) ObjectType();
134 case T_OBJECT : return objectType;
H A Dc1_ValueType.hpp62 extern ObjectType* objectType;
296 virtual ValueType* base() const { return objectType; }
H A Dc1_GraphBuilder.cpp1409 load_local(objectType, 0);
2532 case Bytecodes::_aload_0 : load_local(objectType, 0); break;
2533 case Bytecodes::_aload_1 : load_local(objectType, 1); break;
2534 case Bytecodes::_aload_2 : load_local(objectType, 2); break;
2535 case Bytecodes::_aload_3 : load_local(objectType, 3); break;
2548 case Bytecodes::_astore : store_local(objectType, s.get_index()); break;
2565 case Bytecodes::_astore_0 : store_local(objectType, 0); break;
2566 case Bytecodes::_astore_1 : store_local(objectType, 1); break;
2567 case Bytecodes::_astore_2 : store_local(objectType, 2); break;
2568 case Bytecodes::_astore_3 : store_local(objectType,
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DSymtab.java120 public final Type objectType; field in class:Symtab
299 ((ClassType) sym.type).supertype_field = objectType;
316 ((ClassType) sym.type).supertype_field = objectType;
429 objectType = enterClass("java.lang.Object");
508 arrayClassType.supertype_field = objectType;
520 new MethodType(List.<Type>nil(), objectType,
556 nullcheck = enterUnop("<*nullchk*>", objectType, objectType, nullchk);
559 enterBinop("+", stringType, objectType, stringType, string_add);
560 enterBinop("+", objectType, stringTyp
[all...]
H A DTypes.java125 return t.bound == null ? syms.objectType : t.bound.bound;
188 WildcardType unb = new WildcardType(syms.objectType,
255 qs.append(new WildcardType(syms.objectType, BoundKind.UNBOUND, syms.boundClass, (TypeVar) iter.head));
454 s = new WildcardType(syms.objectType,
853 return w.bound == null ? syms.objectType : w.bound.bound;
1693 * @param supertype is objectType if all bounds are interfaces,
1706 bc.erasure_field = syms.objectType;
1803 if (t.elemtype.isPrimitive() || isSameType(t.elemtype, syms.objectType))
1914 * @param supertype is objectType if all bounds are interfaces,
1936 syms.objectType
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DParameterizedTypeImpl.java76 (sup != type) ? sup : env.syms.objectType);
H A DClassDocImpl.java480 if (tsym == env.syms.objectType.tsym) return null;
482 if (c == null || c == tsym) c = (ClassSymbol)env.syms.objectType.tsym;
493 (tsym == env.syms.objectType.tsym))
497 (sup != type) ? sup : env.syms.objectType);
/openjdk7/langtools/test/tools/javac/types/
H A DGenericTypeWellFormednessTest.java127 new InstantiableType(predef.objectType),
180 new InstantiableType(fac.Wildcard(BoundKind.UNBOUND, predef.objectType)) {
192 Type tv2 = fac.TypeVariable(predef.objectType);
213 tv7.bound = subst(decl7, Mapping(tv7, fac.Wildcard(BoundKind.UNBOUND, predef.objectType)));
H A DTypeHarness.java56 * predef.objectType,
57 * predef.objectType);
59 * Mapping(X, predef.objectType),
60 * Mapping(Y, predef.objectType)));
259 ((ClassType)csym.type).supertype_field = predef.objectType;
308 return TypeVariable(predef.objectType);
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRGenerator_x86.cpp320 LIR_Opr tmp1 = new_register(objectType);
321 LIR_Opr tmp2 = new_register(objectType);
322 LIR_Opr tmp3 = new_register(objectType);
740 if (type == objectType) {
783 if (type == objectType) { // Write-barrier needed for Object fields.
790 if (type == objectType)
804 if (type == objectType) { // Write-barrier needed for Object fields.
1020 LIR_Opr klass_reg = new_register(objectType);
1170 tmp3 = new_register(objectType);
1173 new_register(objectType), new_registe
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DInfer.java211 that.inst = syms.objectType;
281 hb = syms.objectType;
358 WildcardType wt = new WildcardType(syms.objectType, BoundKind.UNBOUND, syms.boundClass);
642 syms.objectType;
649 syms.objectType;
652 restype = syms.objectType;
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/util/
H A DTypesImpl.java155 bound = env.symtab.objectType;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DJavacTypes.java190 bound = syms.objectType;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DGen.java267 : syms.objectType.tsym;
287 if (sym.owner == syms.objectType.tsym)
292 syms.objectType.tsym.members().lookup(sym.name).scope != null)
988 if (meth.isConstructor() && selfType != syms.objectType)
1279 final LocalItem lockVar = makeTemp(syms.objectType);
1912 callMethod(pos, syms.objectType, names.getClass,
1975 t = syms.objectType;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DFunctionCall.java266 _extensionFunctionTable.put(EXSLT_COMMON + ":objectType", "objectType");
474 ObjectType objectType = (ObjectType)intType;
475 if (objectType.getJavaClass() == extType)
477 else if (extType.isAssignableFrom(objectType.getJavaClass()))

Completed in 99 milliseconds

12