Home | History | Annotate | Download | only in eh

Lines Matching refs:cout

17     cout.imbue(sys);
19 cout<<"Locale name is: "<<sys.name().c_str()<<'\n';
21 cout<<"Enter real number:";
24 cout<<value<<'\n';
31 const numpunct<char>& num_punct=use_facet<numpunct<char> >(cout.getloc());
32 cout << num_punct.decimal_point() << '\n';
34 use_facet<time_put<char, ostreambuf_iterator<char, char_traits<char> > > >(cout.getloc());
35 time_fac.put(cout, cout, NULL, cur_time, 'x'); cout<<'\n';
36 time_fac.put(cout, cout, NULL, cur_time, 'x', '#'); cout<<'\n';
37 time_fac.put(cout, cout, NULL, cur_time, 'X'); cout<<'\n';
38 time_fac.put(cout, cout, NULL, cur_time, 'c'); cout<<'\n';
39 time_fac.put(cout, cout, NULL, cur_time, 'c', '#'); cout<<'\n';
40 time_fac.put(cout, cout, NULL, cur_time, 'I'); cout<<'\n';
42 const ctype<char>& char_type=use_facet<ctype<char> >(cout.getloc());
46 if(isupper('?', cout.getloc())) puts("Upper");
47 if(islower('?', cout.getloc())) puts("Lower");
49 printf("Character %c (%d) - upper %c, lower %c\n",(char)ch, ch,toupper((char)ch, cout.getloc()), tolower((char)ch, cout.getloc()));*/
53 cout<<"Exception fired:\n"<<e.what()<<'\n';
57 cout<<"Unknown exception throwed!\n";
59 cout.flush();