HomeSort by relevance Sort by last modified time
    Searched defs:ignorableWhitespace (Results 26 - 50 of 214) sorted by null

12 3 4 5 6 7 8 9

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
handler.py 168 def ignorableWhitespace(self, whitespace):
saxutils.py 185 def ignorableWhitespace(self, content):
247 def ignorableWhitespace(self, chars):
248 self._cont_handler.ignorableWhitespace(chars)
  /libcore/dom/src/test/java/org/w3c/domts/
XercesHTML2DocumentBuilderFactory.java 157 public void ignorableWhitespace(char ch[], int start, int length) throws
159 htmlBuilder.ignorableWhitespace(ch, start, length);
XercesHTMLDocumentBuilderFactory.java 157 public void ignorableWhitespace(char ch[], int start, int length) throws
159 htmlBuilder.ignorableWhitespace(ch, start, length);
  /libcore/luni/src/main/java/org/xml/sax/helpers/
XMLFilterImpl.java 583 public void ignorableWhitespace (char ch[], int start, int length)
587 contentHandler.ignorableWhitespace(ch, start, length);
ParserAdapter.java 663 * @see org.xml.sax.DocumentHandler#ignorableWhitespace
665 public void ignorableWhitespace (char ch[], int start, int length)
669 contentHandler.ignorableWhitespace(ch, start, length);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
IncrementalSAXSource_Filter.java 265 public void ignorableWhitespace(char[] ch, int start, int length)
274 clientContentHandler.ignorableWhitespace(ch,start,length);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToXMLSAXHandler.java 288 * @see org.xml.sax.ContentHandler#ignorableWhitespace(char[], int, int)
290 public void ignorableWhitespace(char[] arg0, int arg1, int arg2)
293 m_saxHandler.ignorableWhitespace(arg0,arg1,arg2);
ToTextSAXHandler.java 239 * @see org.xml.sax.ContentHandler#ignorableWhitespace(char[], int, int)
241 public void ignorableWhitespace(char[] arg0, int arg1, int arg2)
ToTextStream.java 184 * ignorableWhitespace() method rather than this one (validating
192 * @see #ignorableWhitespace
366 * ignorableWhitespace() method rather than this one (validating
374 * @see #ignorableWhitespace
418 public void ignorableWhitespace(char ch[], int start, int length)
  /cts/tests/tests/util/src/android/util/cts/
XmlEncodingTest.java 72 private static final String STR_IGNORABLE_WHITESPACE_TAG = "ignorableWhitespace:";
234 public void ignorableWhitespace(char[] ch, int start, int length) throws SAXException {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/
pulldom.py 155 def ignorableWhitespace(self, chars):
315 def ignorableWhitespace(self, chars):
316 PullDOM.ignorableWhitespace(self, chars)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/dom/
pulldom.py 155 def ignorableWhitespace(self, chars):
315 def ignorableWhitespace(self, chars):
316 PullDOM.ignorableWhitespace(self, chars)
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTElementProcessor.java 215 public void ignorableWhitespace(
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/
Node.java 336 writer.ignorableWhitespace((String) child);
  /external/libxml2/
legacy.c 122 "SAX function ignorableWhitespace",
243 } else if (!strcmp(name, "SAX function ignorableWhitespace")) {
245 ctxt->sax->ignorableWhitespace;
361 } else if (!strcmp(name, "SAX function ignorableWhitespace")) {
362 ctxt->sax->ignorableWhitespace =
    [all...]
  /external/python/cpython2/Lib/xml/dom/
pulldom.py 155 def ignorableWhitespace(self, chars):
315 def ignorableWhitespace(self, chars):
316 PullDOM.ignorableWhitespace(self, chars)
  /external/python/cpython3/Lib/xml/dom/
pulldom.py 149 def ignorableWhitespace(self, chars):
309 def ignorableWhitespace(self, chars):
310 PullDOM.ignorableWhitespace(self, chars)
  /external/python/cpython3/Lib/xml/sax/
saxutils.py 216 def ignorableWhitespace(self, content):
283 def ignorableWhitespace(self, chars):
284 self._cont_handler.ignorableWhitespace(chars)
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
PYXWriter.java 159 public void ignorableWhitespace(char[] buff, int offset, int length) throws SAXException {
  /frameworks/base/core/java/android/content/
DefaultDataHandler.java 229 public void ignorableWhitespace(char[] ch, int start, int length)
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/
ParserAdapterTest.java 312 adapter.ignorableWhitespace(ch, 0, 5);
318 assertEquals("ignorableWhitespace", logger.getMethod());
XMLFilterImplTest.java 408 parent.ignorableWhitespace(ch, 0, 5);
414 assertEquals("ignorableWhitespace", logger.getMethod());
XMLReaderAdapterTest.java 281 adapter.ignorableWhitespace(ch, 0, 5);
287 assertEquals("ignorableWhitespace", logger.getMethod());
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/dom/
pulldom.py 155 def ignorableWhitespace(self, chars):
315 def ignorableWhitespace(self, chars):
316 PullDOM.ignorableWhitespace(self, chars)

Completed in 1212 milliseconds

12 3 4 5 6 7 8 9