/third_party/typescript/tests/baselines/reference/ |
D | decoratorMetadataWithImportDeclarationNameCollision8.types | 2 import database = require('./db'); 3 >database : typeof database 18 db: database.db; 19 >db : database.db 20 >database : any 22 constructor(db: database.db) { // no collision 23 >db : database.db 24 >database : any 27 >this.db = db : database.db 28 >this.db : database.db [all …]
|
D | decoratorMetadataWithImportDeclarationNameCollision6.types | 11 import database from './db'; 12 >database : typeof database 27 db: database; 28 >db : database 30 constructor(db: database) { // no collision 31 >db : database 34 >this.db = db : database 35 >this.db : database 37 >db : database 38 >db : database [all …]
|
D | decoratorMetadataWithImportDeclarationNameCollision8.symbols | 2 import database = require('./db'); 3 >database : Symbol(database, Decl(service.ts, 0, 0)) 18 db: database.db; 20 >database : Symbol(database, Decl(service.ts, 0, 0)) 21 >db : Symbol(database.db, Decl(db.ts, 0, 0)) 23 constructor(db: database.db) { // no collision 25 >database : Symbol(database, Decl(service.ts, 0, 0)) 26 >db : Symbol(database.db, Decl(db.ts, 0, 0)) 35 >this.db.doSomething : Symbol(database.db.doSomething, Decl(db.ts, 0, 17)) 39 >doSomething : Symbol(database.db.doSomething, Decl(db.ts, 0, 17))
|
D | decoratorMetadataWithImportDeclarationNameCollision6.symbols | 11 import database from './db'; 12 >database : Symbol(database, Decl(service.ts, 0, 6)) 27 db: database; 29 >database : Symbol(database, Decl(service.ts, 0, 6)) 31 constructor(db: database) { // no collision 33 >database : Symbol(database, Decl(service.ts, 0, 6)) 42 >this.db.doSomething : Symbol(database.doSomething, Decl(db.ts, 0, 25)) 46 >doSomething : Symbol(database.doSomething, Decl(db.ts, 0, 25))
|
D | decoratorMetadataWithImportDeclarationNameCollision8.js | 10 import database = require('./db'); 16 db: database.db; 18 constructor(db: database.db) { // no collision 42 var database = require("./db"); variable 53 __metadata("design:paramtypes", [database.db])
|
D | decoratorMetadataWithImportDeclarationNameCollision6.js | 10 import database from './db'; 16 db: database; 18 constructor(db: database) { // no collision argument
|
/third_party/curl/lib/ |
D | dict.c | 176 char *database = NULL; in dict_do() local 200 database = strchr(word, ':'); in dict_do() 201 if(database) { in dict_do() 202 *database++ = (char)0; in dict_do() 203 strategy = strchr(database, ':'); in dict_do() 218 if(!database || (*database == (char)0)) { in dict_do() 219 database = (char *)"!"; in dict_do() 238 database, in dict_do() 255 database = strchr(word, ':'); in dict_do() 256 if(database) { in dict_do() [all …]
|
/third_party/python/Doc/library/ |
D | dbm.rst | 5 :synopsis: Interfaces to various Unix "database" formats. 11 :mod:`dbm` is a generic interface to variants of the DBM database --- 27 This function attempts to guess which of the several simple database modules 39 Open the database file *file* and return a corresponding object. 41 If the database file already exists, the :func:`whichdb` function is used to 50 | ``'r'`` | Open existing database for reading only | 53 | ``'w'`` | Open existing database for reading and | 56 | ``'c'`` | Open database for reading and writing, | 59 | ``'n'`` | Always create a new, empty database, open | 64 database has to be created. It defaults to octal ``0o666`` (and will be [all …]
|
D | spwd.rst | 1 :mod:`spwd` --- The shadow password database 6 :synopsis: The shadow password database (getspnam() and friends). 10 This module provides access to the Unix shadow password database. It is 13 You must have enough privileges to access the shadow password database (this 16 Shadow password database entries are reported as a tuple-like object, whose 56 Return the shadow password database entry for the given user name. 64 Return a list of all available shadow password database entries, in arbitrary 71 An interface to the group database, similar to this. 74 An interface to the normal password database, similar to this.
|
D | grp.rst | 1 :mod:`grp` --- The group database 6 :synopsis: The group database (getgrnam() and friends). 10 This module provides access to the Unix group database. It is available on all 13 Group database entries are reported as a tuple-like object, whose attributes 33 the group they are in according to the password database. Check both databases 43 Return the group database entry for the given numeric group ID. :exc:`KeyError` 52 Return the group database entry for the given group name. :exc:`KeyError` is 64 An interface to the user database, similar to this. 67 An interface to the shadow password database, similar to this.
|
D | pwd.rst | 1 :mod:`pwd` --- The password database 6 :synopsis: The password database (getpwnam() and friends). 10 This module provides access to the Unix user account and password database. It 13 Password database entries are reported as a tuple-like object, whose attributes 56 Return the password database entry for the given numeric user ID. 61 Return the password database entry for the given user name. 66 Return a list of all available password database entries, in arbitrary order. 72 An interface to the group database, similar to this. 75 An interface to the shadow password database, similar to this.
|
D | sqlite3.rst | 13 SQLite is a C library that provides a lightweight disk-based database that 14 doesn't require a separate server process and allows accessing the database 17 application using SQLite and then port the code to a larger database such as 25 represents the database. Here the data will be stored in the 32 database in RAM. 211 .. function:: connect(database[, timeout, detect_types, isolation_level, check_same_thread, factory… 213 Opens a connection to the SQLite database file *database*. By default returns a 216 *database* is a :term:`path-like object` giving the pathname (absolute or 217 relative to the current working directory) of the database file to be opened. 218 You can use ``":memory:"`` to open a database connection to a database that [all …]
|
D | shelve.rst | 23 the underlying database. As a side-effect, an extension may be added to the 25 database file is opened for reading and writing. The optional *flag* parameter 98 * The choice of which database package will be used (such as :mod:`dbm.ndbm` or 100 safe to open the database directly using :mod:`dbm`. The database is also 103 database should be fairly small, and in rare cases key collisions may cause 104 the database to refuse updates. 110 differs across Unix versions and requires knowledge about the database 152 <https://www.jcea.es/programacion/pybsddb.htm>`_ but not in other database
|
/third_party/pulseaudio/src/pulsecore/ |
D | database-simple.c | 259 void pa_database_close(pa_database *database) { in pa_database_close() argument 260 simple_data *db = (simple_data*)database; in pa_database_close() 263 pa_database_sync(database); in pa_database_close() 270 pa_datum* pa_database_get(pa_database *database, const pa_datum *key, pa_datum* data) { in pa_database_get() argument 271 simple_data *db = (simple_data*)database; in pa_database_get() 289 int pa_database_set(pa_database *database, const pa_datum *key, const pa_datum* data, bool overwrit… in pa_database_set() argument 290 simple_data *db = (simple_data*)database; in pa_database_set() 321 int pa_database_unset(pa_database *database, const pa_datum *key) { in pa_database_unset() argument 322 simple_data *db = (simple_data*)database; in pa_database_unset() 330 int pa_database_clear(pa_database *database) { in pa_database_clear() argument [all …]
|
D | meson.build | 17 'database.c', 76 'database.h', 116 if get_option('database') == 'tdb' 117 libpulsecore_sources += 'database-tdb.c' 119 elif get_option('database') == 'gdbm' 120 libpulsecore_sources += 'database-gdbm.c' 123 libpulsecore_sources += 'database-simple.c'
|
/third_party/libsnd/regtest/ |
D | Readme.txt | 19 their own personal database. Then, as new versions of libsndfile come 20 out, the user should test the new library version against their database 23 Any files which were successfully added to the database in the past but 31 The regression test program uses sqlite3 as the database engine. On 48 The regession test program keeps its database file in the directory it 49 is run from. In addition, the database only contains information about 52 This means that database file should probably be kept in the same 66 Files can then be added to the database using the command: 78 One or more files that have already been added to the database can be 83 It is also possible to check all files in the database using: [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | h274.c | 104 static void init_slice(H274FilmGrainDatabase *database, uint8_t h, uint8_t v) in init_slice() argument 106 if (database->residency[h] & (1 << v)) in init_slice() 109 database->residency[h] |= (1 << v); in init_slice() 110 init_slice_c(database->db[h][v], h, v, database->slice_tmp); in init_slice() 158 H274FilmGrainDatabase *database, in generate() argument 196 init_slice(database, h, v); in generate() 203 &database->db[h][v][y_offset][x_offset]); in generate() 218 H274FilmGrainDatabase *database, in ff_h274_apply_film_grain() argument 273 database, &h274, c, invert, (x+xx) > 0, in ff_h274_apply_film_grain()
|
/third_party/benchmark/ |
D | .ycm_extra_conf.py | 35 database = ycm_core.CompilationDatabase( compilation_database_folder ) variable 37 database = None variable 89 compilation_info = database.GetCompilationInfoForFile( 94 return database.GetCompilationInfoForFile( filename ) 98 if database:
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hostapd/ |
D | hlr_auc_gw.txt | 1 HLR/AuC testing gateway for hostapd EAP-SIM/AKA database/authenticator 4 database/authentication gateway interface to HLR/AuC. It could be 18 database for more dynamic operations. This is enabled by adding 36 -D<DB file> = path to SQLite database 40 The SQLite database can be initialized with sqlite, e.g., by running 67 pseudonyms and reauth information into a SQLite database. This is 73 Milenage parameters based on IMSI from the database. The database can be
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/hostapd/ |
D | hlr_auc_gw.txt | 1 HLR/AuC testing gateway for hostapd EAP-SIM/AKA database/authenticator 4 database/authentication gateway interface to HLR/AuC. It could be 18 database for more dynamic operations. This is enabled by adding 36 -D<DB file> = path to SQLite database 40 The SQLite database can be initialized with sqlite, e.g., by running 67 pseudonyms and reauth information into a SQLite database. This is 73 Milenage parameters based on IMSI from the database. The database can be
|
/third_party/typescript/tests/cases/compiler/ |
D | decoratorMetadataWithImportDeclarationNameCollision6.ts | 13 import database from './db'; 19 db: database; 21 constructor(db: database) { // no collision
|
D | decoratorMetadataWithImportDeclarationNameCollision8.ts | 13 import database = require('./db'); 19 db: database.db; 21 constructor(db: database.db) { // no collision
|
/third_party/protobuf/python/google/protobuf/pyext/ |
D | descriptor_pool.cc | 113 cpool->database = NULL; in _CreateDescriptorPool() 154 DescriptorDatabase* database) { in PyDescriptorPool_NewWithDatabase() argument 159 if (database != NULL) { in PyDescriptorPool_NewWithDatabase() 161 cpool->pool = new DescriptorPool(database, cpool->error_collector); in PyDescriptorPool_NewWithDatabase() 162 cpool->database = database; in PyDescriptorPool_NewWithDatabase() 184 DescriptorDatabase* database = NULL; in New() local 186 database = new PyDescriptorDatabase(py_database); in New() 189 PyDescriptorPool_NewWithDatabase(database)); in New() 202 delete self->database; in Dealloc() 577 if (self->database != NULL) { in AddSerializedFile()
|
/third_party/ltp/testcases/open_posix_testsuite/Documentation/ |
D | HOWTO_BugReporting | 20 - Bug database for the code under test. 22 - Kernel bug database - http://bugme.osdl.org 41 its bug database, if applicable). Copy LKML, if applicable. [If it 43 bug database.]
|
/third_party/openssl/doc/man3/ |
D | SSL_CTX_sessions.pod | 21 L<LHASH(3)> type database. It is possible to directly 22 access this database e.g. for searching. In parallel, the sessions 24 L<LHASH(3)> operations, so that the database must not be
|