Home
last modified time | relevance | path

Searched refs:lastResort (Results 1 – 11 of 11) sorted by relevance

/external/cronet/third_party/icu/source/test/intltest/
Dtsdcfmsy.cpp218 LocalPointer<DecimalFormatSymbols> lastResort( in testLastResortData() local
230 if(*lastResort == root) { in testLastResortData()
235 "", lastResort->getSymbol(DecimalFormatSymbols::kGroupingSeparatorSymbol)); in testLastResortData()
236 lastResort->setSymbol(DecimalFormatSymbols::kGroupingSeparatorSymbol, ","); in testLastResortData()
238 "", lastResort->getSymbol(DecimalFormatSymbols::kMonetaryGroupingSeparatorSymbol)); in testLastResortData()
239 lastResort->setSymbol(DecimalFormatSymbols::kMonetaryGroupingSeparatorSymbol, ","); in testLastResortData()
241 … UnicodeString((UChar)0xfffd), lastResort->getSymbol(DecimalFormatSymbols::kNaNSymbol)); in testLastResortData()
242 lastResort->setSymbol(DecimalFormatSymbols::kNaNSymbol, "NaN"); in testLastResortData()
246 assertEquals("last-resort symbol vs. root", root.getSymbol(e), lastResort->getSymbol(e)); in testLastResortData()
250 Verify(1234567.25, "#,##0.##", *lastResort, "1,234,567.25"); in testLastResortData()
/external/icu/icu4c/source/test/intltest/
Dtsdcfmsy.cpp218 LocalPointer<DecimalFormatSymbols> lastResort( in testLastResortData() local
230 if(*lastResort == root) { in testLastResortData()
235 "", lastResort->getSymbol(DecimalFormatSymbols::kGroupingSeparatorSymbol)); in testLastResortData()
236 lastResort->setSymbol(DecimalFormatSymbols::kGroupingSeparatorSymbol, ","); in testLastResortData()
238 "", lastResort->getSymbol(DecimalFormatSymbols::kMonetaryGroupingSeparatorSymbol)); in testLastResortData()
239 lastResort->setSymbol(DecimalFormatSymbols::kMonetaryGroupingSeparatorSymbol, ","); in testLastResortData()
241 … UnicodeString((UChar)0xfffd), lastResort->getSymbol(DecimalFormatSymbols::kNaNSymbol)); in testLastResortData()
242 lastResort->setSymbol(DecimalFormatSymbols::kNaNSymbol, "NaN"); in testLastResortData()
246 assertEquals("last-resort symbol vs. root", root.getSymbol(e), lastResort->getSymbol(e)); in testLastResortData()
250 Verify(1234567.25, "#,##0.##", *lastResort, "1,234,567.25"); in testLastResortData()
/external/pigweed/pw_console/py/pw_console/
Dpython_logging.py63 logging.lastResort = logging.FileHandler(log_file)
86 if logging.lastResort is not None:
/external/deqp/scripts/
Dgen_egl.py34 logging.lastResort=None
/external/deqp/scripts/opengl/
Dgen_all.py43 logging.lastResort=None
/external/python/cpython3/Lib/logging/
D__init__.py1243 lastResort = _defaultLastResort variable
1702 if lastResort:
1703 if record.levelno >= lastResort.level:
1704 lastResort.handle(record)
/external/python/cpython3/Lib/test/
Dtest_logging.py4075 old_lastresort = logging.lastResort
4086 logging.lastResort = None
4105 logging.lastResort = old_lastresort
/external/python/cpython3/Doc/howto/
Dlogging.rst787 ``logging.lastResort``. This internal handler is not associated with any
795 To obtain the pre-3.2 behaviour, ``logging.lastResort`` can be set to ``None``.
/external/python/cpython3/Doc/library/
Dlogging.rst1323 .. attribute:: lastResort
1331 behaviour for some reason, ``lastResort`` can be set to ``None``.
/external/python/cpython3/Doc/whatsnew/
D3.2.rst1197 :attr:`logging.lastResort`.
/external/fonttools/
DNEWS.rst1483 - [py23/loggingTools] Don't automatically set ``logging.lastResort`` handler