Home
last modified time | relevance | path

Searched refs:theSchema (Results 1 – 3 of 3) sorted by relevance

/external/tagsoup/src/org/ccil/cowan/tagsoup/
DParser.java41 private Schema theSchema; field in Parser
355 return theSchema; in getProperty()
388 theSchema = (Schema)value; in setProperty()
447 if (!(theSchema.getURI().equals(""))) in parse()
448 theContentHandler.startPrefixMapping(theSchema.getPrefix(), in parse()
449 theSchema.getURI()); in parse()
459 if (theSchema == null) theSchema = new HTMLSchema(); in setup()
468 theStack = new Element(theSchema.getElementType("<root>"), defaultAttributes); in setup()
469 thePCDATA = new Element(theSchema.getElementType("<pcdata>"), defaultAttributes); in setup()
630 return theSchema.getEntity(new String(buff, offset, length)); in lookupEntity()
[all …]
DElementType.java33 private Schema theSchema; // schema to which this belongs field in ElementType
56 theSchema = schema; in ElementType()
72 return attribute ? "" : theSchema.getURI(); in namespace()
164 public Schema schema() {return theSchema;} in schema()
DCommandLine.java122 private static HTMLSchema theSchema = null; field in CommandLine
137 theSchema = new HTMLSchema(); in process()
138 r.setProperty(Parser.schemaProperty, theSchema); in process()
250 x.setPrefix(theSchema.getURI(), ""); in chooseContentHandler()