HomeSort by relevance Sort by last modified time
    Searched refs:m_locator (Results 1 - 7 of 7) sorted by null

  /external/apache-xml/src/main/java/org/apache/xml/utils/
SAXSourceLocator.java 43 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) ? super.getColumnNumber() : m_locator.getColumnNumber()
    [all...]
TreeWalker.java 57 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.setLineNumber(loc.getLineNumber())
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
TreeWalker.java 68 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.setSystemId(loc.getSystemId())
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 92 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));
1262 SourceLocator m_locator; field in class:Compiler
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM.java 120 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());
    [all...]
SAX2DTM2.java     [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TransformerHandlerImpl.java 325 this.m_locator = locator;
1058 private Locator m_locator = null; field in class:TransformerHandlerImpl

Completed in 99 milliseconds