/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/ |
D | OdexHeaderItem.java | 115 BaseDexBuffer bdb = new BaseDexBuffer(buf); in getDexOffset() local 116 return bdb.readSmallUint(DEX_OFFSET); in getDexOffset() 120 BaseDexBuffer bdb = new BaseDexBuffer(buf); in getDependenciesOffset() local 121 return bdb.readSmallUint(DEPENDENCIES_OFFSET); in getDependenciesOffset()
|
D | HeaderItem.java | 309 BaseDexBuffer bdb = new BaseDexBuffer(buf); 310 return bdb.readInt(offset + ENDIAN_TAG_OFFSET);
|
/external/igt-gpu-tools/tools/ |
D | intel_vbt_decode.c | 77 const struct bdb_header *bdb; member 98 const struct bdb_header *bdb = context->bdb; in find_section() local 101 const uint8_t *base = (const uint8_t *)bdb; in find_section() 107 index += bdb->header_size; in find_section() 108 total = bdb->bdb_size; in find_section() 188 if (context->bdb->version >= 183) in dump_general_features() 196 if (context->bdb->version >= 181) in dump_general_features() 199 if (context->bdb->version >= 160) { in dump_general_features() 435 if (context->bdb->version < 152) { in dump_child_device() 461 if (context->bdb->version < 155) { in dump_child_device() [all …]
|
/external/python/cpython2/Lib/ |
D | pdb.py | 10 import bdb 59 class Pdb(bdb.Bdb, cmd.Cmd): 62 bdb.Bdb.__init__(self, skip=skip) 108 bdb.Bdb.reset(self) 323 bnum = len(bdb.Breakpoint.bpbynumber)-1 349 for bp in bdb.Breakpoint.bpbynumber: 502 if not (0 <= i < len(bdb.Breakpoint.bpbynumber)): 506 bp = bdb.Breakpoint.bpbynumber[i] 519 if not (0 <= i < len(bdb.Breakpoint.bpbynumber)): 523 bp = bdb.Breakpoint.bpbynumber[i] [all …]
|
/external/python/cpython2/Doc/library/ |
D | debug.rst | 12 bdb.rst
|
D | bdb.rst | 1 :mod:`bdb` --- Debugger framework 4 .. module:: bdb 7 **Source code:** :source:`Lib/bdb.py` 11 The :mod:`bdb` module handles basic debugger functions, like setting breakpoints 21 The :mod:`bdb` module also defines two classes:
|
D | pdb.rst | 23 module: bdb 28 extension interface uses the modules :mod:`bdb` and :mod:`cmd`.
|
D | configparser.rst | 542 ... skip-bdb 553 >>> config.get("mysqld", "skip-bdb")
|
/external/python/cpython3/Doc/library/ |
D | debug.rst | 15 bdb.rst
|
D | bdb.rst | 1 :mod:`bdb` --- Debugger framework 4 .. module:: bdb 7 **Source code:** :source:`Lib/bdb.py` 11 The :mod:`bdb` module handles basic debugger functions, like setting breakpoints 21 The :mod:`bdb` module also defines two classes:
|
D | pdb.rst | 23 module: bdb 28 extension interface uses the modules :mod:`bdb` and :mod:`cmd`.
|
D | configparser.rst | 506 ... skip-bdb 518 >>> config["mysqld"]["skip-bdb"]
|
/external/python/cpython3/Lib/ |
D | pdb.py | 75 import bdb 138 class Pdb(bdb.Bdb, cmd.Cmd): 144 bdb.Bdb.__init__(self, skip=skip) 197 bdb.Bdb.reset(self) 489 return [str(i) for i, bp in enumerate(bdb.Breakpoint.bpbynumber) 559 bnum = len(bdb.Breakpoint.bpbynumber) - 1 618 for bp in bdb.Breakpoint.bpbynumber: 881 bplist = [bp for bp in bdb.Breakpoint.bpbynumber if bp]
|
/external/python/cpython2/Lib/test/ |
D | test_sundry.py | 13 import bdb
|
/external/arm-optimized-routines/math/test/testcases/directed/ |
D | sinf.tst | 27 func=sinf op1=45d35882 result=3f3509f9.bdb error=0
|
D | sincosf.tst | 24 func=sincosf_sinf op1=45d35882 result=3f3509f9.bdb error=0
|
/external/python/cpython3/Lib/idlelib/ |
D | debugger.py | 1 import bdb 12 class Idb(bdb.Bdb): 16 bdb.Bdb.__init__(self)
|
/external/python/cpython2/Lib/idlelib/ |
D | Debugger.py | 2 import bdb 9 class Idb(bdb.Bdb): 13 bdb.Bdb.__init__(self)
|
/external/python/cpython3/Lib/test/ |
D | test_bdb.py | 51 import bdb as _bdb 737 bdb = Bdb(skip=['anything*']) 738 self.assertIs(bdb.is_skipped_module(None), False)
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/ |
D | SerializableTestUtility.java | 661 BigDecimal bdb = (BigDecimal) b; in hasSameBehavior() local 663 return bda.toString().equals(bdb.toString()); in hasSameBehavior()
|
/external/python/cpython2/Misc/ |
D | maintainers.rst | 68 bdb
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/ |
D | SerializableTestUtility.java | 658 BigDecimal bdb = (BigDecimal) b; in hasSameBehavior() local 660 return bda.toString().equals(bdb.toString()); in hasSameBehavior()
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.6b3.rst | 370 while running under the ``-3`` flag: aifc, asynchat, asyncore, bdb, bsddb,
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.5rc1.rst | 56 Pdb and other debuggers dependent on bdb.py will correctly step over (next
|
D | 3.9.0a4.rst | 272 Remove obsolete check for `__args__` in bdb.Bdb.format_stack_entry.
|