Home
last modified time | relevance | path

Searched refs:bdb (Results 1 – 25 of 59) sorted by relevance

123

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
DOdexHeaderItem.java115 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()
DHeaderItem.java309 BaseDexBuffer bdb = new BaseDexBuffer(buf);
310 return bdb.readInt(offset + ENDIAN_TAG_OFFSET);
/external/igt-gpu-tools/tools/
Dintel_vbt_decode.c77 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/
Dpdb.py10 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/
Ddebug.rst12 bdb.rst
Dbdb.rst1 :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:
Dpdb.rst23 module: bdb
28 extension interface uses the modules :mod:`bdb` and :mod:`cmd`.
Dconfigparser.rst542 ... skip-bdb
553 >>> config.get("mysqld", "skip-bdb")
/external/python/cpython3/Doc/library/
Ddebug.rst15 bdb.rst
Dbdb.rst1 :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:
Dpdb.rst23 module: bdb
28 extension interface uses the modules :mod:`bdb` and :mod:`cmd`.
Dconfigparser.rst506 ... skip-bdb
518 >>> config["mysqld"]["skip-bdb"]
/external/python/cpython3/Lib/
Dpdb.py75 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/
Dtest_sundry.py13 import bdb
/external/arm-optimized-routines/math/test/testcases/directed/
Dsinf.tst27 func=sinf op1=45d35882 result=3f3509f9.bdb error=0
Dsincosf.tst24 func=sincosf_sinf op1=45d35882 result=3f3509f9.bdb error=0
/external/python/cpython3/Lib/idlelib/
Ddebugger.py1 import bdb
12 class Idb(bdb.Bdb):
16 bdb.Bdb.__init__(self)
/external/python/cpython2/Lib/idlelib/
DDebugger.py2 import bdb
9 class Idb(bdb.Bdb):
13 bdb.Bdb.__init__(self)
/external/python/cpython3/Lib/test/
Dtest_bdb.py51 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/
DSerializableTestUtility.java661 BigDecimal bdb = (BigDecimal) b; in hasSameBehavior() local
663 return bda.toString().equals(bdb.toString()); in hasSameBehavior()
/external/python/cpython2/Misc/
Dmaintainers.rst68 bdb
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
DSerializableTestUtility.java658 BigDecimal bdb = (BigDecimal) b; in hasSameBehavior() local
660 return bda.toString().equals(bdb.toString()); in hasSameBehavior()
/external/python/cpython2/Misc/NEWS.d/
D2.6b3.rst370 while running under the ``-3`` flag: aifc, asynchat, asyncore, bdb, bsddb,
/external/python/cpython3/Misc/NEWS.d/
D3.6.5rc1.rst56 Pdb and other debuggers dependent on bdb.py will correctly step over (next
D3.9.0a4.rst272 Remove obsolete check for `__args__` in bdb.Bdb.format_stack_entry.

123