/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | char_traits.h | 87 template <class _StateT> class fpos { 89 fpos(streamoff __pos) : _M_pos(__pos), _M_st(_STLP_NULL_CHAR_INIT(_StateT)) {} in fpos() function 90 fpos() : _M_pos(0), _M_st(_STLP_NULL_CHAR_INIT(_StateT)) {} in fpos() function 94 bool operator==(const fpos& __y) const 96 bool operator!=(const fpos& __y) const 99 fpos& operator+=(streamoff __off) { 103 fpos& operator-=(streamoff __off) { 108 fpos operator+(streamoff __off) { 109 fpos __tmp(*this); 113 fpos operator-(streamoff __off) { [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | iosfwd | 81 template <class state> class fpos; 82 typedef fpos<char_traits<char>::state_type> streampos; 83 typedef fpos<char_traits<wchar_t>::state_type> wstreampos; 175 template <class _State> class _LIBCPP_TYPE_VIS_ONLY fpos; 176 typedef fpos<mbstate_t> streampos; 177 typedef fpos<mbstate_t> wstreampos; 179 typedef fpos<mbstate_t> u16streampos; 180 typedef fpos<mbstate_t> u32streampos;
|
D | string | 21 class fpos 26 fpos(streamoff = streamoff()); 33 fpos& operator+=(streamoff); 34 fpos operator+ (streamoff) const; 35 fpos& operator-=(streamoff); 36 fpos operator- (streamoff) const; 39 template <class stateT> streamoff operator-(const fpos<stateT>& x, const fpos<stateT>& y); 41 template <class stateT> bool operator==(const fpos<stateT>& x, const fpos<stateT>& y); 42 template <class stateT> bool operator!=(const fpos<stateT>& x, const fpos<stateT>& y); 462 // fpos [all …]
|
D | ios | 24 template <class stateT> class fpos;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/fpos/fpos.members/ |
D | state.pass.cpp | 21 std::fpos<int> f; in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/fpos/fpos.operations/ |
D | ctor_int.pass.cpp | 21 typedef std::fpos<std::mbstate_t> P; in main()
|
D | eq_int.pass.cpp | 21 typedef std::fpos<std::mbstate_t> P; in main()
|
D | offset.pass.cpp | 21 typedef std::fpos<std::mbstate_t> P; in main()
|
D | difference.pass.cpp | 21 typedef std::fpos<std::mbstate_t> P; in main()
|
D | subtraction.pass.cpp | 21 typedef std::fpos<std::mbstate_t> P; in main()
|
D | addition.pass.cpp | 21 typedef std::fpos<std::mbstate_t> P; in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
D | stdio_h.pass.cpp | 86 fpos_t fpos = {0}; in main() local 127 static_assert((std::is_same<decltype(fgetpos(fp, &fpos)), int>::value), ""); in main() 129 static_assert((std::is_same<decltype(fsetpos(fp, &fpos)), int>::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/c.files/ |
D | cstdio.pass.cpp | 87 std::fpos_t fpos = {0}; in main() local 130 static_assert((std::is_same<decltype(std::fgetpos(fp, &fpos)), int>::value), ""); in main() 132 static_assert((std::is_same<decltype(std::fsetpos(fp, &fpos)), int>::value), ""); in main()
|
/ndk/sources/cxx-stl/stlport/stlport/using/ |
D | iosfwd | 16 using _STLP_NEW_IO_NAMESPACE::fpos;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.forward/ |
D | iosfwd.pass.cpp | 138 std::fpos<std::mbstate_t>* t1 = 0; in main()
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | fstream_test.cpp | 628 typedef fpos<state_type> pos_type;
|
/ndk/tests/device/test-stlport/unit/ |
D | fstream_test.cpp | 628 typedef fpos<state_type> pos_type;
|
/ndk/tests/device/test-libc++-static-full/jni/ |
D | Android.mk | 1642 $(call gen-test, input.output/iostreams.base/fpos/fpos.members/state) 1643 $(call gen-test, input.output/iostreams.base/fpos/fpos.operations/addition) 1644 $(call gen-test, input.output/iostreams.base/fpos/fpos.operations/ctor_int) 1645 $(call gen-test, input.output/iostreams.base/fpos/fpos.operations/difference) 1646 $(call gen-test, input.output/iostreams.base/fpos/fpos.operations/eq_int) 1647 $(call gen-test, input.output/iostreams.base/fpos/fpos.operations/offset) 1648 $(call gen-test, input.output/iostreams.base/fpos/fpos.operations/streamsize) 1649 $(call gen-test, input.output/iostreams.base/fpos/fpos.operations/subtraction) 1650 $(call gen-test, input.output/iostreams.base/fpos/nothing_to_do)
|
/ndk/tests/device/test-libc++-shared-full/jni/ |
D | Android.mk | 1651 $(call gen-test, input.output/iostreams.base/fpos/fpos.members/state) 1652 $(call gen-test, input.output/iostreams.base/fpos/fpos.operations/addition) 1653 $(call gen-test, input.output/iostreams.base/fpos/fpos.operations/ctor_int) 1654 $(call gen-test, input.output/iostreams.base/fpos/fpos.operations/difference) 1655 $(call gen-test, input.output/iostreams.base/fpos/fpos.operations/eq_int) 1656 $(call gen-test, input.output/iostreams.base/fpos/fpos.operations/offset) 1657 $(call gen-test, input.output/iostreams.base/fpos/fpos.operations/streamsize) 1658 $(call gen-test, input.output/iostreams.base/fpos/fpos.operations/subtraction) 1659 $(call gen-test, input.output/iostreams.base/fpos/nothing_to_do)
|