Searched refs:AssertString (Results 1 – 1 of 1) sorted by relevance
/art/runtime/mirror/ |
D | object_test.cc | 53 void AssertString(int32_t expected_utf16_length, in AssertString() function in art::mirror::ObjectTest 398 AssertString(0, "", "", 0); in TEST_F() 401 AssertString(1, " ", "\x00\x20", 0x20); in TEST_F() 402 AssertString(1, "", "\x00\x00", 0); in TEST_F() 403 AssertString(1, "\x7f", "\x00\x7f", 0x7f); in TEST_F() 404 AssertString(2, "hi", "\x00\x68\x00\x69", (31 * 0x68) + 0x69); in TEST_F() 407 AssertString(1, "\xc2\x80", "\x00\x80", 0x80); in TEST_F() 408 AssertString(1, "\xd9\xa6", "\x06\x66", 0x0666); in TEST_F() 409 AssertString(1, "\xdf\xbf", "\x07\xff", 0x07ff); in TEST_F() 410 AssertString(3, "h\xd9\xa6i", "\x00\x68\x06\x66\x00\x69", in TEST_F() [all …]
|