Searched refs:VALUE (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/include/utils/
H A DKeyedVector.h32 template <typename KEY, typename VALUE>
37 typedef VALUE value_type;
63 const VALUE& valueFor(const KEY& key) const;
64 const VALUE& valueAt(size_t index) const;
72 VALUE& editValueFor(const KEY& key);
73 VALUE& editValueAt(size_t index);
79 ssize_t add(const KEY& key, const VALUE& item);
80 ssize_t replaceValueFor(const KEY& key, const VALUE& item);
81 ssize_t replaceValueAt(size_t index, const VALUE& item);
91 SortedVector< key_value_pair_t<KEY, VALUE> > mVecto
[all...]
H A DTypeHelpers.h227 template <typename KEY, typename VALUE>
230 VALUE value;
233 key_value_pair_t(const KEY& k, const VALUE& v) : key(k), value(v) { }
/frameworks/base/core/tests/coretests/src/android/content/
H A DContentQueryMapTest.java62 Settings.System.VALUE,
74 String value = v.getAsString(Settings.System.VALUE);
82 String value = v.getAsString(Settings.System.VALUE);
/frameworks/base/core/tests/coretests/src/android/provider/
H A DSettingsProviderTest.java70 v.put(Settings.System.VALUE, "Test");
79 assertEquals("Test", c.getString(c.getColumnIndex(Settings.System.VALUE)));
98 assertEquals("Test", c.getString(c.getColumnIndex(Settings.System.VALUE)));
105 v.put(Settings.System.VALUE, "Toast");
112 assertEquals("Toast", c.getString(c.getColumnIndex(Settings.System.VALUE)));
/frameworks/base/core/java/android/util/
H A DCalendarUtils.java94 int valueColumn = cursor.getColumnIndexOrThrow(CalendarCache.VALUE);
230 values.put(CalendarCache.VALUE, mUseHomeTZ ? CalendarCache.TIMEZONE_TYPE_HOME
238 values2.put(CalendarCache.VALUE, mHomeTZ);
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java294 new String[] { Settings.NameValueTable.NAME, Settings.NameValueTable.VALUE },
324 new String[] { Settings.NameValueTable.VALUE },
335 values.put(Settings.NameValueTable.VALUE, newAndroidIdValue);
484 String value = initialValues.getAsString(Settings.Secure.VALUE);
494 String[] columns = {Settings.Secure.VALUE};
538 initialValues.put(Settings.Secure.VALUE, newProviders);
562 String value = initialValues.getAsString(Settings.NameValueTable.VALUE);
808 String value = contentValues.getAsString(Settings.NameValueTable.VALUE);
815 put(name, Bundle.forPair(Settings.NameValueTable.VALUE, value));
H A DSettingsBackupAgent.java82 Settings.NameValueTable.VALUE
267 cv.put(Settings.NameValueTable.VALUE, settingValue);
/frameworks/base/core/java/android/provider/
H A DCalendar.java643 ExtendedProperties.VALUE
781 extendedValues.put(ExtendedProperties.VALUE,
961 public static final String VALUE = "value"; field in interface:Calendar.CalendarCacheColumns
970 public static final String[] POJECTION = { KEY, VALUE };
1424 public static final String VALUE = "value"; field in interface:Calendar.ExtendedPropertiesColumns
H A DContacts.java134 public static final String VALUE = "value"; field in interface:Contacts.SettingsColumns
206 Cursor cursor = cr.query(Settings.CONTENT_URI, new String[]{VALUE},
230 values.put(VALUE, value);
1915 public static final String VALUE = "value"; field in interface:Contacts.ExtensionsColumns
H A DSettings.java566 public static final String VALUE = "value"; field in class:Settings.NameValueTable
574 values.put(VALUE, value);
594 new String[] { Settings.NameValueTable.VALUE };
/frameworks/base/services/java/com/android/server/
H A DPowerManagerService.java432 Integer iVal = values != null ? values.getAsInteger(Settings.System.VALUE) : null;
438 Float fVal = values != null ? values.getAsFloat(Settings.System.VALUE) : null;

Completed in 219 milliseconds