Searched refs:entryType (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/readers/
H A DOASISXMLCatalogReader.java137 int entryType = -1;
150 entryType = Catalog.BASE;
157 CatalogEntry ce = new CatalogEntry(entryType, entryArgs);
167 entryType = -1;
189 entryType = Catalog.OVERRIDE;
196 CatalogEntry ce = new CatalogEntry(entryType, entryArgs);
206 entryType = -1;
215 entryType = Catalog.DELEGATE_PUBLIC;
225 entryType = Catalog.DELEGATE_SYSTEM;
235 entryType
[all...]
H A DExtendedXMLCatalogReader.java74 int entryType = -1;
83 entryType = Catalog.BASE;
90 CatalogEntry ce = new CatalogEntry(entryType, entryArgs);
100 entryType = -1;
108 entryType = Resolver.URISUFFIX;
118 entryType = Resolver.SYSTEMSUFFIX;
131 if (entryType >= 0) {
133 CatalogEntry ce = new CatalogEntry(entryType, entryArgs);
158 int entryType = -1;
169 entryType
[all...]
H A DXCatalogReader.java105 int entryType = -1;
109 entryType = catalog.BASE;
114 entryType = catalog.DELEGATE_PUBLIC;
122 entryType = catalog.CATALOG;
127 entryType = catalog.PUBLIC;
135 entryType = catalog.SYSTEM;
149 if (entryType >= 0) {
151 CatalogEntry ce = new CatalogEntry(entryType, entryArgs);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/
H A DCatalogEntry.java142 protected int entryType = 0; field in class:CatalogEntry
181 entryType = type;
206 entryType = type;
216 return entryType;
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DUtil.java973 SymtabEntry entryType = entry;
974 while (entryType instanceof TypedefEntry)
975 entryType = entryType.type ();
977 if (entryType instanceof StringEntry && ((StringEntry)entryType).maxSize () != null)
978 checkForGlobalConstants (((StringEntry)entryType).maxSize ().rep (), importTypes, importList);
980 if (entryType instanceof SequenceEntry && ((SequenceEntry)entryType).maxSize () != null)
981 checkForGlobalConstants (((SequenceEntry)entryType)
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DParser.java1076 SymtabEntry entryType = typeOf (entry.type ());
1077 if (!((entryType instanceof PrimitiveEntry) || (entryType instanceof StringEntry)))
1082 else if (entryType instanceof PrimitiveEntry)
1085 if (entryType.name().equals (any))

Completed in 40 milliseconds