HomeSort by relevance Sort by last modified time
    Searched refs:PropertiesColumns (Results 1 - 3 of 3) sorted by null

  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
PropertyUtils.java 34 public interface PropertiesColumns {
44 PropertiesColumns.PROPERTY_KEY + " TEXT PRIMARY KEY, " +
45 PropertiesColumns.PROPERTY_VALUE + " TEXT " +
55 new String[] {PropertiesColumns.PROPERTY_VALUE},
56 PropertiesColumns.PROPERTY_KEY + "=?",
75 values.put(PropertiesColumns.PROPERTY_KEY, key);
76 values.put(PropertiesColumns.PROPERTY_VALUE, value);
  /packages/apps/Dialer/src/com/android/dialer/database/
DialerDatabaseHelper.java 130 public interface PropertiesColumns {
422 + PropertiesColumns.PROPERTY_KEY + " TEXT PRIMARY KEY, "
423 + PropertiesColumns.PROPERTY_VALUE + " TEXT "
522 values.put(PropertiesColumns.PROPERTY_KEY, key);
523 values.put(PropertiesColumns.PROPERTY_VALUE, value);
538 new String[] {PropertiesColumns.PROPERTY_VALUE},
539 PropertiesColumns.PROPERTY_KEY + "=?",
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsDatabaseHelperUpgradeTest.java 156 new TableColumn(PropertyUtils.PropertiesColumns.PROPERTY_KEY, TEXT, false, null),
157 new TableColumn(PropertyUtils.PropertiesColumns.PROPERTY_VALUE, TEXT, false, null),

Completed in 330 milliseconds