HomeSort by relevance Sort by last modified time
    Searched refs:locator (Results 26 - 50 of 212) sorted by null

12 3 4 5 6 7 8 9

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
handler.py 57 def setDocumentLocator(self, locator):
58 """Called by the parser to give the application a locator for
62 required) to supply a locator: if it does so, it must supply
63 the locator to the application by invoking this method before
67 The locator allows the application to determine the end
72 business rules). The information returned by the locator is
75 Note that the locator will return correct information only
78 self._locator = locator
166 Locator provides useful information."""
179 external entity, so that the Locator provides usefu
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
_exceptions.py 59 def __init__(self, msg, exception, locator):
62 self._locator = locator
handler.py 57 def setDocumentLocator(self, locator):
58 """Called by the parser to give the application a locator for
62 required) to supply a locator: if it does so, it must supply
63 the locator to the application by invoking this method before
67 The locator allows the application to determine the end
72 business rules). The information returned by the locator is
75 Note that the locator will return correct information only
78 self._locator = locator
166 Locator provides useful information."""
179 external entity, so that the Locator provides usefu
    [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) {
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
StylesheetHandler.java 55 import org.xml.sax.Locator;
399 * Receive a Locator object for document events.
400 * This is called by the parser to push a locator for the
405 * @param locator A locator for all SAX document events.
407 * @see org.xml.sax.Locator
409 public void setDocumentLocator(Locator locator)
412 // System.out.println("pushing locator for: "+locator.getSystemId())
855 SAXSourceLocator locator = getLocator(); local
901 SAXSourceLocator locator = getLocator(); local
968 SAXSourceLocator locator = getLocator(); local
996 SAXSourceLocator locator = getLocator(); local
1024 SAXSourceLocator locator = getLocator(); local
1426 SourceLocator locator = getLocator(); local
1450 SAXSourceLocator locator = new SAXSourceLocator(); local
1664 SAXSourceLocator locator = getLocator(); local
1673 throw new org.xml.sax.SAXParseException(te.getMessage(), locator, te); local
    [all...]
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());
  /external/sonivox/arm-wt-22k/host_src/
eas_hostmm.c 9 * The file locator (EAS_FILE_LOCATOR) handle passed to
237 EAS_RESULT EAS_HWOpenFile (EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_LOCATOR locator, EAS_FILE_HANDLE *pFile, EAS_FILE_MODE mode)
257 if (locator->path) {
259 if ((fd = open(locator->path, O_RDONLY)) < 0) {
264 fd = dup(locator->fd);
268 if (locator->length == 0) {
281 file->fileSize = (EAS_I32) locator->length;
285 file->offset = locator->offset;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
files.py 142 `locator` is a FileLocator that is used to canonicalize the results.
145 def __init__(self, locator=None):
147 self.locator = locator
203 if self.locator:
204 new = self.locator.canonical_filename(new)
  /libcore/luni/src/main/java/org/xml/sax/helpers/
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...]
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/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/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;
  /frameworks/base/sax/java/android/sax/
Element.java 19 import org.xml.sax.Locator;
188 void checkRequiredChildren(Locator locator) throws SAXParseException {
197 + child + ".", locator);
  /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();
  /libcore/luni/src/test/java/libcore/xml/
ExpatSaxParserTest.java 37 import org.xml.sax.Locator;
186 Locator locator; field in class:ExpatSaxParserTest.NamespaceHandler
200 public void setDocumentLocator(Locator locator) {
201 this.locator = locator;
206 assertNotNull(locator);
234 assertEquals(1, locator.getLineNumber());
299 assertEquals(3, locator.getLineNumber())
423 Locator locator; field in class:ExpatSaxParserTest.TestDtdHandler
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
aether-impl-0.9.0.M2.jar 
aether-spi-0.9.0.M2.jar 
  /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/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/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAX1ParserAdapter.java 152 public void setDocumentLocator(Locator locator)
154 docHandler.setDocumentLocator(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);
  /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/xml/serializer/
ExtendedContentHandler.java 214 * This method is used to set the source locator, which might be used to
216 * @param locator the source locator
218 public void setSourceLocator(SourceLocator locator);

Completed in 506 milliseconds

12 3 4 5 6 7 8 9