HomeSort by relevance Sort by last modified time
    Searched refs:locator (Results 1 - 25 of 137) sorted by null

1 2 3 4 5 6

  /libcore/luni/src/main/java/javax/xml/transform/
TransformerConfigurationException.java 69 * Create a new TransformerConfigurationException from a message and a Locator.
76 * @param locator The locator object for the error or warning.
79 SourceLocator locator) {
80 super(message, locator);
88 * @param locator The locator object for the error or warning.
92 SourceLocator locator,
94 super(message, locator, e);
TransformerException.java 31 /** Field locator specifies where the error occurred */
32 SourceLocator locator; field in class:TransformerException
41 return locator;
51 locator = location;
129 this.locator = null;
142 this.locator = null;
162 this.locator = null;
166 * Create a new TransformerException from a message and a Locator.
173 * @param locator The locator object for the error or warning
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/
SAXParseException.java 19 * in the original XML document, as if it came from a {@link Locator}
34 * @see org.xml.sax.Locator
47 * Create a new SAXParseException from a message and a Locator.
54 * @param locator The locator object for the error or warning (may be
56 * @see org.xml.sax.Locator
58 public SAXParseException (String message, Locator locator) {
60 if (locator != null) {
61 init(locator.getPublicId(), locator.getSystemId()
    [all...]
DocumentHandler.java 34 * the location of any document event using the Locator interface
44 * @see org.xml.sax.Locator
55 * required) to supply a locator: if it does so, it must supply
56 * the locator to the application by invoking this method before
60 * <p>The locator allows the application to determine the end
65 * business rules). The information returned by the locator
68 * <p>Note that the locator will return correct information only
72 * @param locator An object that can return the location of
74 * @see org.xml.sax.Locator
76 public abstract void setDocumentLocator (Locator locator)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
SAXSourceLocator.java 27 import org.xml.sax.Locator;
34 * and thus can be both a SourceLocator and a SAX Locator.
40 /** The SAX Locator object.
43 Locator m_locator;
55 * @param locator Source locator
57 public SAXSourceLocator(Locator locator)
59 m_locator = locator;
60 this.setColumnNumber(locator.getColumnNumber())
    [all...]
DefaultErrorHandler.java 280 // SourceLocator locator = exception.getLocator();
281 SourceLocator locator = null; local
284 // Try to find the locator closest to the cause.
289 locator = new SAXSourceLocator((SAXParseException)cause);
295 locator = causeLocator;
307 exception.setLocator(locator);
322 SourceLocator locator = null; local
325 // Try to find the locator closest to the cause.
330 locator = new SAXSourceLocator((SAXParseException)cause);
336 locator = causeLocator
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMConfigurationException.java 72 * Create a new DTMConfigurationException from a message and a Locator.
79 * @param locator The locator object for the error or warning.
82 SourceLocator locator) {
83 super(message, locator);
91 * @param locator The locator object for the error or warning.
95 SourceLocator locator,
97 super(message, locator, e);
DTMException.java 40 /** Field locator specifies where the error occured.
42 SourceLocator locator; field in class:DTMException
51 return locator;
61 locator = location;
140 this.locator = null;
153 this.locator = null;
173 this.locator = null;
177 * Create a new DTMException from a message and a Locator.
184 * @param locator The locator object for the error or warning
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/ext/
Locator2Impl.java 8 import org.xml.sax.Locator;
36 * of this class is to make a snapshot of an existing Locator.
41 * Copy an existing Locator or Locator2 object.
46 * @param locator The existing Locator object.
48 public Locator2Impl (Locator locator)
50 super (locator);
51 if (locator instanceof Locator2) {
52 Locator2 l2 = (Locator2) locator;
    [all...]
  /frameworks/base/sax/java/android/sax/
BadXmlException.java 20 import org.xml.sax.Locator;
27 public BadXmlException(String message, Locator locator) {
28 super(message, locator);
RootElement.java 23 import org.xml.sax.Locator;
99 Locator locator; field in class:RootElement.Handler
105 public void setDocumentLocator(Locator locator) {
106 this.locator = locator;
124 locator);
147 + Element.toString(uri, localName), locator);
184 current.checkRequiredChildren(locator);
    [all...]
  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/apicheck/
SuppressTest1.class.data 
SuppressTest2.class.data 
SuppressTest3.class.data 
ApiCallTest.class.data 
  /libcore/luni/src/main/java/org/xml/sax/helpers/
LocatorImpl.java 1 // SAX default implementation for Locator.
8 import org.xml.sax.Locator;
12 * Provide an optional convenience implementation of Locator.
22 * can use it to make a persistent snapshot of a locator at any
26 * Locator locator;
27 * Locator startloc;
29 * public void setLocator (Locator locator)
31 * // note the locator
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
AndroidLaunch.java 35 * @param locator
38 ISourceLocator locator) {
39 super(launchConfiguration, mode, locator);
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathFactory.java 39 * @param locator The location of the expression string, mainly for diagnostic
48 XPath create(String exprString, SourceLocator locator,
SourceTreeManager.java 119 String base, String urlString, SourceLocator locator)
230 * @param locator The location of the caller, for diagnostic purposes.
238 String base, String urlString, SourceLocator locator, XPathContext xctxt)
245 Source source = this.resolveURI(base, urlString, locator);
248 return getSourceTree(source, locator, xctxt);
252 throw new TransformerException(ioe.getMessage(), locator, ioe); local
257 throw new TransformerException(te.getMessage(), locator, te);
265 * @param locator The location of the caller, for diagnostic purposes.
272 public int getSourceTree(Source source, SourceLocator locator, XPathContext xctxt)
281 n = parseToNode(source, locator, xctxt)
322 throw new TransformerException(e.getMessage(), locator, e); local
387 throw new TransformerException(se.getMessage(), locator, se); local
    [all...]
XPath.java 155 * @param locator The location of the expression, may be null.
164 String exprString, SourceLocator locator, PrefixResolver prefixResolver, int type,
174 XPathParser parser = new XPathParser(errorListener, locator);
175 Compiler compiler = new Compiler(errorListener, locator, m_funcTable);
190 if((null != locator) && locator instanceof ExpressionNode)
192 expr.exprSetParent((ExpressionNode)locator);
203 * @param locator The location of the expression, may be null.
212 String exprString, SourceLocator locator,
223 XPathParser parser = new XPathParser(errorListener, locator);
    [all...]
  /external/v8/src/
splay-tree-inl.h 45 bool SplayTree<Config, Allocator>::Insert(const Key& key, Locator* locator) {
56 locator->bind(root_);
63 locator->bind(root_);
93 bool SplayTree<Config, Allocator>::Find(const Key& key, Locator* locator) {
95 locator->bind(root_);
105 Locator* locator) {
115 locator->bind(root_)
    [all...]
splay-tree.h 59 class Locator;
70 // true if a node was inserted, otherwise false. If found the locator
72 bool Insert(const Key& key, Locator* locator);
75 // otherwise false. If the node is found the locator is enabled and
77 bool Find(const Key& key, Locator* locator);
81 bool FindGreatestLessThan(const Key& key, Locator* locator);
84 bool FindGreatest(Locator* locator)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/asset/
ImplHandler.java 42 * <code>ImplHandler</code> manages the asset loader and asset locator
46 * locator object in a thread local.
95 logger.log(Level.SEVERE,"Cannot create locator of type {0}, does"
100 logger.log(Level.SEVERE,"Cannot create locator of type {0}, "
145 AssetLocator locator = (AssetLocator) local.get(); local
147 locator.setRootPath((String) local.getPath());
149 AssetInfo info = locator.locate(owner, key);
200 ImplThreadLocal locator = it.next(); local
201 if (locator.getPath().equals(rootPath) &&
202 locator.getTypeClass().equals(locatorType))
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemTemplate.java 93 * @param locator SourceLocator holding location information
95 public void setLocaterInfo(SourceLocator locator)
98 m_publicId = locator.getPublicId();
99 m_systemId = locator.getSystemId();
101 super.setLocaterInfo(locator);
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatParser.java 31 import org.xml.sax.Locator;
53 private final Locator locator = new ExpatLocator(); field in class:ExpatParser
279 + " '" + this.systemId + "' at " + locator, e);
372 throw new ParseException("No input specified.", locator);
408 throw new ParseException(e.getMessage(), this.locator);
429 throw new ParseException(e.getMessage(), this.locator);
461 throw new ParseException(e.getMessage(), this.locator);
499 throw new ParseException(e.getMessage(), locator); local
515 throw new ParseException(e.getMessage(), this.locator);
728 super(makeMessage(message, locator), locator); local
    [all...]

Completed in 2330 milliseconds

1 2 3 4 5 6