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