Home
last modified time | relevance | path

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

/bionic/tests/
Dstdio_test.cpp1152 static void CheckScanfM(int sscanf_fn(const T1*, const T1*, ...), in CheckScanfM() function
1226 CheckScanfM(sscanf, "hello", "%ms", 1, "hello"); in TEST()
1227 CheckScanfM(sscanf, "hello", "%4ms", 1, "hell"); in TEST()
1228 CheckScanfM(sscanf, "hello world", "%30ms", 1, "hello"); in TEST()
1232 CheckScanfM(sscanf, "hello", "%mls", 1, L"hello"); in TEST()
1233 CheckScanfM(sscanf, "hello", "%4mls", 1, L"hell"); in TEST()
1234 CheckScanfM(sscanf, "hello world", "%30mls", 1, L"hello"); in TEST()
1238 CheckScanfM(sscanf, "hello", "%m[a-z]", 1, "hello"); in TEST()
1239 CheckScanfM(sscanf, "hello", "%4m[a-z]", 1, "hell"); in TEST()
1240 CheckScanfM(sscanf, "hello world", "%30m[a-z]", 1, "hello"); in TEST()
[all …]