• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-armeabi-2013.11/arm-none-eabi/include/c++/4.8.1/bits/

Lines Matching refs:ios_base

43 #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,
1564 _S_format_float(const ios_base& __io, char* __fptr, char __mod) throw();
1944 * If ios_base::boolalpha is set, attempts to read
1947 * ios_base::failbit if reading the string fails. Sets err to
1948 * ios_base::eofbit if the stream is emptied.
1950 * If ios_base::boolalpha is not set, proceeds as with reading a long,
1952 * @a v to false, and otherwise set err to ios_base::failbit.
1962 get(iter_type __in, iter_type __end, ios_base& __io,
1963 ios_base::iostate& __err, bool& __v) const
1976 * ios_base::basefield. If equal to ios_base::oct, parses like the
1977 * scanf %o specifier. Else if equal to ios_base::hex, parses like %X
1985 * ios_base::failbit.
1988 * Otherwise, sets err to ios_base::failbit and leaves @a v unaltered.
1989 * Sets err to ios_base::eofbit if the stream is emptied.
1999 get(iter_type __in, iter_type __end, ios_base& __io,
2000 ios_base::iostate& __err, long& __v) const
2004 get(iter_type __in, iter_type __end, ios_base& __io,
2005 ios_base::iostate& __err, unsigned short& __v) const
2009 get(iter_type __in, iter_type __end, ios_base& __io,
2010 ios_base::iostate& __err, unsigned int& __v) const
2014 get(iter_type __in, iter_type __end, ios_base& __io,
2015 ios_base::iostate& __err, unsigned long& __v) const
2020 get(iter_type __in, iter_type __end, ios_base& __io,
2021 ios_base::iostate& __err, long long& __v) const
2025 get(iter_type __in, iter_type __end, ios_base& __io,
2026 ios_base::iostate& __err, unsigned long long& __v) const
2045 * ios_base::failbit.
2048 * Otherwise, sets err to ios_base::failbit and leaves @a v unaltered.
2049 * Sets err to ios_base::eofbit if the stream is emptied.
2059 get(iter_type __in, iter_type __end, ios_base& __io,
2060 ios_base::iostate& __err, float& __v) const
2064 get(iter_type __in, iter_type __end, ios_base& __io,
2065 ios_base::iostate& __err, double& __v) const
2069 get(iter_type __in, iter_type __end, ios_base& __io,
2070 ios_base::iostate& __err, long double& __v) const
2085 * ios_base::failbit.
2091 * Otherwise, sets err to ios_base::failbit and leaves @a v unaltered.
2092 * Sets err to ios_base::eofbit if the stream is emptied.
2102 get(iter_type __in, iter_type __end, ios_base& __io,
2103 ios_base::iostate& __err, void*& __v) const
2111 _M_extract_float(iter_type, iter_type, ios_base&, ios_base::iostate&,
2116 _M_extract_int(iter_type, iter_type, ios_base&, ios_base::iostate&,
2173 do_get(iter_type, iter_type, ios_base&, ios_base::iostate&, bool&) const;
2176 do_get(iter_type __beg, iter_type __end, ios_base& __io,
2177 ios_base::iostate& __err, long& __v) const
2181 do_get(iter_type __beg, iter_type __end, ios_base& __io,
2182 ios_base::iostate& __err, unsigned short& __v) const
2186 do_get(iter_type __beg, iter_type __end, ios_base& __io,
2187 ios_base::iostate& __err, unsigned int& __v) const
2191 do_get(iter_type __beg, iter_type __end, ios_base& __io,
2192 ios_base::iostate& __err, unsigned long& __v) const
2197 do_get(iter_type __beg, iter_type __end, ios_base& __io,
2198 ios_base::iostate& __err, long long& __v) const
2202 do_get(iter_type __beg, iter_type __end, ios_base& __io,
2203 ios_base::iostate& __err, unsigned long long& __v) const
2208 do_get(iter_type, iter_type, ios_base&, ios_base::iostate&, float&) const;
2211 do_get(iter_type, iter_type, ios_base&, ios_base::iostate&,
2217 __do_get(iter_type, iter_type, ios_base&, ios_base::iostate&,
2221 do_get(iter_type, iter_type, ios_base&, ios_base::iostate&,
2226 do_get(iter_type, iter_type, ios_base&, ios_base::iostate&, void*&) const;
2231 do_get(iter_type, iter_type, ios_base&, ios_base::iostate&,
2283 * If ios_base::boolalpha is set, writes ctype<CharT>::truename() or
2293 put(iter_type __s, ios_base& __io, char_type __fill, bool __v) const
2306 * ios_base::basefield. If equal to ios_base::oct, formats like the
2307 * printf %o specifier. Else if equal to ios_base::hex, formats like
2308 * %x or %X with ios_base::uppercase unset or set respectively.
2313 * If ios_base::showpos is set, '+' is output before positive values.
2314 * If ios_base::showbase is set, '0' precedes octal values (except 0)
2323 * (io.flags() & ios_base::adjustfield) == ios_base::left, result is
2324 * padded at the end. If ios_base::internal, then padding occurs
2335 put(iter_type __s, ios_base& __io, char_type __fill, long __v) const
2339 put(iter_type __s, ios_base& __io, char_type __fill,
2345 put(iter_type __s, ios_base& __io, char_type __fill, long long __v) const
2349 put(iter_type __s, ios_base& __io, char_type __fill,
2365 * ios_base::floatfield. If equal to ios_base::fixed, formats like the
2366 * printf %f specifier. Else if equal to ios_base::scientific, formats
2367 * like %e or %E with ios_base::uppercase unset or set respectively.
2376 * If ios_base::showpos is set, '+' is output before positive values.
2377 * If ios_base::showpoint is set, a decimal point will always be
2386 * (io.flags() & ios_base::adjustfield) == ios_base::left, result is
2387 * padded at the end. If ios_base::internal, then padding occurs
2398 put(iter_type __s, ios_base& __io, char_type __fill, double __v) const
2402 put(iter_type __s, ios_base& __io, char_type __fill,
2413 * This function formats @a v as an unsigned long with ios_base::hex
2414 * and ios_base::showbase set.
2423 put(iter_type __s, ios_base& __io, char_type __fill,
2430 _M_insert_float(iter_type, ios_base& __io, char_type __fill,
2440 _M_insert_int(iter_type, ios_base& __io, char_type __fill,
2445 char_type __sep, ios_base& __io, char_type* __new,
2449 _M_pad(char_type __fill, streamsize __w, ios_base& __io,
2471 do_put(iter_type __s, ios_base& __io, char_type __fill, bool __v) const;
2474 do_put(iter_type __s, ios_base& __io, char_type __fill, long __v) const
2478 do_put(iter_type __s, ios_base& __io, char_type __fill,
2484 do_put(iter_type __s, ios_base& __io, char_type __fill,
2489 do_put(iter_type __s, ios_base& __io, char_type __fill,
2495 do_put(iter_type, ios_base&, char_type, double) const;
2500 __do_put(iter_type, ios_base&, char_type, double) const;
2503 do_put(iter_type, ios_base&, char_type, long double) const;
2507 do_put(iter_type, ios_base&, char_type, const void*) const;
2512 do_put(iter_type, ios_base&, char_type, long double) const;