Home
last modified time | relevance | path

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

12345678910>>...13

/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DDatabaseTestBase.java4 import android.database.Cursor;
5 import android.database.sqlite.SQLiteDatabase;
24 protected SQLiteDatabase database; field in DatabaseTestBase
29 database = SQLiteDatabase.openDatabase("path", null, 0); in setUp()
30 shDatabase = Robolectric.shadowOf(database); in setUp()
31 database.execSQL("CREATE TABLE table_name (\n" + in setUp()
39 database.execSQL("CREATE TABLE rawtable (\n" + in setUp()
47 database.execSQL("CREATE TABLE exectable (\n" + in setUp()
63 database.insert("rawtable", null, values); in setUp()
72 database.insert("rawtable", null, values2); in setUp()
[all …]
DSQLiteOpenHelperTest.java5 import android.database.sqlite.SQLiteDatabase;
6 import android.database.sqlite.SQLiteDatabase.CursorFactory;
7 import android.database.sqlite.SQLiteOpenHelper;
30 SQLiteDatabase database = helper.getReadableDatabase(); in testInitialGetReadableDatabase() local
31 assertInitialDB(database); in testInitialGetReadableDatabase()
36 SQLiteDatabase database = helper.getReadableDatabase(); in testSubsequentGetReadableDatabase() local
38 database = helper.getReadableDatabase(); in testSubsequentGetReadableDatabase()
40 assertSubsequentDB(database); in testSubsequentGetReadableDatabase()
53 SQLiteDatabase database = helper.getWritableDatabase(); in testInitialGetWritableDatabase() local
54 assertInitialDB(database); in testInitialGetWritableDatabase()
[all …]
DSQLiteStatementTest.java3 import android.database.sqlite.SQLiteDatabase;
4 import android.database.sqlite.SQLiteDoneException;
5 import android.database.sqlite.SQLiteStatement;
21 private SQLiteDatabase database; field in SQLiteStatementTest
25 database = SQLiteDatabase.openDatabase("path", null, 0); in setUp()
26 …SQLiteStatement createStatement = database.compileStatement("CREATE TABLE `routine` (`id` INTEGER … in setUp()
29 …SQLiteStatement createStatement2 = database.compileStatement("CREATE TABLE `countme` (`id` INTEGER… in setUp()
35 database.close(); in tearDown()
40 …SQLiteStatement insertStatement = database.compileStatement("INSERT INTO `routine` (`name` ,`lastU… in testExecuteInsert()
52 Statement statement = shadowOf(database).getConnection().createStatement(); in testExecuteInsert()
[all …]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowSQLiteOpenHelper.java4 import android.database.sqlite.SQLiteDatabase;
5 import android.database.sqlite.SQLiteDatabase.CursorFactory;
6 import android.database.sqlite.SQLiteOpenHelper;
20 private static SQLiteDatabase database; field in ShadowSQLiteOpenHelper
23 if (database != null) { in __constructor__()
24 database.close(); in __constructor__()
26 database = null; in __constructor__()
31 if (database != null) { in close()
32 database.close(); in close()
34 database = null; in close()
[all …]
DShadowSQLiteStatement.java3 import android.database.sqlite.SQLiteDatabase;
4 import android.database.sqlite.SQLiteDoneException;
5 import android.database.sqlite.SQLiteStatement;
DShadowSQLiteDatabase.java4 import android.database.Cursor;
5 import android.database.DatabaseUtils;
6 import android.database.sqlite.*;
79 throw new android.database.SQLException(); in insertOrThrow()
183 public void execSQL(String sql) throws android.database.SQLException { in execSQL()
192 android.database.SQLException ase = new android.database.SQLException(); in execSQL()
DShadowDatabaseUtils.java3 import android.database.DatabaseUtils;
4 import android.database.sqlite.SQLiteProgram;
DShadowCursorAdapter.java21 import android.database.ContentObserver;
22 import android.database.Cursor;
23 import android.database.DataSetObserver;
/external/v8/tools/testrunner/local/
Dperfdata.py53 self.database = shelve.open(filename, protocol=2)
62 self.database.close()
73 if key in self.database:
74 return self.database[key].avg
84 if testkey in self.database:
85 entry = self.database[testkey]
89 self.database[testkey] = entry
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/database/
DTestCursor.java1 package com.xtremelabs.robolectric.tester.android.database;
4 import android.database.CharArrayBuffer;
5 import android.database.ContentObserver;
6 import android.database.Cursor;
7 import android.database.DataSetObserver;
/external/wpa_supplicant_8/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
/external/clang/include/clang/Basic/
DBuiltinsLe64.def1 //==- BuiltinsLe64.def - Le64 Builtin function database ----------*- C++ -*-==//
10 // This file defines the Le64-specific builtin function database. Users of this
15 // The format of this database matches clang/Basic/Builtins.def.
DBuiltinsNEON.def1 //===--- BuiltinsNEON.def - NEON Builtin function database ------*- C++ -*-===//
10 // This file defines the NEON-specific builtin function database. Users of
15 // The format of this database matches clang/Basic/Builtins.def.
DBuiltinsXCore.def1 //===--- BuiltinsXCore.def - XCore Builtin function database ----*- C++ -*-===//
10 // This file defines the XCore-specific builtin function database. Users of
15 // The format of this database matches clang/Basic/Builtins.def.
DBuiltinsSystemZ.def1 //===-- BuiltinsSystemZ.def - SystemZ Builtin function database -*- C++ -*-===//
10 // This file defines the SystemZ-specific builtin function database. Users of
15 // The format of this database matches clang/Basic/Builtins.def.
DBuiltinsR600.def1 //==- BuiltinsR600.def - R600 Builtin function database ----------*- C++ -*-==//
10 // This file defines the R600-specific builtin function database. Users of this
15 // The format of this database matches clang/Basic/Builtins.def.
DBuiltinsAArch64.def1 //==- BuiltinsAArch64.def - AArch64 Builtin function database ----*- C++ -*-==//
10 // This file defines the AArch64-specific builtin function database. Users of
15 // The format of this database matches clang/Basic/Builtins.def.
/external/sepolicy/
Daccess_vectors83 # Define a common prefix for userspace database object access vectors.
86 common database
754 inherits database
764 inherits database
775 inherits database
783 inherits database
803 inherits database
843 inherits database
851 inherits database
857 inherits database
[all …]
/external/iproute2/doc/
Darpd.sgml27 <item><tt/-l/ - dump <tt/arpd/ database to stdout and exit. Output consists
33 <item><tt/-f FILE/ - read and load <tt/arpd/ database from <tt/FILE/
35 probably listing resulting database, if option <tt/-l/ is also given.
38 <item><tt/-b DATABASE/ - location of database file. Default location is
76 <p> <tt/arpd/ exits gracefully syncing database and restoring adjusted
78 <tt/SIGHUP/ syncs database to disk. <tt/SIGUSR1/ sends some statistics
80 database and leave <tt/sysctl/ parameters in an unpredictable state.
89 in its database.
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/
DREADME.searchcvs.setup.mysql.txt1 Search CVS is a tool for converting cvs commits into a mysql database, which
2 can be updated without worry of data duplication. The database is then searchable
12 3. Load database tables using .dump files provided.
DREADME.searchcvs.setup.web.txt1 Search CVS is a tool for converting cvs commits into a mysql database, which
2 can be updated without worry of data duplication. The database is then searchable
/external/skia/site/user/
Dissue-tracker.md1 Issue Tracker (bug database)
4 The "Issue Tracker" is the bug database where we track all bug reports and
/external/e2fsprogs/lib/ext2fs/tdb/patches/
Dcopyright10 + trivial database library - standalone version
12 - trivial database library - private includes
/external/harfbuzz_ng/src/hb-ucdn/
DREADME28 required for parsing Unicode database files is licensed under the
39 database file. The script makeunicodedata.py (Python 3.x required)
40 fetches the appropriate files and dumps the compressed database into
/external/svox/pico/src/com/svox/pico/providers/
DSettingsProvider.java20 import android.database.Cursor;
21 import android.database.MatrixCursor;

12345678910>>...13