Home
last modified time | relevance | path

Searched refs:database (Results 1 – 25 of 453) sorted by relevance

12345678910>>...19

/third_party/typescript/tests/baselines/reference/
DdecoratorMetadataWithImportDeclarationNameCollision8.types2 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 …]
DdecoratorMetadataWithImportDeclarationNameCollision6.types11 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 …]
DdecoratorMetadataWithImportDeclarationNameCollision8.symbols2 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))
DdecoratorMetadataWithImportDeclarationNameCollision6.symbols11 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))
DdecoratorMetadataWithImportDeclarationNameCollision8.js10 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])
DdecoratorMetadataWithImportDeclarationNameCollision6.js10 import database from './db';
16 db: database;
18 constructor(db: database) { // no collision argument
/third_party/curl/lib/
Ddict.c181 char *database = NULL; in dict_do() local
204 database = strchr(word, ':'); in dict_do()
205 if(database) { in dict_do()
206 *database++ = (char)0; in dict_do()
207 strategy = strchr(database, ':'); in dict_do()
222 if(!database || (*database == (char)0)) { in dict_do()
223 database = (char *)"!"; in dict_do()
240 database, in dict_do()
259 database = strchr(word, ':'); in dict_do()
260 if(database) { in dict_do()
[all …]
/third_party/python/Doc/library/
Ddbm.rst5 :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 …]
Dspwd.rst1 :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.
Dgrp.rst1 :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.
Dpwd.rst1 :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.
Dsqlite3.rst13 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 …]
/third_party/pulseaudio/src/pulsecore/
Ddatabase-simple.c259 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 …]
/third_party/libsnd/regtest/
DReadme.txt19 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/benchmark/
D.ycm_extra_conf.py35 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/hostapd/
Dhlr_auc_gw.txt1 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_standard/hostapd/
Dhlr_auc_gw.txt1 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/
DdecoratorMetadataWithImportDeclarationNameCollision6.ts13 import database from './db';
19 db: database;
21 constructor(db: database) { // no collision
DdecoratorMetadataWithImportDeclarationNameCollision8.ts13 import database = require('./db');
19 db: database.db;
21 constructor(db: database.db) { // no collision
/third_party/glib/gio/
Dgtlsfiledatabase.c94 GObject *database; in g_tls_file_database_new() local
98 database = g_initable_new (g_tls_backend_get_file_database_type (backend), in g_tls_file_database_new()
102 return G_TLS_DATABASE (database); in g_tls_file_database_new()
Dgtlsconnection.c462 GTlsDatabase *database) in g_tls_connection_set_database() argument
465 g_return_if_fail (database == NULL || G_IS_TLS_DATABASE (database)); in g_tls_connection_set_database()
468 "database", database, in g_tls_connection_set_database()
486 GTlsDatabase *database = NULL; in g_tls_connection_get_database() local
491 "database", &database, in g_tls_connection_get_database()
493 if (database) in g_tls_connection_get_database()
494 g_object_unref (database); in g_tls_connection_get_database()
495 return database; in g_tls_connection_get_database()
Dgdtlsconnection.c346 GTlsDatabase *database) in g_dtls_connection_set_database() argument
349 g_return_if_fail (database == NULL || G_IS_TLS_DATABASE (database)); in g_dtls_connection_set_database()
352 "database", database, in g_dtls_connection_set_database()
370 GTlsDatabase *database = NULL; in g_dtls_connection_get_database() local
375 "database", &database, in g_dtls_connection_get_database()
377 if (database) in g_dtls_connection_get_database()
378 g_object_unref (database); in g_dtls_connection_get_database()
379 return database; in g_dtls_connection_get_database()
Dgtlsbackend.c217 GTlsDatabase *database) in g_tls_backend_set_default_database() argument
220 g_return_if_fail (database == NULL || G_IS_TLS_DATABASE (database)); in g_tls_backend_set_default_database()
223 g_set_object (&default_database, database); in g_tls_backend_set_default_database()
/third_party/node/deps/npm/node_modules/ini/
DREADME.md13 [database]
16 database = use_this_database
32 config.database.database = 'use_another_database'
44 [section.database]
47 database=use_another_database
/third_party/grpc/src/cpp/server/health/
Ddefault_health_check_service.cc154 DefaultHealthCheckService* database, in HealthCheckServiceImpl() argument
156 : database_(database), cq_(std::move(cq)) { in HealthCheckServiceImpl()
269 DefaultHealthCheckService* database, in CreateAndStart() argument
272 std::make_shared<CheckCallHandler>(cq, database, service); in CreateAndStart()
289 DefaultHealthCheckService* database, in CheckCallHandler() argument
291 : cq_(cq), database_(database), service_(service), writer_(&ctx_) {} in CheckCallHandler()
350 DefaultHealthCheckService* database, in CreateAndStart() argument
353 std::make_shared<WatchCallHandler>(cq, database, service); in CreateAndStart()
377 DefaultHealthCheckService* database, in WatchCallHandler() argument
379 : cq_(cq), database_(database), service_(service), stream_(&ctx_) {} in WatchCallHandler()

12345678910>>...19