HomeSort by relevance Sort by last modified time
    Searched refs:TABLE (Results 1 - 25 of 168) sorted by null

1 2 3 4 5 6 7

  /external/zlib/src/contrib/infback9/
inflate9.h 15 TABLE, /* i: waiting for dynamic block table lengths */
27 TYPE -> STORED or TABLE or LEN or DONE
29 TABLE -> LENLENS -> CODELENS -> LEN
38 /* dynamic table building */
45 unsigned short work[288]; /* work area for code table building */
  /packages/apps/Gallery2/src/com/android/photos/data/
PhotoProvider.java 71 * Internal database table used for account information
73 public static final String TABLE = "accounts";
77 public static final Uri CONTENT_URI = Uri.withAppendedPath(BASE_CONTENT_URI, TABLE);
94 /** Internal database table used for basic photo information. */
95 public static final String TABLE = "photos";
97 public static final Uri CONTENT_URI = Uri.withAppendedPath(BASE_CONTENT_URI, TABLE);
133 /** Internal database table used album information. */
134 public static final String TABLE = "albums";
136 public static final Uri CONTENT_URI = Uri.withAppendedPath(BASE_CONTENT_URI, TABLE);
170 /** Internal database table used metadata information. *
295 String table = getTableFromMatch(match, uri); local
320 String table = getTableFromMatch(match, uri); local
339 String table = getTableFromMatch(match, uri); local
391 String table; local
498 String table = getTableFromMatch(match, uri); local
    [all...]
MediaCacheDatabase.java 34 /** Internal database table used for the media cache */
35 public static final String TABLE = "media_cache";
68 public static final String CREATE_TABLE = "CREATE TABLE " + TABLE + "("
76 public static final String DROP_TABLE = "DROP TABLE IF EXISTS " + TABLE;
120 Cursor cursor = db.query(TABLE, PROJECTION_ID, where, whereArgs, null, null, null);
134 db.update(TABLE, values, Columns._ID + " = ?", updateArgs);
150 Cursor cursor = db.query(TABLE, PROJECTION_CACHED, where, whereArgs, null, null, orderBy);
171 long id = db.insert(TABLE, null, values)
    [all...]
