Home | History | Annotate | Download | only in deviceinfo

Lines Matching refs:store

31     protected void collectDeviceInfo(DeviceInfoStore store) throws Exception {
39 store.startGroup("foo");
40 store.addResult("foo_boolean", Boolean.TRUE);
43 store.startGroup("bar");
44 store.addListResult("bar_string", Arrays.asList(new String[] {
49 store.addArrayResult("bar_boolean", booleans);
50 store.addArrayResult("bar_double", doubles);
51 store.addArrayResult("bar_int", ints);
52 store.addArrayResult("bar_long", longs);
53 store.addArrayResult("bar_float", floats);
54 store.endGroup(); // bar
56 store.addResult("foo_double", Double.MAX_VALUE);
57 store.addResult("foo_int", Integer.MAX_VALUE);
58 store.addResult("foo_long", Long.MAX_VALUE);
59 store.addResult("foo_string", "foo-string");
60 store.addResult("foo_float_nan", Float.NaN);
61 store.addResult("foo_float_max", Float.MAX_VALUE + 1);
62 store.addResult("foo_float_min", Float.MIN_VALUE - 1);
63 store.endGroup(); // foo