Home
last modified time | relevance | path

Searched refs:table (Results 1 – 17 of 17) sorted by relevance

/cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/db/
DDatabase.java49 for (Table table : getTables()) { in Database()
50 db.execSQL(table.createTableSql()); in Database()
88 public Cursor query(String table, String[] projection, String selection, String[] selectionArgs, in query() argument
91 .query(table, projection, selection, selectionArgs, null /* groupBy */, in query()
103 public long insert(String table, ContentValues values) { in insert() argument
104 return mHelper.getWritableDatabase().insert(table, null /* nullColumnHack */, values); in insert()
118 public int delete(String table, String selection, String[] selectionArgs) { in delete() argument
119 return mHelper.getWritableDatabase().delete(table, selection, selectionArgs); in delete()
134 public int update(String table, ContentValues values, String selection, in update() argument
136 return mHelper.getWritableDatabase().update(table, values, selection, selectionArgs); in update()
/cts/apps/CtsVerifier/assets/report/
Dcompatibility_result.css25 table.title {
33 table.summary {
41 table.summary th {
47 table.summary td {
54 table.testsummary {
61 table.testsummary th {
67 table.testsummary td {
73 table.testdetails {
85 table.testdetails th {
92 table.testdetails td {
[all …]
/cts/tests/tests/database/src/android/database/sqlite/cts/
DSQLiteFtsTest.java104 private void prepareFtsTable(String table, String ftsType, String options) in prepareFtsTable() argument
107 "CREATE VIRTUAL TABLE " + table + " USING " + ftsType in prepareFtsTable()
115 mDatabase.insert(table, null, values); in prepareFtsTable()
119 private Cursor queryFtsTable(String table, String match) { in queryFtsTable() argument
120 return mDatabase.query(table, new String[] { "snippet(" + table + ")" }, in queryFtsTable()
/cts/tests/tests/widget/src/android/widget/cts/
DGridLayoutTest.java204 View[][] table = new View[N + 1][M + 1]; in populate() local
222 table[row][0] = v; in populate()
233 table[0][col] = v; in populate()
247 table[row][col] = v; in populate()
250 return table; in populate()
262 private void verifyGridAlignment(GridLayout p, View[][] table) { in verifyGridAlignment() argument
272 View v0 = table[0][col]; in verifyGridAlignment()
276 verifyCellAlignment(row, col, alignment, v0, table[row][col], "column"); in verifyGridAlignment()
283 View v0 = table[row][0]; in verifyGridAlignment()
287 verifyCellAlignment(row, col, alignment, v0, table[row][col], "row"); in verifyGridAlignment()
[all …]
/cts/tests/framework/base/windowmanager/src/android/server/wm/intent/
DPersistence.java95 Map<String, IntentFlag> table, String name) throws JSONException { in fromJson() argument
96 return new TestCase(Setup.fromJson(object.getJSONObject(SETUP_KEY), table), in fromJson()
154 Map<String, IntentFlag> table) throws JSONException { in fromJson() argument
156 object.getJSONArray(INITIAL_INTENT_KEY), table); in fromJson()
157 List<GenerationIntent> act = intentsFromJson(object.getJSONArray(ACT_KEY), table); in fromJson()
174 Map<String, IntentFlag> table) throws JSONException { in intentsFromJson() argument
179 GenerationIntent intent = GenerationIntent.fromJson(object, table); in intentsFromJson()
210 static GenerationIntent fromJson(JSONObject object, Map<String, IntentFlag> table) in fromJson() argument
213 return LaunchFromIntent.fromJson(object, table); in fromJson()
215 return LaunchIntent.fromJson(object, table); in fromJson()
[all …]
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/
Dluts_for_speedup_f32.rsh10 // A lookup table that heuristically computes the probability that a layer with
62 // A lookup table that pre-computes x coordinate of the intersection between a
Dlayered_filter_f32_helper.rsh76 // Gets the visibility probability lookup table for the target layer depth.
Dlayered_filter_fast_f32.rscript4 // This is a speedup version of layered_filter_f32.rs using summation table.
259 // Gets the visibility probability lookup table for the target layer depth.
Dlayered_filter_d1new_helper.rsh136 // Gets the visibility probability lookup table for the target layer depth.
Dlayered_filter_fast_d1new.rscript4 // This is a speedup version of layered_filter_f32.rs using summation table.
347 // Gets the visibility probability lookup table for the target layer depth.
/cts/tests/tests/content/src/android/content/cts/
DMockContentProvider.java222 String table; in insert() local
235 table = "TestTable1"; in insert()
239 table = "TestTable2"; in insert()
247 rowID = db.insert(table, "key", values); in insert()
/cts/tests/tests/bionic/
DAndroid.build.copy.libs.mk52 libgnu-hash-table-library.so \
62 libsysv-hash-table-library.so \
/cts/tests/tests/provider/src/android/provider/cts/settings/
DSettingsTest.java164 private void tryBadTableAccess(String table, String goodtable, String name) { in tryBadTableAccess() argument
167 Uri uri = Uri.parse("content://settings/" + table); in tryBadTableAccess()
/cts/tests/tests/media/src/android/media/cts/
DEncodeVirtualDisplayWithCompositionTestImpl.java1259 TableLayout table = new TableLayout(ctx); in onCreate() local
1266 table.setLayoutParams(fill); in onCreate()
1267 table.setStretchAllColumns(true); in onCreate()
1275 table.addView(row, fillTable); in onCreate()
1277 setContentView(table); in onCreate()
/cts/tests/tests/keystore/src/android/keystore/cts/
DTestUtils.java414 private static <T> List<T> frequencyTableToValues(Map<T, Integer> table) { in frequencyTableToValues() argument
415 if (table.isEmpty()) { in frequencyTableToValues()
421 for (Map.Entry<T, Integer> entry : table.entrySet()) { in frequencyTableToValues()
/cts/tools/release-parser/proto/
Drelease.proto237 // The lookup table offset in the oat file. Set in WriteTypeLookupTables.
/cts/tests/camera/src/android/hardware/camera2/cts/
DRobustnessTest.java2269 for (int[][] table : tables) { in validityCheckConfigurationTables()
2271 for (int[] row : table) { in validityCheckConfigurationTables()