HomeSort by relevance Sort by last modified time
    Searched refs:Tables (Results 26 - 50 of 70) sorted by null

12 3

  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForPhoneNumber.java 27 import com.android.providers.contacts.ContactsDatabaseHelper.Tables;
117 db.delete(Tables.PHONE_LOOKUP, PhoneLookupColumns.DATA_ID + "=?", mSelectionArgs1);
127 db.insert(Tables.PHONE_LOOKUP, null, phoneValues);
133 db.insert(Tables.PHONE_LOOKUP, null, phoneValues);
PhotoStore.java 25 import com.android.providers.contacts.ContactsDatabaseHelper.Tables;
93 mDb.delete(Tables.PHOTO_FILES, null, null);
204 long id = mDb.insert(Tables.PHOTO_FILES, null, values);
273 mDb.delete(ContactsDatabaseHelper.Tables.PHOTO_FILES, PhotoFilesColumns.CONCRETE_ID + "=?",
ProfileDatabaseHelper.java 68 for (String table : Tables.SEQUENCE_TABLES) {
CallLogProvider.java 39 import com.android.providers.contacts.ContactsDatabaseHelper.Tables;
132 qb.setTables(Tables.CALLS);
235 mCallsInserter = new DatabaseUtils.InsertHelper(db, Tables.CALLS);
276 return getDatabaseModifier(db).update(Tables.CALLS, values, selectionBuilder.build(),
289 return getDatabaseModifier(db).delete(Tables.CALLS,
307 return new DbModifierWithNotification(Tables.CALLS, db, context());
315 return new DbModifierWithNotification(Tables.CALLS, insertHelper, context());
ContactDirectoryManager.java 39 import com.android.providers.contacts.ContactsDatabaseHelper.Tables;
136 Cursor cursor = db.query(Tables.DIRECTORIES,
294 int deletedRows = db.delete(Tables.DIRECTORIES, deleteWhereBuilder.toString(),
312 db.replace(Tables.DIRECTORIES, null, values);
326 db.replace(Tables.DIRECTORIES, null, values);
394 final int numDeleted = db.delete(Tables.DIRECTORIES, sb.toString(),
486 * Updates the directories tables in the database to match the info received
509 Cursor cursor = db.query(Tables.DIRECTORIES, new String[] { Directory._ID },
519 db.update(Tables.DIRECTORIES, values, Directory._ID + "=?",
522 id = db.insert(Tables.DIRECTORIES, null, values)
    [all...]
SearchIndexManager.java 36 import com.android.providers.contacts.ContactsDatabaseHelper.Tables;
324 final int deleted = db.delete(Tables.SEARCH_INDEX,
327 " FROM " + Tables.RAW_CONTACTS +
358 Cursor cursor = db.query(Tables.DATA_JOIN_MIMETYPE_RAW_CONTACTS, ContactIndexQuery.COLUMNS,
397 db.insert(Tables.SEARCH_INDEX, null, mValues);
DbModifierWithNotification.java 42 import com.android.providers.contacts.ContactsDatabaseHelper.Tables;
53 * An implementation of {@link DatabaseModifier} for voicemail related tables which additionally
91 mBaseUri = mTableName.equals(Tables.VOICEMAIL_STATUS) ?
93 mIsCallsTable = mTableName.equals(Tables.CALLS);
VoicemailContentProvider.java 36 import com.android.providers.contacts.ContactsDatabaseHelper.Tables;
63 mVoicemailContentTable = new VoicemailContentTable(Tables.CALLS, context,
65 mVoicemailStatusTable = new VoicemailStatusTable(Tables.VOICEMAIL_STATUS, context,
GlobalSearchSupport.java 38 import com.android.providers.contacts.ContactsDatabaseHelper.Tables;
68 " FROM " + Tables.AGGREGATED_PRESENCE +
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsDatabaseHelperTest.java 21 import com.android.providers.contacts.ContactsDatabaseHelper.Tables;
91 mDbHelper.getWritableDatabase().execSQL("delete from " + Tables.ACCOUNTS);
  /external/guava/guava-tests/test/com/google/common/collect/
TablesTransformValuesTest.java 26 * Test cases for {@link Tables#transformValues}.
48 return Tables.transformValues(table, FIRST_CHARACTER);
ImmutableTableTest.java 60 .put(Tables.immutableCell('a', 1, "foo"))
68 builder.put(Tables.immutableCell((Character) null, 1, "foo"));
74 builder.put(Tables.immutableCell('a', (Integer) null, "foo"));
80 builder.put(Tables.immutableCell('a', 1, (String) null));
98 new Tables.AbstractCell<Character, Integer, String>() {
SingletonImmutableTableTest.java 38 assertEquals(ImmutableSet.of(Tables.immutableCell('a', 1, "blah")),
ArrayTableTest.java 410 assertEquals(Tables.immutableCell("foo", 1, 'a'), cell);
412 assertEquals(Tables.immutableCell("foo", 1, 'd'), cell);
  /external/llvm/utils/TableGen/
X86DisassemblerTables.cpp 1 //===- X86DisassemblerTables.cpp - Disassembler tables ----------*- C++ -*-===//
11 // It contains the implementation of the disassembler tables.
373 for (i = 0; i < array_lengthof(Tables); i++) {
374 Tables[i] = new ContextDecision;
375 memset(Tables[i], 0, sizeof(ContextDecision));
384 for (i = 0; i < array_lengthof(Tables); i++)
385 delete Tables[i];
703 emitContextDecision(o1, o2, i1, i2, *Tables[0], ONEBYTE_STR);
704 emitContextDecision(o1, o2, i1, i2, *Tables[1], TWOBYTE_STR);
705 emitContextDecision(o1, o2, i1, i2, *Tables[2], THREEBYTE38_STR)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ImmutableTable.java 118 return Tables.immutableCell(checkNotNull(rowKey), checkNotNull(columnKey),
124 * static final} tables ("constant tables"). Example: <pre> {@code
139 * For empty or single-cell immutable tables, {@link #of()} and
143 * multiple times to build multiple tables in series. Each table is a superset
144 * of the tables created before it.
193 if (cell instanceof Tables.ImmutableCell) {
SingletonImmutableTable.java 51 Tables.immutableCell(singleRowKey, singleColumnKey, singleValue));
Tables.java 49 public final class Tables {
50 private Tables() {}
590 * users with "read-only" access to internal tables. Query operations on the returned table
689 * provide users with "read-only" access to internal tables. Query operations on the returned
ArrayTable.java 476 return new Tables.AbstractCell<R, C, V>() {
  /external/protobuf/src/google/protobuf/
descriptor.cc 305 // DescriptorPool::Tables
307 class DescriptorPool::Tables {
309 Tables();
310 ~Tables();
312 // Checkpoint the state of the tables. Future calls to Rollback() will
313 // return the Tables to this state. This is used when building files, since
315 // descriptors have already been added to the tables. BuildFile() calls
320 // Roll back the Tables to the state of the last Checkpoint(), removing
362 // These add items to the corresponding tables. They return false if
399 vector<FileDescriptorTables*> file_tables_; // All file tables in the pool
    [all...]
descriptor.h 322 MAX_TYPE = 18, // Constant useful for defining lookup tables
341 MAX_CPPTYPE = 10, // Constant useful for defining lookup tables
352 MAX_LABEL = 3, // Constant useful for defining lookup tables
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
descriptor.cc 323 // DescriptorPool::Tables
325 class DescriptorPool::Tables {
327 Tables();
328 ~Tables();
330 // Record the current state of the tables to the stack of checkpoints.
336 // the tables.
363 // Roll back the Tables to the state of the checkpoint at the top of the
405 // These add items to the corresponding tables. They return false if
442 vector<FileDescriptorTables*> file_tables_; // All file tables in the pool.
450 explicit CheckPoint(const Tables* tables
    [all...]
descriptor.h 352 MAX_TYPE = 18, // Constant useful for defining lookup tables
371 MAX_CPPTYPE = 10, // Constant useful for defining lookup tables
382 MAX_LABEL = 3, // Constant useful for defining lookup tables
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/
xdflong.asm 192 ;; 2 Meg Page Tables
  /external/droiddriver/libs/
guava-13.0.jar 

Completed in 559 milliseconds

12 3