Searched refs:CheckScanfM (Results 1 – 1 of 1) sorted by relevance
/bionic/tests/ |
D | stdio_test.cpp | 1124 static void CheckScanfM(int sscanf_fn(const T1*, const T1*, ...), in CheckScanfM() function 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() [all …]
|