Home | History | Annotate | Download | only in tests

Lines Matching refs:String16

94   non_empty_bundle.putBoolean(String16("test_bool"), false);
95 non_empty_bundle.putInt(String16("test_int"), 33);
96 non_empty_bundle.putLong(String16("test_long"), 34359738368l);
97 non_empty_bundle.putDouble(String16("test_double"), 1.1);
98 non_empty_bundle.putString(String16("test_string"), String16("Woot!"));
99 non_empty_bundle.putBooleanVector(String16("test_bool_vector"),
101 non_empty_bundle.putIntVector(String16("test_int_vector"), {33, 44, 55, 142});
102 non_empty_bundle.putLongVector(String16("test_long_vector"),
104 non_empty_bundle.putDoubleVector(String16("test_double_vector"), {2.2, 5.4});
105 non_empty_bundle.putStringVector(String16("test_string_vector"),
106 {String16("hello"), String16("world!")});
108 nested_bundle.putInt(String16("test_nested_int"), 345);
109 non_empty_bundle.putPersistableBundle(String16("test_persistable_bundle"),
127 first.putInt(String16("test_int"), 1231);
128 second.putLong(String16("test_long"), 222222l);
129 third.putDouble(String16("test_double"), 10.8);