• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/arm-linux/include/c++/4.5.3/bits/

Lines Matching refs:ios_base

45 #include <bits/ios_base.h>  // For ios_base, ios_base::iostate
66 __convert_to_v(const char*, _Tp&, ios_base::iostate&,
72 __convert_to_v(const char*, float&, ios_base::iostate&,
77 __convert_to_v(const char*, double&, ios_base::iostate&,
82 __convert_to_v(const char*, long double&, ios_base::iostate&,
91 _S_pad(ios_base& __io, _CharT __fill, _CharT* __news,
1560 _S_format_float(const ios_base& __io, char* __fptr, char __mod) throw();
1938 * If ios_base::boolalpha is set, attempts to read
1941 * ios_base::failbit if reading the string fails. Sets err to
1942 * ios_base::eofbit if the stream is emptied.
1944 * If ios_base::boolalpha is not set, proceeds as with reading a long,
1946 * @a v to false, and otherwise set err to ios_base::failbit.
1956 get(iter_type __in, iter_type __end, ios_base& __io,
1957 ios_base::iostate& __err, bool& __v) const
1970 * ios_base::basefield. If equal to ios_base::oct, parses like the
1971 * scanf %o specifier. Else if equal to ios_base::hex, parses like %X
1978 * consistent, sets err to ios_base::failbit.
1981 * Otherwise, sets err to ios_base::failbit and leaves @a v unaltered.
1982 * Sets err to ios_base::eofbit if the stream is emptied.
1992 get(iter_type __in, iter_type __end, ios_base& __io,
1993 ios_base::iostate& __err, long& __v) const
1997 get(iter_type __in, iter_type __end, ios_base& __io,
1998 ios_base::iostate& __err, unsigned short& __v) const
2002 get(iter_type __in, iter_type __end, ios_base& __io,
2003 ios_base::iostate& __err, unsigned int& __v) const
2007 get(iter_type __in, iter_type __end, ios_base& __io,
2008 ios_base::iostate& __err, unsigned long& __v) const
2013 get(iter_type __in, iter_type __end, ios_base& __io,
2014 ios_base::iostate& __err, long long& __v) const
2018 get(iter_type __in, iter_type __end, ios_base& __io,
2019 ios_base::iostate& __err, unsigned long long& __v) const
2037 * consistent, sets err to ios_base::failbit.
2040 * Otherwise, sets err to ios_base::failbit and leaves @a v unaltered.
2041 * Sets err to ios_base::eofbit if the stream is emptied.
2051 get(iter_type __in, iter_type __end, ios_base& __io,
2052 ios_base::iostate& __err, float& __v) const
2056 get(iter_type __in, iter_type __end, ios_base& __io,
2057 ios_base::iostate& __err, double& __v) const
2061 get(iter_type __in, iter_type __end, ios_base& __io,
2062 ios_base::iostate& __err, long double& __v) const
2076 * consistent, sets err to ios_base::failbit.
2082 * Otherwise, sets err to ios_base::failbit and leaves @a v unaltered.
2083 * Sets err to ios_base::eofbit if the stream is emptied.
2093 get(iter_type __in, iter_type __end, ios_base& __io,
2094 ios_base::iostate& __err, void*& __v) const
2102 _M_extract_float(iter_type, iter_type, ios_base&, ios_base::iostate&,
2107 _M_extract_int(iter_type, iter_type, ios_base&, ios_base::iostate&,
2164 do_get(iter_type, iter_type, ios_base&, ios_base::iostate&, bool&) const;
2167 do_get(iter_type __beg, iter_type __end, ios_base& __io,
2168 ios_base::iostate& __err, long& __v) const
2172 do_get(iter_type __beg, iter_type __end, ios_base& __io,
2173 ios_base::iostate& __err, unsigned short& __v) const
2177 do_get(iter_type __beg, iter_type __end, ios_base& __io,
2178 ios_base::iostate& __err, unsigned int& __v) const
2182 do_get(iter_type __beg, iter_type __end, ios_base& __io,
2183 ios_base::iostate& __err, unsigned long& __v) const
2188 do_get(iter_type __beg, iter_type __end, ios_base& __io,
2189 ios_base::iostate& __err, long long& __v) const
2193 do_get(iter_type __beg, iter_type __end, ios_base& __io,
2194 ios_base::iostate& __err, unsigned long long& __v) const
2199 do_get(iter_type, iter_type, ios_base&, ios_base::iostate& __err,
2203 do_get(iter_type, iter_type, ios_base&, ios_base::iostate& __err,
2209 __do_get(iter_type, iter_type, ios_base&, ios_base::iostate& __err,
2213 do_get(iter_type, iter_type, ios_base&, ios_base::iostate& __err,
2218 do_get(iter_type, iter_type, ios_base&, ios_base::iostate& __err,
2224 do_get(iter_type, iter_type, ios_base&, ios_base::iostate& __err,
2276 * If ios_base::boolalpha is set, writes ctype<CharT>::truename() or
2286 put(iter_type __s, ios_base& __f, char_type __fill, bool __v) const
2299 * ios_base::basefield. If equal to ios_base::oct, formats like the
2300 * printf %o specifier. Else if equal to ios_base::hex, formats like
2301 * %x or %X with ios_base::uppercase unset or set respectively.
2306 * If ios_base::showpos is set, '+' is output before positive values.
2307 * If ios_base::showbase is set, '0' precedes octal values (except 0)
2316 * (io.flags() & ios_base::adjustfield) == ios_base::left, result is
2317 * padded at the end. If ios_base::internal, then padding occurs
2328 put(iter_type __s, ios_base& __f, char_type __fill, long __v) const
2332 put(iter_type __s, ios_base& __f, char_type __fill,
2338 put(iter_type __s, ios_base& __f, char_type __fill, long long __v) const
2342 put(iter_type __s, ios_base& __f, char_type __fill,
2358 * ios_base::floatfield. If equal to ios_base::fixed, formats like the
2359 * printf %f specifier. Else if equal to ios_base::scientific, formats
2360 * like %e or %E with ios_base::uppercase unset or set respectively.
2369 * If ios_base::showpos is set, '+' is output before positive values.
2370 * If ios_base::showpoint is set, a decimal point will always be
2379 * (io.flags() & ios_base::adjustfield) == ios_base::left, result is
2380 * padded at the end. If ios_base::internal, then padding occurs
2391 put(iter_type __s, ios_base& __f, char_type __fill, double __v) const
2395 put(iter_type __s, ios_base& __f, char_type __fill,
2406 * This function formats @a v as an unsigned long with ios_base::hex
2407 * and ios_base::showbase set.
2416 put(iter_type __s, ios_base& __f, char_type __fill,
2423 _M_insert_float(iter_type, ios_base& __io, char_type __fill,
2433 _M_insert_int(iter_type, ios_base& __io, char_type __fill,
2438 char_type __sep, ios_base& __io, char_type* __new,
2442 _M_pad(char_type __fill, streamsize __w, ios_base& __io,
2464 do_put(iter_type, ios_base&, char_type __fill, bool __v) const;
2467 do_put(iter_type __s, ios_base& __io, char_type __fill, long __v) const
2471 do_put(iter_type __s, ios_base& __io, char_type __fill,
2477 do_put(iter_type __s, ios_base& __io, char_type __fill,
2482 do_put(iter_type __s, ios_base& __io, char_type __fill,
2488 do_put(iter_type, ios_base&, char_type __fill, double __v) const;
2493 __do_put(iter_type, ios_base&, char_type __fill, double __v) const;
2496 do_put(iter_type, ios_base&, char_type __fill, long double __v) const;
2500 do_put(iter_type, ios_base&, char_type __fill, const void* __v) const;
2505 do_put(iter_type, ios_base&, char_type __fill, long double __v) const;