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

1 2 3 4 5 6 7

  /external/zlib/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/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)", [],
  /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/
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...]
  /frameworks/base/core/java/com/android/internal/widget/
LockSettingsService.java 50 private static final String TABLE = "locksettings";
282 db.delete(TABLE, COLUMN_USERID + "='" + userId + "'", null);
314 db.delete(TABLE, COLUMN_KEY + "=? AND " + COLUMN_USERID + "=?",
316 db.insert(TABLE, null, cv);
327 if ((cursor = db.query(TABLE, COLUMNS_FOR_QUERY,
351 db.execSQL("CREATE TABLE " + TABLE + " (" +
  /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...]
HTMLTableElement19.js 49 docsLoaded += preload(docRef, "doc", "table");
78 The createTHead() method creates a table header row or returns
81 Create a new THEAD element on the first TABLE element. The first
82 TABLE element should return null to make sure one doesn't exist.
104 doc = load(docRef, "doc", "table");
105 nodeList = doc.getElementsByTagName("table");
HTMLTableElement20.js 49 docsLoaded += preload(docRef, "doc", "table");
78 The createTHead() method creates a table header row or returns
81 Try to create a new THEAD element on the second TABLE element.
82 Since a THEAD element already exists in the TABLE element a new
104 doc = load(docRef, "doc", "table");
105 nodeList = doc.getElementsByTagName("table");
HTMLTableElement22.js 49 docsLoaded += preload(docRef, "doc", "table");
78 The createTFoot() method creates a table footer row or returns
81 Create a new TFOOT element on the first TABLE element. The first
82 TABLE element should return null to make sure one doesn't exist.
104 doc = load(docRef, "doc", "table");
105 nodeList = doc.getElementsByTagName("table");
  /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...]
  /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 }
sha512-x86_64.pl 58 $TABLE="K512";
70 $TABLE="K256";
196 lea $TABLE(%rip),$Tbl
274 .type $TABLE,\@object
275 $TABLE:
296 .type $TABLE,\@object
297 $TABLE:
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java 507 // HashMap woulnd't shrink the internal table once expands it, so let's just re-create
536 public static final String TABLE = Tables.RAW_CONTACTS;
551 Cursor cursor = db.query(RawContactIdAndAggregationModeQuery.TABLE,
629 public static final String TABLE = Tables.RAW_CONTACTS;
654 Cursor cursor = db.query(RawContactIdAndAccountQuery.TABLE,
    [all...]

Completed in 415 milliseconds

1 2 3 4 5 6 7