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

1 2 3 4 5 6

  /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;
188 void checkRequiredChildren(Locator locator) throws SAXParseException {
197 + child + ".", locator);
  /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);
  /external/v8/src/
splay-tree.h 36 class Locator;
60 // true if a node was inserted, otherwise false. If found the locator
62 bool Insert(const Key& key, Locator* locator);
65 // otherwise false. If the node is found the locator is enabled and
67 bool Find(const Key& key, Locator* locator);
71 bool FindGreatestLessThan(const Key& key, Locator* locator);
74 bool FindGreatest(Locator* locator)
    [all...]
effects.h 82 Locator locator; local
83 return this->Find(var, &locator)
84 ? locator.value() : Effect::Unknown(Base::zone());
95 Locator locator; local
96 if (!this->Insert(var, &locator)) {
97 effect = Effect::Seq(locator.value(), effect, Base::zone());
99 locator.set_value(effect);
109 Locator locator local
151 Locator locator; local
    [all...]
splay-tree-inl.h 23 Locator* locator) {
34 locator->bind(root_);
41 locator->bind(root_);
77 bool SplayTree<Config, Allocator>::Find(const Key& key, Locator* locator) {
79 locator->bind(root_);
89 Locator* locator) {
99 locator->bind(root_)
    [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...]
  /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;
  /prebuilts/misc/common/robolectric/3.1.1/lib/
ant-launcher-1.8.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant-launcher/1.7.0/
ant-launcher-1.7.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant-launcher/1.8.0/
ant-launcher-1.8.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant-launcher/1.8.2/
ant-launcher-1.8.2.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/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
MockHandler.java 25 import org.xml.sax.Locator;
85 public void setDocumentLocator(Locator locator) {
86 logger.add("setDocumentLocator", locator);

Completed in 306 milliseconds

1 2 3 4 5 6