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

1 2 3

  /libcore/luni/src/main/java/org/xml/sax/ext/
Locator2.java 1 // Locator2.java - extended Locator
8 import org.xml.sax.Locator;
13 * though a {@link Locator}.
14 * If an implementation supports this extension, the Locator
33 public interface Locator2 extends Locator
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...]
  /libcore/luni/src/main/java/org/xml/sax/
Locator.java 1 // SAX locator interface for document events.
4 // $Id: Locator.java,v 1.8 2002/01/30 21:13:47 dbrownell Exp $
30 * locator at any other time, or after parsing completes.</p>
32 * <p>SAX parsers are not required to supply a locator, but they are
34 * locator, it must do so before reporting any other document events.
35 * If no locator has been set by the time the application receives
37 * event, the application should assume that a locator is not
45 public interface Locator {
136 // end of Locator.java
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...]
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...]
ContentHandler.java 65 * required) to supply a locator: if it does so, it must supply
66 * the locator to the application by invoking this method before
70 * <p>The locator allows the application to determine the end
75 * business rules). The information returned by the locator
78 * <p>Note that the locator will return correct information only
84 * @param locator an object that can return the location of
86 * @see org.xml.sax.Locator
88 public void setDocumentLocator (Locator locator);
295 * must come from the same external entity so that the Locator
    [all...]
HandlerBase.java 137 * Receive a Locator object for document events.
140 * method in a subclass if they wish to store the locator for use
143 * @param locator A locator for all SAX document events.
145 * @see org.xml.sax.Locator
147 public void setDocumentLocator (Locator locator)
  /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...]
Element.java 19 import org.xml.sax.Locator;
190 void checkRequiredChildren(Locator locator) throws SAXParseException {
199 + child + ".", locator);
  /external/v8/src/
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...]
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...]
  /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...]
DefaultHandler.java 16 import org.xml.sax.Locator;
157 * Receive a Locator object for document events.
160 * method in a subclass if they wish to store the locator for use
163 * @param locator A locator for all SAX document events.
165 * @see org.xml.sax.Locator
167 public void setDocumentLocator (Locator locator)
XMLReaderAdapter.java 19 import org.xml.sax.Locator;
253 * Set a document locator.
255 * @param locator The document locator.
258 public void setDocumentLocator (Locator locator)
261 documentHandler.setDocumentLocator(locator);
XMLFilterImpl.java 16 import org.xml.sax.Locator;
440 * Filter a new document locator event.
442 * @param locator The document locator.
444 public void setDocumentLocator (Locator locator)
446 this.locator = locator;
448 contentHandler.setDocumentLocator(locator);
713 private Locator locator = null
704 private Locator locator = null; field in class:XMLFilterImpl
    [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...]
TreeWalker.java 34 import org.xml.sax.Locator;
56 /** Locator object for this TreeWalker */
297 if (node instanceof Locator)
299 Locator loc = (Locator)node;
  /external/eyes-free/AccessCheck/src/com/android/accessibility/
AccessibilityValidationContentHandler.java 19 import org.xml.sax.Locator;
48 private Locator mLocator;
105 public void setDocumentLocator(Locator locator) {
106 mLocator = locator;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-launcher.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
XmlErrorHandler.java 26 import org.xml.sax.Locator;
141 * @param locator
148 public void checkClass(Locator locator, String className, String superClassName,
158 int line = locator.getLineNumber();
  /frameworks/base/core/java/android/content/
DefaultDataHandler.java 23 import org.xml.sax.Locator;
241 public void setDocumentLocator(Locator locator) {
  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
MockHandler.java 25 import org.xml.sax.Locator;
85 public void setDocumentLocator(Locator locator) {
86 logger.add("setDocumentLocator", locator);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
TreeWalker.java 35 import org.xml.sax.Locator;
67 /** Locator object for this TreeWalker */
111 // Set the document locator
271 if (node instanceof Locator)
273 Locator loc = (Locator)node;
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
LocatorImplTest.java 21 import org.xml.sax.Locator;
59 // No locator

Completed in 2235 milliseconds

1 2 3