Home
last modified time | relevance | path

Searched refs:KeyValue (Results 1 – 3 of 3) sorted by relevance

/packages/modules/OnDevicePersonalization/src/com/android/ondevicepersonalization/services/util/
DOnDevicePersonalizationFlatbufferUtils.java23 import com.android.ondevicepersonalization.services.fbs.KeyValue;
154 KeyValue kv = list.entries(i); in getContentValuesFromKeyValueList()
217 KeyValue.startKeyValue(builder); in createKeyValueEntry()
218 KeyValue.addKey(builder, keyOffset); in createKeyValueEntry()
220 KeyValue.addType(builder, DATA_TYPE_BYTE); in createKeyValueEntry()
221 KeyValue.addByteValue(builder, ((Byte) value).byteValue()); in createKeyValueEntry()
223 KeyValue.addType(builder, DATA_TYPE_SHORT); in createKeyValueEntry()
224 KeyValue.addShortValue(builder, ((Short) value).shortValue()); in createKeyValueEntry()
226 KeyValue.addType(builder, DATA_TYPE_INT); in createKeyValueEntry()
227 KeyValue.addIntValue(builder, ((Integer) value).intValue()); in createKeyValueEntry()
[all …]
/packages/modules/OnDevicePersonalization/src/com/android/ondevicepersonalization/services/fbs/
DEventFields.fbs8 entries:[KeyValue];
11 table KeyValue {
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
DCalendarProvider2Test.java200 private class KeyValue { class in CalendarProvider2Test
204 public KeyValue(String key, String value) { in KeyValue() method in CalendarProvider2Test.KeyValue
271 KeyValue[] pairs;
273 public Update(String eventName, KeyValue[] pairs) { in Update()
285 for (KeyValue pair : pairs) { in execute()
888 new Update("cancel0", new KeyValue[] {
889 new KeyValue(CalendarContract.Events.STATUS,
935 new Update("daily0", new KeyValue[] {
936 new KeyValue(Events.RRULE, "FREQ=DAILY;UNTIL=20080505T150000Z;WKST=SU"),
945 new Update("daily0", new KeyValue[] {
[all …]