Home
last modified time | relevance | path

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

/third_party/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()
/third_party/node/deps/npm/node_modules/spdx-correct/
Dindex.js297 var lastResort = lastResorts[i]
298 if (upperCased.indexOf(lastResort[SUBSTRING]) > -1) {
299 return lastResort[IDENTIFIER]
/third_party/vk-gl-cts/scripts/
Dgen_egl.py34 logging.lastResort=None
/third_party/vk-gl-cts/scripts/opengl/
Dgen_all.py43 logging.lastResort=None
/third_party/python/Lib/logging/
D__init__.py1243 lastResort = _defaultLastResort variable
1702 if lastResort:
1703 if record.levelno >= lastResort.level:
1704 lastResort.handle(record)
/third_party/python/Lib/test/
Dtest_logging.py4075 old_lastresort = logging.lastResort
4086 logging.lastResort = None
4105 logging.lastResort = old_lastresort
/third_party/python/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``.
/third_party/python/Doc/library/
Dlogging.rst1323 .. attribute:: lastResort
1331 behaviour for some reason, ``lastResort`` can be set to ``None``.
/third_party/python/Doc/whatsnew/
D3.2.rst1197 :attr:`logging.lastResort`.