Lines Matching refs:wStr
58 wchar_t wStr[50] = {0};
60 ret = FormatVfwscanf(fp, L"%ls has %d words ", wStr, &i);
62 EXPECT_STREQ(wStr, L"helloworld");
82 wchar_t wStr[50] = {0};
84 ret = fwscanf(fp, L"%ls has %d words ", wStr, &i);
86 EXPECT_STREQ(wStr, L"helloworld");
126 wchar_t wStr[50] = {0};
133 wchar_t *retW = fgetws(wStr, sizeof(wStr)/sizeof(wStr[0]), fp);
211 wchar_t wStr[50] = {0};
213 ret = fwscanf(fp, L"%ls has %d words", wStr, &i);
216 EXPECT_STREQ(wStr, L"helloworld");
395 wchar_t wStr[50] = {0};
397 ret = swscanf(wBuf, L"%ls has %d words", wStr, &i);
400 EXPECT_STREQ(wStr, L"helloworld");