Home
last modified time | relevance | path

Searched refs:shouldFlush (Results 1 – 12 of 12) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xml/serializer/
DToUnknownStream.java382 public boolean startPrefixMapping(String prefix, String uri, boolean shouldFlush) in startPrefixMapping() argument
388 if (m_firstElementName != null && shouldFlush) in startPrefixMapping()
395 pushed = m_handler.startPrefixMapping(prefix, uri, shouldFlush); in startPrefixMapping()
417 pushed = m_handler.startPrefixMapping(prefix, uri, shouldFlush); in startPrefixMapping()
DExtendedContentHandler.java171 boolean shouldFlush) in startPrefixMapping() argument
DToXMLSAXHandler.java336 boolean shouldFlush) in startPrefixMapping() argument
348 if (shouldFlush) in startPrefixMapping()
DToTextSAXHandler.java390 boolean shouldFlush) in startPrefixMapping() argument
DToTextStream.java603 boolean shouldFlush) in startPrefixMapping() argument
DToStream.java564 boolean shouldFlush = m_shouldFlush; in setOutputFormat()
609 m_shouldFlush = shouldFlush; in setOutputFormat()
2326 boolean shouldFlush) in startPrefixMapping() argument
2338 if (shouldFlush) in startPrefixMapping()
/external/python/cpython2/Lib/logging/
Dhandlers.py1126 def shouldFlush(self, record): member in BufferingHandler
1143 if self.shouldFlush(record):
1187 def shouldFlush(self, record): member in MemoryHandler
/external/python/cpython3/Lib/logging/
Dhandlers.py1195 def shouldFlush(self, record): member in BufferingHandler
1212 if self.shouldFlush(record):
1264 def shouldFlush(self, record): member in MemoryHandler
/external/python/cpython2/Doc/library/
Dlogging.handlers.rst663 by calling :meth:`shouldFlush` to see if the buffer should be flushed. If it
674 Appends the record to the buffer. If :meth:`shouldFlush` returns true,
684 .. method:: shouldFlush(record)
716 .. method:: shouldFlush(record)
/external/python/cpython3/Doc/library/
Dlogging.handlers.rst814 by calling :meth:`shouldFlush` to see if the buffer should be flushed. If it
825 Appends the record to the buffer. If :meth:`shouldFlush` returns true,
835 .. method:: shouldFlush(record)
873 .. method:: shouldFlush(record)
/external/python/cpython3/Lib/test/support/
D__init__.py2187 def shouldFlush(self): member in TestHandler
/external/python/cpython3/Lib/test/
Dtest_logging.py585 self.assertTrue(h.shouldFlush(r))
588 self.assertFalse(h.shouldFlush(r))