Lines Matching refs:oss

56   ostringstream oss;  in test01()  local
57 oss.imbue(loc_de); in test01()
58 const num_put<char>& np = use_facet<num_put<char> >(oss.getloc()); in test01()
61 iterator_type os_it00 = oss.rdbuf(); in test01()
62 np.put(os_it00, oss, '+', b1); in test01()
63 result1 = oss.str(); in test01()
66 oss.str(empty); in test01()
67 np.put(oss.rdbuf(), oss, '+', b0); in test01()
68 result2 = oss.str(); in test01()
72 oss.imbue(loc_de); in test01()
73 oss.str(empty); in test01()
74 oss.clear(); in test01()
75 oss.width(20); in test01()
76 oss.setf(ios_base::left, ios_base::adjustfield); in test01()
77 np.put(oss.rdbuf(), oss, '+', ul1); in test01()
78 result1 = oss.str(); in test01()
82 oss.str(empty); in test01()
83 oss.clear(); in test01()
84 oss.width(20); in test01()
85 oss.setf(ios_base::left, ios_base::adjustfield); in test01()
86 np.put(oss.rdbuf(), oss, '+', d1); in test01()
87 result1 = oss.str(); in test01()
90 oss.str(empty); in test01()
91 oss.clear(); in test01()
92 oss.width(20); in test01()
93 oss.setf(ios_base::right, ios_base::adjustfield); in test01()
94 np.put(oss.rdbuf(), oss, '+', d2); in test01()
95 result1 = oss.str(); in test01()
98 oss.str(empty); in test01()
99 oss.clear(); in test01()
100 oss.width(20); in test01()
101 oss.setf(ios_base::right, ios_base::adjustfield); in test01()
102 oss.setf(ios_base::scientific, ios_base::floatfield); in test01()
103 np.put(oss.rdbuf(), oss, '+', d2); in test01()
104 result2 = oss.str(); in test01()
107 oss.str(empty); in test01()
108 oss.clear(); in test01()
109 oss.width(20); in test01()
110 oss.precision(10); in test01()
111 oss.setf(ios_base::right, ios_base::adjustfield); in test01()
112 oss.setf(ios_base::scientific, ios_base::floatfield); in test01()
113 oss.setf(ios_base::uppercase); in test01()
114 np.put(oss.rdbuf(), oss, '+', d2); in test01()
115 result1 = oss.str(); in test01()
119 oss.str(empty); in test01()
120 oss.clear(); in test01()
121 np.put(oss.rdbuf(), oss, '+', ld1); in test01()
122 result1 = oss.str(); in test01()
125 oss.str(empty); in test01()
126 oss.clear(); in test01()
127 oss.precision(0); in test01()
128 oss.setf(ios_base::fixed, ios_base::floatfield); in test01()
129 np.put(oss.rdbuf(), oss, '+', ld2); in test01()
130 result1 = oss.str(); in test01()
134 oss.str(empty); in test01()
135 oss.clear(); in test01()
136 np.put(oss.rdbuf(), oss, '+', cv); in test01()
137 result1 = oss.str(); in test01()
148 oss.str(empty); in test01()
149 oss.clear(); in test01()
150 np.put(oss.rdbuf(), oss, '+', ll1); in test01()
151 result1 = oss.str(); in test01()