Home | History | Annotate | Download | only in ext.manip

Lines Matching refs:is

5 // This file is dual licensed under the MIT and the University of Illinois Open
43 std::istream is(&sb);
44 is.imbue(std::locale(LOCALE_en_US_UTF_8));
46 is >> std::get_time(&t, "%c");
54 assert(is.eof());
55 assert(!is.fail());
59 std::wistream is(&sb);
60 is.imbue(std::locale(LOCALE_en_US_UTF_8));
62 is >> std::get_time(&t, L"%c");
70 assert(is.eof());
71 assert(!is.fail());