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

1 2 3 4 5 6

  /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...]
  /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...]
  /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...]
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...]
ParserAdapter.java 20 import org.xml.sax.Locator;
419 * Adapt a SAX1 document locator event.
421 * @param locator A document locator.
424 public void setDocumentLocator (Locator locator)
426 this.locator = locator;
428 contentHandler.setDocumentLocator(locator);
723 locator = null
831 Locator locator; field in class:ParserAdapter
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorLRE.java 42 import org.xml.sax.Locator;
101 // ***** Note that we're assigning an empty locator. Is this necessary?
103 Locator locator = handler.getLocator(); local
104 if(null != locator)
106 slocator.setLineNumber(locator.getLineNumber());
107 slocator.setColumnNumber(locator.getColumnNumber());
108 slocator.setPublicId(locator.getPublicId());
109 slocator.setSystemId(locator.getSystemId());
  /frameworks/base/sax/java/android/sax/
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...]
  /libcore/luni/src/main/java/javax/xml/transform/
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...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
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...]
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerFactory.cpp 299 EAS_FILE locator; local
300 locator.path = NULL;
301 locator.fd = fd;
302 locator.offset = offset;
303 locator.length = length;
305 if (EAS_OpenFile(easdata, &locator, &eashandle) == EAS_SUCCESS) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/
MonitorApplication.java 167 SdkToolsLocator locator = new SdkToolsLocator(new File(sdkLocation)); local
168 return locator.isValidInstallation() == SdkInstallStatus.VALID;
SdkLocationChooserDialog.java 101 SdkToolsLocator locator = new SdkToolsLocator(new File(mTextBox.getText())); local
102 SdkInstallStatus status = locator.isValidInstallation();
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
FuncDocument.java 326 SourceLocator locator = spe2.getLocator(); local
327 if ((null != locator) && (null != locator.getSystemId()))
328 diagnosticsWriter.println(" ID: " + locator.getSystemId()
329 + " Line #" + locator.getLineNumber()
331 + locator.getColumnNumber());
  /external/apache-xml/src/main/java/org/apache/xpath/
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...]
  /external/chromium_org/v8/src/
effects.h 84 Locator locator; local
85 return this->Find(var, &locator)
86 ? locator.value() : Effect::Unknown(Base::zone());
97 Locator locator; local
98 if (!this->Insert(var, &locator)) {
99 effect = Effect::Seq(locator.value(), effect, Base::zone());
101 locator.set_value(effect);
111 Locator locator local
153 Locator locator; local
    [all...]
profile-generator.cc 365 CodeTree::Locator locator; local
366 tree_.Insert(addr, &locator);
367 locator.set_value(CodeEntryInfo(entry, size));
375 CodeTree::Locator locator; local
376 if (!tree_.FindGreatestLessThan(addr, &locator)) break;
377 Address start2 = locator.key(), end2 = start2 + locator.value().size;
386 CodeTree::Locator locator local
402 CodeTree::Locator locator; local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/
XMLReaderAdapterTest.java 31 import org.xml.sax.Locator;
189 LocatorImpl locator = new LocatorImpl(); local
190 adapter.setDocumentLocator(locator);
193 assertEquals(new Object[] { locator }, logger.getArgs());
197 adapter.setDocumentLocator(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...]
  /external/chromium_org/chrome/browser/importer/
ie_importer_browsertest_win.cc 164 base::win::ScopedComPtr<IUniformResourceLocator> locator; local
165 HRESULT result = locator.CreateInstance(CLSID_InternetShortcut, NULL,
170 result = persist_file.QueryFrom(locator);
173 result = locator->SetURL(url.c_str(), 0);
180 if (FAILED(property_set_storage.QueryFrom(locator)))
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DocumentBuilderImpl.java 139 LocatorImpl locator = new LocatorImpl(); local
141 locator.setPublicId(source.getPublicId());
142 locator.setSystemId(systemId);
143 locator.setLineNumber(ex.getLineNumber());
144 locator.setColumnNumber(ex.getColumnNumber());
146 SAXParseException newEx = new SAXParseException(ex.getMessage(), locator);
  /external/owasp/sanitizer/lib/htmlparser-1.3/
htmlparser-1.3-with-transitions.jar 
htmlparser-1.3.jar 
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TransformerHandlerImpl.java 43 import org.xml.sax.Locator;
313 * Filter a new document locator event.
315 * @param locator The document locator.
318 public void setDocumentLocator(Locator locator)
323 + locator.getSystemId());
325 this.m_locator = locator;
329 setSystemId(locator.getSystemId());
334 m_contentHandler.setDocumentLocator(locator);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-trax.jar 

Completed in 5267 milliseconds

1 2 3 4 5 6