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.py1141 def shouldFlush(self, record): member in BufferingHandler
1158 if self.shouldFlush(record):
1202 def shouldFlush(self, record): member in MemoryHandler
/external/python/cpython3/Lib/logging/
Dhandlers.py1216 def shouldFlush(self, record): member in BufferingHandler
1233 if self.shouldFlush(record):
1285 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.rst827 by calling :meth:`shouldFlush` to see if the buffer should be flushed. If it
838 Appends the record to the buffer. If :meth:`shouldFlush` returns true,
848 .. method:: shouldFlush(record)
886 .. method:: shouldFlush(record)
/external/python/cpython3/Lib/test/support/
D__init__.py2342 def shouldFlush(self): member in TestHandler
/external/python/cpython3/Lib/test/
Dtest_logging.py596 self.assertTrue(h.shouldFlush(r))
599 self.assertFalse(h.shouldFlush(r))