Searched refs:m_locator (Results 1 - 7 of 7) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DSAXSourceLocator.java43 Locator m_locator; field in class:SAXSourceLocator
59 m_locator = locator;
74 m_locator = null;
109 return (null == m_locator) ? super.getPublicId() : m_locator.getPublicId();
128 return (null == m_locator) ? super.getSystemId() : m_locator.getSystemId();
148 return (null == m_locator) ? super.getLineNumber() : m_locator.getLineNumber();
168 return (null == m_locator)
[all...]
H A DTreeWalker.java57 private LocatorImpl m_locator = new LocatorImpl(); field in class:TreeWalker
88 m_contentHandler.setDocumentLocator(m_locator);
90 m_locator.setSystemId(systemId);
94 m_locator.setSystemId(System.getProperty("user.dir") + File.separator + "dummy.xsl");
110 m_contentHandler.setDocumentLocator(m_locator);
113 m_locator.setSystemId(System.getProperty("user.dir") + File.separator + "dummy.xsl");
129 m_contentHandler.setDocumentLocator(m_locator);
132 m_locator.setSystemId(System.getProperty("user.dir") + File.separator + "dummy.xsl");
300 m_locator.setColumnNumber(loc.getColumnNumber());
301 m_locator
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DTreeWalker.java68 final private LocatorImpl m_locator = new LocatorImpl(); field in class:TreeWalker
99 m_contentHandler.setDocumentLocator(m_locator);
101 m_locator.setSystemId(systemId);
105 m_locator.setSystemId(System.getProperty("user.dir") + File.separator + "dummy.xsl");
113 m_contentHandler.setDocumentLocator(m_locator);
116 m_locator.setSystemId(System.getProperty("user.dir") + File.separator + "dummy.xsl");
274 m_locator.setColumnNumber(loc.getColumnNumber());
275 m_locator.setLineNumber(loc.getLineNumber());
276 m_locator.setPublicId(loc.getPublicId());
277 m_locator
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DCompiler.java92 m_locator = locator;
103 m_locator = null;
194 // expr.setSourceLocator(m_locator);
1063 new Object[]{name, wnae.getMessage()}), m_locator));
1064 //"name + " only allows " + wnae.getMessage() + " arguments", m_locator));
1165 m_errorHandler.warning(new TransformerException(fmsg, m_locator));
1170 +"; file "+m_locator.getSystemId()
1171 +"; line "+m_locator.getLineNumber()
1172 +"; column "+m_locator.getColumnNumber());
1219 m_errorHandler.fatalError(new TransformerException(fmsg, m_locator));
1262 SourceLocator m_locator; field in class:Compiler
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2DTM.java120 transient protected Locator m_locator = null; field in class:SAX2DTM
894 if (m_locator != null && m_useSourceLocationProperty) {
974 m_sourceSystemId.addElement(m_locator.getSystemId());
975 m_sourceLine.addElement(m_locator.getLineNumber());
976 m_sourceColumn.addElement(m_locator.getColumnNumber());
1676 m_locator = locator;
1731 // Bugzilla 4858: throw away m_locator. we cache m_systemId
1732 m_locator = null;
2499 else if(m_locator!=null)
2501 return new NodeLocator(null,m_locator
[all...]
H A DSAX2DTM2.java2359 if (m_locator != null && m_useSourceLocationProperty) {
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTransformerHandlerImpl.java325 this.m_locator = locator;
1058 private Locator m_locator = null; field in class:TransformerHandlerImpl

Completed in 548 milliseconds