Searched defs:m_locator (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DSAXSourceLocator.java45 Locator m_locator; field in class:SAXSourceLocator
61 m_locator = locator;
76 m_locator = null;
111 return (null == m_locator) ? super.getPublicId() : m_locator.getPublicId();
130 return (null == m_locator) ? super.getSystemId() : m_locator.getSystemId();
150 return (null == m_locator) ? super.getLineNumber() : m_locator.getLineNumber();
170 return (null == m_locator)
[all...]
H A DTreeWalker.java60 private LocatorImpl m_locator = new LocatorImpl(); field in class:TreeWalker
91 m_contentHandler.setDocumentLocator(m_locator);
93 m_locator.setSystemId(systemId);
97 m_locator.setSystemId(SecuritySupport.getSystemProperty("user.dir") + File.separator + "dummy.xsl");
113 m_contentHandler.setDocumentLocator(m_locator);
116 m_locator.setSystemId(SecuritySupport.getSystemProperty("user.dir") + File.separator + "dummy.xsl");
132 m_contentHandler.setDocumentLocator(m_locator);
135 m_locator.setSystemId(SecuritySupport.getSystemProperty("user.dir") + File.separator + "dummy.xsl");
303 m_locator.setColumnNumber(loc.getColumnNumber());
304 m_locator
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DTreeWalker.java71 final private LocatorImpl m_locator = new LocatorImpl(); field in class:TreeWalker
102 m_contentHandler.setDocumentLocator(m_locator);
104 m_locator.setSystemId(systemId);
108 m_locator.setSystemId(SecuritySupport.getSystemProperty("user.dir") + File.separator + "dummy.xsl");
116 m_contentHandler.setDocumentLocator(m_locator);
119 m_locator.setSystemId(SecuritySupport.getSystemProperty("user.dir") + File.separator + "dummy.xsl");
277 m_locator.setColumnNumber(loc.getColumnNumber());
278 m_locator.setLineNumber(loc.getLineNumber());
279 m_locator.setPublicId(loc.getPublicId());
280 m_locator
[all...]
H A DSerializerBase.java229 private Locator m_locator = null; field in class:SerializerBase
322 m_locator = locator;
1266 if (m_locator == null)
1269 String strVersion = ((Locator2)m_locator).getXMLVersion();
1272 /*String strEncoding = ((Locator2)m_locator).getEncoding();
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/compiler/
H A DCompiler.java94 m_locator = locator;
105 m_locator = null;
196 // expr.setSourceLocator(m_locator);
1065 new Object[]{name, wnae.getMessage()}), m_locator));
1066 //"name + " only allows " + wnae.getMessage() + " arguments", m_locator));
1167 m_errorHandler.warning(new TransformerException(fmsg, m_locator));
1172 +"; file "+m_locator.getSystemId()
1173 +"; line "+m_locator.getLineNumber()
1174 +"; column "+m_locator.getColumnNumber());
1221 m_errorHandler.fatalError(new TransformerException(fmsg, m_locator));
1264 SourceLocator m_locator; field in class:Compiler
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/sax2dtm/
H A DSAX2DTM.java122 transient protected Locator m_locator = null; field in class:SAX2DTM
904 if (m_locator != null && m_useSourceLocationProperty) {
984 m_sourceSystemId.addElement(m_locator.getSystemId());
985 m_sourceLine.addElement(m_locator.getLineNumber());
986 m_sourceColumn.addElement(m_locator.getColumnNumber());
1686 m_locator = locator;
1741 // Bugzilla 4858: throw away m_locator. we cache m_systemId
1742 m_locator = null;
2509 else if(m_locator!=null)
2511 return new NodeLocator(null,m_locator
[all...]

Completed in 53 milliseconds