Searched defs:objectType (Results 1 - 9 of 9) sorted by relevance

/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/jaxp/src/com/sun/org/apache/xerces/internal/xs/
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
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
/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/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;
/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/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/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...]

Completed in 287 milliseconds