Searched refs:encodeDecode (Results 1 – 1 of 1) sorted by relevance
/external/chromium_org/mojo/public/js/bindings/ |
D | codec_unittests.js | 176 function encodeDecode(cls, input, expectedResult, encodedSize) { function 190 encodeDecode(codec.String, "banana", "banana", 24); 191 encodeDecode(codec.NullableString, null, null, 8); 192 encodeDecode(codec.Int8, -1, -1); 193 encodeDecode(codec.Int8, 0xff, -1); 194 encodeDecode(codec.Int16, -1, -1); 195 encodeDecode(codec.Int16, 0xff, 0xff); 196 encodeDecode(codec.Int16, 0xffff, -1); 197 encodeDecode(codec.Int32, -1, -1); 198 encodeDecode(codec.Int32, 0xffff, 0xffff); [all …]
|