Searched refs:CheckScanfM (Results 1 – 1 of 1) sorted by relevance
/aosp12/bionic/tests/ |
H A D | stdio_test.cpp | 1198 CheckScanfM(sscanf, "hello", "%ms", 1, "hello"); in TEST() 1199 CheckScanfM(sscanf, "hello", "%4ms", 1, "hell"); in TEST() 1200 CheckScanfM(sscanf, "hello world", "%30ms", 1, "hello"); in TEST() 1204 CheckScanfM(sscanf, "hello", "%mls", 1, L"hello"); in TEST() 1205 CheckScanfM(sscanf, "hello", "%4mls", 1, L"hell"); in TEST() 1206 CheckScanfM(sscanf, "hello world", "%30mls", 1, L"hello"); in TEST() 1210 CheckScanfM(sscanf, "hello", "%m[a-z]", 1, "hello"); in TEST() 1211 CheckScanfM(sscanf, "hello", "%4m[a-z]", 1, "hell"); in TEST() 1212 CheckScanfM(sscanf, "hello world", "%30m[a-z]", 1, "hello"); in TEST() 1216 CheckScanfM(sscanf, "hello", "%ml[a-z]", 1, L"hello"); in TEST() [all …]
|