Searched defs:KEY (Results 1 - 6 of 6) sorted by last modified time

/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRecentsProvider.java78 public static final String KEY = "key"; field in class:RecentsProvider.RecentColumns
132 RecentColumns.KEY + " TEXT PRIMARY KEY ON CONFLICT REPLACE," +
143 "PRIMARY KEY (" + StateColumns.AUTHORITY + ", " + StateColumns.ROOT_ID + ", "
148 ResumeColumns.PACKAGE_NAME + " TEXT NOT NULL PRIMARY KEY," +
319 final String key = getCursorString(cursor, RecentColumns.KEY);
320 db.delete(TABLE_RECENT, RecentColumns.KEY + "=?", new String[] { key });
/frameworks/base/core/tests/coretests/src/android/os/
H A DSystemPropertiesTest.java26 private static final String KEY = "com.android.frameworks.coretests"; field in class:SystemPropertiesTest
32 SystemProperties.set(KEY, "");
33 value = SystemProperties.get(KEY, "default");
36 SystemProperties.set(KEY, "AAA");
37 value = SystemProperties.get(KEY, "default");
40 value = SystemProperties.get(KEY);
43 SystemProperties.set(KEY, "");
44 value = SystemProperties.get(KEY, "default");
47 value = SystemProperties.get(KEY);
/frameworks/base/core/tests/systemproperties/src/android/os/
H A DSystemPropertiesTest.java25 private static final String KEY = "sys.testkey"; field in class:SystemPropertiesTest
40 SystemProperties.set(KEY, Long.toString(i));
41 long ret = SystemProperties.getLong(KEY, -1);
50 SystemProperties.set(KEY, "");
51 value = SystemProperties.get(KEY, "default");
54 SystemProperties.set(KEY, "SA");
55 value = SystemProperties.get(KEY, "default");
58 value = SystemProperties.get(KEY);
61 SystemProperties.set(KEY, "");
62 value = SystemProperties.get(KEY, "defaul
[all...]
/frameworks/base/core/java/android/provider/
H A DBrowserContract.java704 public static final String KEY = "key"; field in class:BrowserContract.Settings
723 KEY + "=?", new String[] { KEY_SYNC_ENABLED }, null);
738 values.put(KEY, KEY_SYNC_ENABLED);
H A DCalendarContract.java1876 public static final String KEY = "key"; field in interface:CalendarContract.CalendarCacheColumns
1887 * scheme. A {@link #KEY} must be specified when updating these values.
H A DContacts.java125 public static final String KEY = "key"; field in interface:Contacts.SettingsColumns
228 values.put(KEY, key);

Completed in 254 milliseconds