Searched refs:levelno (Results 1 – 13 of 13) sorted by relevance
/external/pdfium/third_party/libopenjpeg20/ |
D | pi.c | 384 OPJ_UINT32 levelno; in opj_pi_next_rpcl() local 394 levelno = comp->numresolutions - 1 - pi->resno; in opj_pi_next_rpcl() 398 if (levelno >= 32 || in opj_pi_next_rpcl() 399 ((comp->dx << levelno) >> levelno) != comp->dx || in opj_pi_next_rpcl() 400 ((comp->dy << levelno) >> levelno) != comp->dy) { in opj_pi_next_rpcl() 403 if ((comp->dx << levelno) > INT_MAX || in opj_pi_next_rpcl() 404 (comp->dy << levelno) > INT_MAX) { in opj_pi_next_rpcl() 407 trx0 = opj_int_ceildiv(pi->tx0, (OPJ_INT32)(comp->dx << levelno)); in opj_pi_next_rpcl() 408 try0 = opj_int_ceildiv(pi->ty0, (OPJ_INT32)(comp->dy << levelno)); in opj_pi_next_rpcl() 409 trx1 = opj_int_ceildiv(pi->tx1, (OPJ_INT32)(comp->dx << levelno)); in opj_pi_next_rpcl() [all …]
|
D | 0009-opj_pi_next.patch | 6 … (OPJ_INT32)(comp->dy << levelno)), (OPJ_INT32)res->pdy) 16 … (OPJ_INT32)(comp->dy << levelno)), (OPJ_INT32)res->pdy) 26 … (OPJ_INT32)(comp->dy << levelno)), (OPJ_INT32)res->pdy)
|
/external/autotest/client/common_lib/ |
D | logging_config.py | 30 return record.levelno < self.level
|
/external/python/cpython3/Lib/logging/ |
D | __init__.py | 309 self.levelno = level 351 return '<LogRecord: %s, %s, %s, %s, "%s">'%(self.name, self.levelno, 1648 if record.levelno >= hdlr.level: 1656 if record.levelno >= lastResort.level:
|
D | handlers.py | 1111 return self.typemap.get(record.levelno, self.deftype) 1321 (record.levelno >= self.flushLevel) 1496 process = record.levelno >= handler.level
|
/external/python/cpython2/Lib/logging/ |
D | __init__.py | 268 self.levelno = level 309 return '<LogRecord: %s, %s, %s, %s, "%s">'%(self.name, self.levelno, 1342 if record.levelno >= hdlr.level:
|
D | handlers.py | 1031 return self.typemap.get(record.levelno, self.deftype) 1207 (record.levelno >= self.flushLevel)
|
/external/python/cpython3/Lib/test/ |
D | test_logging.py | 436 return record.levelno != GARRULOUS 443 return record.levelno not in [SOCIABLE, TACITURN] 3562 self.assertTrue(handler.matches(levelno=logging.WARNING, message='1')) 3563 self.assertTrue(handler.matches(levelno=logging.ERROR, message='2')) 3564 self.assertTrue(handler.matches(levelno=logging.CRITICAL, message='3')) 3580 self.assertFalse(handler.matches(levelno=logging.WARNING, message='4')) 3581 self.assertFalse(handler.matches(levelno=logging.ERROR, message='5')) 3582 self.assertTrue(handler.matches(levelno=logging.CRITICAL, message='6')) 4218 self.assertEqual(record.levelno, expected_level) 4720 self.assertEqual(record.levelno, logging.ERROR) [all …]
|
/external/fonttools/Lib/fontTools/misc/ |
D | loggingTools.py | 79 fmt = self.custom_formats.get(record.levelno, self.default_format)
|
/external/python/cpython2/Lib/test/ |
D | test_logging.py | 350 return record.levelno != GARRULOUS 357 return record.levelno not in [SOCIABLE, TACITURN]
|
/external/python/cpython2/Doc/library/ |
D | logging.rst | 580 ``levelno`` for the numeric value and ``levelname`` for the 649 | levelno | ``%(levelno)s`` | Numeric logging level for the message |
|
/external/python/cpython3/Doc/library/ |
D | logging.rst | 707 ``levelno`` for the numeric value and ``levelname`` for the 810 | levelno | ``%(levelno)s`` | Numeric logging level for the message |
|
/external/python/cpython3/Doc/howto/ |
D | logging-cookbook.rst | 1500 if logger.isEnabledFor(record.levelno): 2954 color = self.COLORS.get(record.levelno, 'black')
|