Home
last modified time | relevance | path

Searched refs:databases (Results 1 – 25 of 186) sorted by relevance

12345678

/external/pigweed/pw_tokenizer/py/pw_tokenizer/
Ddatabase.py207 *databases, argument
213 for db in databases))
259 def _handle_create(databases, database, force, output_type, include, exclude, argument
272 database = tokens.Database.merged(*databases)
287 def _handle_add(token_database, databases): argument
290 for source in databases:
299 def _handle_mark_removed(token_database, databases, date): argument
301 (entry for entry in tokens.Database.merged(*databases).entries()
365 databases: List[tokens.Database] = []
373 databases.extend(_read_elf_with_domain(path, domain))
[all …]
Dserial_detokenizer.py66 def _detokenize_serial(databases: Iterable, device: serial.Serial,
72 detokenizer = detokenize.Detokenizer(tokens.Database.merged(*databases),
Dtokens.py138 def merged(cls, *databases: 'Database') -> 'Database':
141 db.merge(*databases)
237 def merge(self, *databases: 'Database') -> None:
241 for other_db in databases:
Ddetokenize.py449 def _handle_base64(databases, input_file: BinaryIO, output: BinaryIO, argument
459 detokenizer = Detokenizer(tokens.Database.merged(*databases),
/external/pigweed/pw_trace_tokenized/py/pw_trace_tokenized/
Dtrace_tokenized.py144 def get_trace_events(databases, raw_trace_data): argument
147 db = tokens.Database.merged(*databases)
184 def get_trace_events_from_file(databases, input_file_name): argument
187 return get_trace_events(databases, raw_trace_data)
215 events = get_trace_events_from_file(args.databases, args.input_file)
/external/python/cpython2/Doc/library/
Ddbhash.rst13 The :mod:`dbhash` module provides a function to open databases using the BSD
15 modules that provide access to DBM-style databases. The :mod:`bsddb` module is
61 Generic interface to ``dbm``\ -style databases.
76 the DBM-style databases and mapping objects. The following methods are
83 method and the :meth:`!next` method. The traversal is ordered by the databases
Dbsddb.rst132 key and its value. For binary tree databases (opened using :func:`btopen`), if
134 item in sorted order and return that key and value. For other databases,
141 keys in the file is unspecified, except in the case of B-Tree databases. This
148 keys in the file is unspecified, except in the case of B-Tree databases.
154 keys in the file is unspecified, except in the case of B-Tree databases. This
155 is not supported on hashtable databases (those opened with :func:`hashopen`).
161 in the file is unspecified. This is not supported on hashtable databases (those
Ddumbdbm.rst12 .. index:: single: databases
64 Generic interface to ``dbm``\ -style databases.
Dgrp.rst33 the group they are in according to the password database. Check both databases
Ddbm.rst79 Generic interface to ``dbm``\ -style databases.
Danydbm.rst1 :mod:`anydbm` --- Generic access to DBM-style databases
Dshelve.rst15 databases is that the values (not the keys!) in a shelf can be essentially
189 Generic interface to ``dbm``\ -style databases.
Dgdbm.rst127 Generic interface to ``dbm``\ -style databases.
/external/bcc/examples/tracing/
Dmysqld_query_example.txt5 17450463.824042998 mysqld 18608 show databases
/external/tensorflow/tensorflow/core/lib/db/
DBUILD2 # Libraries for storing tensors in SQL databases.
/external/clang/docs/
DJSONCompilationDatabase.rst33 of compilation databases for Unix Makefile builds (Ninja builds in the
39 Clang's tooling interface supports reading compilation databases; see
/external/pigweed/pw_tokenizer/
Ddocs.rst123 database. See `Managing token databases`_.
488 See `Managing token databases`_ for information about the ``database.py``
586 Token databases
588 Token databases store a mapping of tokens to the strings they represent. An ELF
593 Token databases contain the token, removal date (if any), and string for each
648 Managing token databases
650 Token databases are managed with the ``database.py`` script. This script can be
661 etc.), archives (.a), or existing token databases (CSV or binary).
669 databases are great for checking into a source control or for human review.
670 Binary databases are more compact and simpler to parse. The C++ detokenizer
[all …]
/external/llvm-project/clang/docs/
DJSONCompilationDatabase.rst33 of compilation databases for Unix Makefile builds (Ninja builds in the
39 Clang's tooling interface supports reading compilation databases; see
/external/python/cpython3/Doc/library/
Dgrp.rst33 the group they are in according to the password database. Check both databases
Dshelve.rst14 databases is that the values (not the keys!) in a shelf can be essentially
199 Generic interface to ``dbm``-style databases.
/external/bcc/tools/
Dmysqld_qslower_example.txt43 2.050666 18608 0.274 show databases
/external/sqlite/dist/
DAndroid.bp49 // SQLITE_DEFAULT_AUTOVACUUM=1 causes the databases to be subject to auto-vacuum
/external/llvm-project/clang-tools-extra/docs/
Dclang-include-fixer.rst20 To use :program:`clang-include-fixer` two databases are required. Both can be
28 Ideally both databases (``compile_commands.json`` and
/external/llvm-project/llvm/test/tools/llvm-readobj/COFF/
Dcodeview-merging.test93 # Test that we contextually dump item ids and type ids from different databases.
/external/python/cpython2/Doc/howto/
Dwebservers.rst543 performance when handling very large databases consisting of millions of
549 Relational databases are *queried* using a language called `SQL
563 A third possibility are object oriented databases (also called "object
564 databases"). These databases store the object data in a form that closely
569 in relational databases where some objects are very hard to represent.
593 databases

12345678