Home
last modified time | relevance | path

Searched refs:AssertString (Results 1 – 1 of 1) sorted by relevance

/art/runtime/mirror/
Dobject_test.cc53 void AssertString(int32_t expected_utf16_length, in AssertString() function in art::mirror::ObjectTest
441 AssertString(0, "", "", 0); in TEST_F()
444 AssertString(1, " ", "\x00\x20", 0x20); in TEST_F()
445 AssertString(1, "", "\x00\x00", 0); in TEST_F()
446 AssertString(1, "\x7f", "\x00\x7f", 0x7f); in TEST_F()
447 AssertString(2, "hi", "\x00\x68\x00\x69", (31 * 0x68) + 0x69); in TEST_F()
450 AssertString(1, "\xc2\x80", "\x00\x80", 0x80); in TEST_F()
451 AssertString(1, "\xd9\xa6", "\x06\x66", 0x0666); in TEST_F()
452 AssertString(1, "\xdf\xbf", "\x07\xff", 0x07ff); in TEST_F()
453 AssertString(3, "h\xd9\xa6i", "\x00\x68\x06\x66\x00\x69", in TEST_F()
[all …]