PhotoDatabase.java 39 private static final String SQL_CREATE_TABLE = "CREATE TABLE ";
88 createTable(db, Accounts.TABLE, getAccountTableDefinition());
89 createTable(db, Albums.TABLE, getAlbumTableDefinition());
90 createTable(db, Photos.TABLE, getPhotoTableDefinition());
91 createTable(db, Metadata.TABLE, getMetadataTableDefinition());
113 dropTable(db, Metadata.TABLE);
114 dropTable(db, Photos.TABLE);
115 dropTable(db, Albums.TABLE);
116 dropTable(db, Accounts.TABLE);
136 protected static void createTable(SQLiteDatabase db, String table, List<String[]> columns)
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
CommonNicknameCache.java 48 public final static String TABLE = Tables.NICKNAME_LOOKUP;
65 * Given the size of the filter and the expected size of the nickname table,
71 Cursor cursor = mDb.query(NicknameLookupPreloadQuery.TABLE,
123 String TABLE = Tables.NICKNAME_LOOKUP;
134 Cursor cursor = mDb.query(NicknameLookupQuery.TABLE, NicknameLookupQuery.COLUMNS,
  /external/webkit/LayoutTests/storage/
test-authorizer.js 16 tx.executeSql("DROP TABLE IF EXISTS Test;");
43 executeStatement(tx, "CREATE TABLE Test (Foo int);", "SQLITE_CREATE_TABLE");
55 executeStatement(tx, "CREATE TEMP TABLE TestTempTable (Foo int);", "SQLITE_CREATE_TEMP_TABLE");
60 executeStatement(tx, "CREATE VIRTUAL TABLE TestVirtualTable USING MissingModule;", "SQLITE_CREATE_VTABLE");
72 executeStatement(tx, "ALTER TABLE Test RENAME TO TestTable;", "SQLITE_ALTER_TABLE");
73 // Rename the table back to its original name
74 executeStatement(tx, "ALTER TABLE TestTable RENAME To Test;", "SQLITE_ALTER_TABLE");
95 executeStatement(tx, "DROP TABLE TestTempTable;", "SQLITE_DROP_TEMP_TABLE");
102 // Not sure how to test this: we cannot create a virtual table because we do not
103 // have SQL/Javascript APIs to register a module that implements a virtual table
    [all...]
multiple-databases-garbage-collection.js 31 tx.executeSql("CREATE TABLE IF NOT EXISTS DataTest (randomData)", [], function(tx, result) {
44 tx.executeSql("CREATE TABLE IF NOT EXISTS EmptyTable (unimportantData)", []);
sql-error-codes.js 57 tx.executeSql("CREATE TABLE IF NOT EXISTS BadBindNumberTest (Foo INT, Bar INT)");
68 tx.executeSql("CREATE TABLE IF NOT EXISTS BadBindTypeTest (Foo TEXT)");
77 tx.executeSql("CREATE TABLE IF NOT EXISTS QuotaTest (Foo BLOB)");
sql-data-types.js 42 tx.executeSql("DROP TABLE DataTypeTestTable", [],
70 tx.executeSql("CREATE TABLE IF NOT EXISTS DataTypeTestTable (id INTEGER UNIQUE, real REAL, timestamp INTEGER, text TEXT, blob BLOB)", [],
  /packages/apps/Gallery2/tests/src/com/android/photos/data/
PhotoDatabaseTest.java 66 validateTable(Metadata.TABLE, PhotoDatabaseUtils.PROJECTION_METADATA);
67 validateTable(Albums.TABLE, PhotoDatabaseUtils.PROJECTION_ALBUMS);
68 validateTable(Photos.TABLE, PhotoDatabaseUtils.PROJECTION_PHOTOS);
203 assertEquals(0, DatabaseUtils.queryNumEntries(db, Accounts.TABLE));
204 assertEquals(0, DatabaseUtils.queryNumEntries(db, Photos.TABLE));
205 assertEquals(0, DatabaseUtils.queryNumEntries(db, Albums.TABLE));
206 assertEquals(0, DatabaseUtils.queryNumEntries(db, Metadata.TABLE));
217 private void validateTable(String table, String[] projection) {
219 Cursor cursor = db.query(table, projection, null, null, null, null, null);
PhotoDatabaseUtils.java 71 return queryId(db, Albums.TABLE, PROJECTION_ALBUMS, SELECTION_ALBUM_PARENT_ID, parentId);
75 return queryId(db, Photos.TABLE, PROJECTION_PHOTOS, SELECTION_PHOTO_ALBUM_ID, albumId);
79 return queryId(db, Accounts.TABLE, PROJECTION_ACCOUNTS, SELECTION_ACCOUNT_ID, accountName);
82 public static long queryId(SQLiteDatabase db, String table, String[] projection,
88 Cursor cursor = db.query(table, projection, selection, selectionArgs, null, null, null);
91 throw new AssertionFailedError("Couldn't find item in table");
109 return db.insert(Photos.TABLE, null, values) != -1;
119 return db.insert(Albums.TABLE, null, values) != -1;
127 return db.insert(Metadata.TABLE, null, values) != -1;
133 return db.insert(Accounts.TABLE, null, values) != -1
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
inflate.h 36 TABLE, /* i: waiting for dynamic block table lengths */
65 TYPE -> STORED or TABLE or LEN or CHECK
67 TABLE -> LENLENS -> CODELENS -> LEN
99 /* for table and code decoding */
102 code const FAR *lencode; /* starting table for length/literal codes */
103 code const FAR *distcode; /* starting table for distance codes */
106 /* dynamic table building */
113 unsigned short work[288]; /* work area for code table building */
  /external/zlib/src/
inflate.h 37 TABLE, /* i: waiting for dynamic block table lengths */
68 TYPE -> TYPEDO -> STORED or TABLE or LEN_ or CHECK
70 TABLE -> LENLENS -> CODELENS -> LEN_
103 /* for table and code decoding */
106 code const FAR *lencode; /* starting table for length/literal codes */
107 code const FAR *distcode; /* starting table for distance codes */
110 /* dynamic table building */
117 unsigned short work[288]; /* work area for code table building */
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
legacy_contacts.sql 3 CREATE TABLE _deleted_groups (_sync_version TEXT,_sync_id TEXT,_sync_account TEXT,_sync_mark INTEGER);
4 CREATE TABLE _deleted_people (_sync_version TEXT,_sync_id TEXT,_sync_account TEXT,_sync_mark INTEGER);
5 CREATE TABLE _sync_state (_id INTEGER PRIMARY KEY,_sync_account TEXT,data TEXT,UNIQUE(_sync_account));
6 CREATE TABLE _sync_state_metadata (version INTEGER);
8 CREATE TABLE android_metadata (locale TEXT);
10 CREATE TABLE calls (_id INTEGER PRIMARY KEY AUTOINCREMENT,number TEXT,date INTEGER,duration INTEGER,type INTEGER,new INTEGER,name TEXT,numbertype INTEGER,numberlabel TEXT);
11 CREATE TABLE contact_methods (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES people(_id),kind INTEGER NOT NULL,data TEXT,aux_data TEXT,type INTEGER NOT NULL,label TEXT,isprimary INTEGER NOT NULL DEFAULT 0);
15 CREATE TABLE extensions (_id INTEGER PRIMARY KEY AUTOINCREMENT,name TEXT NOT NULL,value TEXT NOT NULL,person INTEGER REFERENCES people(_id),UNIQUE(person, name));
16 CREATE TABLE fave_msg_status (_id INTEGER PRIMARY KEY, msg TEXT, next_retry INTEGER, num_retries INTEGER);
17 CREATE TABLE fave_phone_changes (_id INTEGER PRIMARY KEY, old_phone TEXT, new_phone TEXT, change_timestamp TEXT (…)
    [all...]
  /packages/providers/ContactsProvider/tests/assets/test1/
legacy_contacts.sql 3 CREATE TABLE _deleted_groups (_sync_version TEXT,_sync_id TEXT,_sync_account TEXT,_sync_mark INTEGER);
4 CREATE TABLE _deleted_people (_sync_version TEXT,_sync_id TEXT,_sync_account TEXT,_sync_mark INTEGER);
6 CREATE TABLE _sync_state (_id INTEGER PRIMARY KEY,_sync_account TEXT,data TEXT,UNIQUE(_sync_account));
8 CREATE TABLE _sync_state_metadata (version INTEGER);
10 CREATE TABLE android_metadata (locale TEXT);
12 CREATE TABLE calls (_id INTEGER PRIMARY KEY AUTOINCREMENT,number TEXT,date INTEGER,duration INTEGER,type INTEGER,new INTEGER,name TEXT,numbertype INTEGER,numberlabel TEXT);
14 CREATE TABLE contact_methods (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES people(_id),kind INTEGER NOT NULL,data TEXT,aux_data TEXT,type INTEGER NOT NULL,label TEXT,isprimary INTEGER NOT NULL DEFAULT 0);
31 CREATE TABLE extensions (_id INTEGER PRIMARY KEY AUTOINCREMENT,name TEXT NOT NULL,value TEXT NOT NULL,person INTEGER REFERENCES people(_id),UNIQUE(person, name));
32 CREATE TABLE fave_msg_status (_id INTEGER PRIMARY KEY, msg TEXT, next_retry INTEGER, num_retries INTEGER);
33 CREATE TABLE fave_phone_changes (_id INTEGER PRIMARY KEY, old_phone TEXT, new_phone TEXT, change_timestamp TEXT (…)
    [all...]
  /packages/providers/ContactsProvider/tests/assets/testSynced/
legacy_contacts.sql 3 CREATE TABLE _deleted_groups (_sync_version TEXT,_sync_id TEXT,_sync_account TEXT,_sync_mark INTEGER);
4 CREATE TABLE _deleted_people (_sync_version TEXT,_sync_id TEXT,_sync_account TEXT,_sync_mark INTEGER);
5 CREATE TABLE _sync_state (_id INTEGER PRIMARY KEY,_sync_account TEXT,data TEXT,UNIQUE(_sync_account));
7 CREATE TABLE _sync_state_metadata (version INTEGER);
9 CREATE TABLE android_metadata (locale TEXT);
11 CREATE TABLE calls (_id INTEGER PRIMARY KEY AUTOINCREMENT,number TEXT,date INTEGER,duration INTEGER,type INTEGER,new INTEGER,name TEXT,numbertype INTEGER,numberlabel TEXT);
12 CREATE TABLE contact_methods (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES people(_id),kind INTEGER NOT NULL,data TEXT,aux_data TEXT,type INTEGER NOT NULL,label TEXT,isprimary INTEGER NOT NULL DEFAULT 0);
18 CREATE TABLE extensions (_id INTEGER PRIMARY KEY AUTOINCREMENT,name TEXT NOT NULL,value TEXT NOT NULL,person INTEGER REFERENCES people(_id),UNIQUE(person, name));
19 CREATE TABLE fave_msg_status (_id INTEGER PRIMARY KEY, msg TEXT, next_retry INTEGER, num_retries INTEGER);
21 CREATE TABLE fave_phone_changes (_id INTEGER PRIMARY KEY, old_phone TEXT, new_phone TEXT, change_timestamp TEXT (…)
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
Tag.java 39 public static final Tag TABLE = new TagImpl ("TABLE");
HTMLTable.java 34 super (Tag.TABLE, AttributeSet.create ());
  /packages/apps/Exchange/exchange2/tests/src/com/android/exchange/provider/
MockProvider.java 68 /*package*/ static final int TABLE = 100;
118 String table = uri.getPath().substring(1); local
120 Uri newUri = new Uri.Builder().scheme("content").authority(AUTHORITY).path(table)
127 sURIMatcher.addURI(AUTHORITY, table, TABLE);
128 sURIMatcher.addURI(AUTHORITY, table + "/#", RECORD);
147 case TABLE:
186 case TABLE:
  /packages/apps/Exchange/tests/src/com/android/exchange/provider/
MockProvider.java 68 /*package*/ static final int TABLE = 100;
118 String table = uri.getPath().substring(1); local
120 Uri newUri = new Uri.Builder().scheme("content").authority(AUTHORITY).path(table)
127 sURIMatcher.addURI(AUTHORITY, table, TABLE);
128 sURIMatcher.addURI(AUTHORITY, table + "/#", RECORD);
147 case TABLE:
186 case TABLE:
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLTableElement31.js 78 The insertRow() method inserts a new empty table row. In addition, when
79 the table is empty the row is inserted into a TBODY which is created
80 and inserted into the table.
82 Load the table1 file which has a non-empty table element.
83 Create an empty TABLE element and append to the document.
84 Check to make sure that the empty TABLE element doesn't
86 TABLE element. Check for existence of the a TBODY element
87 in the table.
104 var table;
115 table = doc.createElement("table")
    [all...]
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLTableElement31.js 78 The insertRow() method inserts a new empty table row. In addition, when
79 the table is empty the row is inserted into a TBODY which is created
80 and inserted into the table.
82 Load the table1 file which has a non-empty table element.
83 Create an empty TABLE element and append to the document.
84 Check to make sure that the empty TABLE element doesn't
86 TABLE element. Check for existence of the a TBODY element
87 in the table.
104 var table;
115 table = doc.createElement("table")
    [all...]
  /frameworks/base/services/java/com/android/server/
LockSettingsService.java 63 private static final String TABLE = "locksettings";
337 db.delete(TABLE, COLUMN_USERID + "='" + userId + "'", null);
372 db.delete(TABLE, COLUMN_KEY + "=? AND " + COLUMN_USERID + "=?",
374 db.insert(TABLE, null, cv);
385 if ((cursor = db.query(TABLE, COLUMNS_FOR_QUERY,
409 db.execSQL("CREATE TABLE " + TABLE + " (" +
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
symshift.pl 3 # "plane" and create combined symbol table
9 # This script creates a symbol table which must be used when
87 and converts into one symbol table with ids in range [0..2^16-1] which
127 foreach $table (@alltables) {
128 $table{$plane{$table}} = $table;
184 foreach $table (@alltables) {
185 #printf STDERR "doing table $table (plane %d)\n", $plane{$table}
    [all...]
  /external/openssl/crypto/sha/asm/
sha512-ia64.pl 74 $TABLE="K512";
88 $TABLE="K256";
164 add Ktbl=($TABLE#-.Lpic_point),Ktbl }

Completed in 3049 milliseconds

1 2 3 4 5 6 7