Home
last modified time | relevance | path

Searched refs:put (Results 1 – 25 of 58) sorted by relevance

123

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_num_put.h60 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put() function
65 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put() function
70 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put() function
76 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put() function
81 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put() function
87 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put() function
93 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put() function
99 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put() function
D_ostream.h96 _Self& put(char_type __c);
358 __os.put(__os.widen('\n')); in endl()
366 __os.put(_STLP_DEFAULT_CONSTRUCTED(_CharT)); in ends()
D_time_facets.h256 _OutIt put(iter_type __s, ios_base& __f, _Ch __fill,
260 _OutIt put(iter_type __s, ios_base& __f, _Ch __fill,
D_monetary.h395 iter_type put(iter_type __s, bool __intl, ios_base& __str, in put() function
398 iter_type put(iter_type __s, bool __intl, ios_base& __str, in put() function
D_ostream.c202 …__failed = (use_facet<_NumPut>(__os.getloc())).put(ostreambuf_iterator<_CharT, _Traits>(__os.rdbuf… in __put_num()
408 basic_ostream<_CharT, _Traits>::put(char_type __c) { in put() function
/ndk/sources/cxx-stl/stlport/src/
Dstrstream.cpp60 strstreambuf::strstreambuf(char* get, streamsize n, char* put) in strstreambuf() argument
63 _M_setup(get, put, n); in strstreambuf()
66 strstreambuf::strstreambuf(signed char* get, streamsize n, signed char* put) in strstreambuf() argument
69 _M_setup(__REINTERPRET_CAST(char*,get), __REINTERPRET_CAST(char*,put), n); in strstreambuf()
73 unsigned char* put) in strstreambuf() argument
76 _M_setup(__REINTERPRET_CAST(char*,get), __REINTERPRET_CAST(char*,put), n); in strstreambuf()
277 void strstreambuf::_M_setup(char* get, char* put, streamsize n) { in _M_setup() argument
281 if (put) { in _M_setup()
283 setp(put, put + N); in _M_setup()
Dlocale_impl.cpp306 locale::facet *put = 0; in insert_time_facets() local
326 put = new time_put_byname<char, ostreambuf_iterator<char, char_traits<char> > >(__time); in insert_time_facets()
333 _STLP_UNWIND(delete wget; delete put; delete get; _STLP_PRIV __release_time(__time)); in insert_time_facets()
341 this->insert(put, time_put<char, ostreambuf_iterator<char, char_traits<char> > >::id); in insert_time_facets()
/ndk/tests/device/test-stlport/unit/
Dtime_facets_test.cpp37 …time_put_facet::iter_type ret = tmp.put(ostr, ostr, ' ', &xmas, format.data(), format.data() + for… in _time_put_get()
74 ret = tmp.put(ostrX, ostrX, ' ', &xmas, format.data(), format.data() + format.size()); in _time_put_get()
119 …time_put_facet::iter_type ret = tmp.put(ostr, ostr, ' ', &xmas, format.data(), format.data() + for… in _time_put_get()
157 ret = tmp.put(ostrX, ostrX, ' ', &xmas, format.data(), format.data() + format.size()); in _time_put_get()
Dnum_facets_test.cpp112 nput.put(fostr, fostr, ' ', infinity); in _num_put_get()
125 nput.put(fostr, fostr, ' ', qnan); in _num_put_get()
Dmoney_facets_test.cpp77 ostreambuf_iterator<char, char_traits<char> > res = fmp.put(ostr, true, ostr, ' ', 123456); in _money_put_get2()
192 ostreambuf_iterator<char, char_traits<char> > res = fmp.put(ostr, false, ostr, ' ', -123456); in _money_put_get2()
297 ostreambuf_iterator<char, char_traits<char> > res = fmp.put(ostr, false, ostr, ' ', 9); in _money_put_X_bug()
359 ostreambuf_iterator<char, char_traits<char> > res = fmp.put(ostr, false, ostr, ' ', 90); in _money_put_X_bug()
/ndk/tests/device/test-gnustl-full/unit/
Dtime_facets_test.cpp37 …time_put_facet::iter_type ret = tmp.put(ostr, ostr, ' ', &xmas, format.data(), format.data() + for… in _time_put_get()
74 ret = tmp.put(ostrX, ostrX, ' ', &xmas, format.data(), format.data() + format.size()); in _time_put_get()
119 …time_put_facet::iter_type ret = tmp.put(ostr, ostr, ' ', &xmas, format.data(), format.data() + for… in _time_put_get()
157 ret = tmp.put(ostrX, ostrX, ' ', &xmas, format.data(), format.data() + format.size()); in _time_put_get()
Dnum_facets_test.cpp112 nput.put(fostr, fostr, ' ', infinity); in _num_put_get()
125 nput.put(fostr, fostr, ' ', qnan); in _num_put_get()
Dmoney_facets_test.cpp77 ostreambuf_iterator<char, char_traits<char> > res = fmp.put(ostr, true, ostr, ' ', 123456); in _money_put_get2()
192 ostreambuf_iterator<char, char_traits<char> > res = fmp.put(ostr, false, ostr, ' ', -123456); in _money_put_get2()
297 ostreambuf_iterator<char, char_traits<char> > res = fmp.put(ostr, false, ostr, ' ', 9); in _money_put_X_bug()
359 ostreambuf_iterator<char, char_traits<char> > res = fmp.put(ostr, false, ostr, ' ', 90); in _money_put_X_bug()
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/
Dshell15 # This is the test that fails if we try to put make exported variables into
Dwildcard4 expansions and the ability to put a command on the same
/ndk/sources/host-tools/sed-4.2.1/testsuite/
Dmadding.sed8put forth as to make it rash to assert that intention had any part in them at all. The waggoner's…
Dmadding.good1 … so idly put forth as to make it rash to assert that intention had any part in them at all. The w…
Dmadding.inp1 … so idly put forth as to make it rash to assert that intention had any part in them at all. The w…
/ndk/sources/host-tools/sed-4.2.1/m4/
Dstdint.m4308 dnl - extra AH_TEMPLATE calls, so that autoheader knows what to put into
346 dnl - extra AH_TEMPLATE calls, so that autoheader knows what to put into
379 dnl - extra AH_TEMPLATE calls, so that autoheader knows what to put into
Dstdio_h.m4126 /* Cygwin 1.5.24 and earlier fail to put stdin in 64-bit mode, making
/ndk/sources/host-tools/make-3.81/
DSMakefile95 # Number to put on the man page filename.
97 # Prefix to put on installed `make' binary file name.
99 # Prefix to put on installed `make' man page file name.
DNEWS526 You should never put a NUL in a makefile because it can have strange
555 When Make attempted to put this variable in the environment for a target
644 no longer automatically put into the environments of the commands that
704 * The `-I' switch can now be used in MAKEFLAGS, and are put there
736 * The -n, -q, and -t options are not put in the `MAKEFLAGS' and `MFLAG'
761 * Variables which are defined by default (e.g., `CC') will no longer be put
836 * The `-j' switch is now put in the MAKEFLAGS and MFLAGS variables when
838 The `-l' switch is not always put in the MAKEFLAGS and MFLAGS variables.
946 * Variables that are defaults built into Make will not be put in the
/ndk/build/tools/toolchain-patches/gcc/
D0002-gcc-prevent-crash-on-Eclair-and-older-platforms.patch22 which put them in libpthread.so (and provide weak stubs in libc.so).
/ndk/sources/host-tools/make-3.81/tests/scripts/misc/
Dgeneral3193 # Test the slow path / no quotes. This time we put the slow path
/ndk/sources/host-tools/make-3.81/doc/
Dmake-stds.texi131 build directory. So Makefile rules to update them should put the
135 Makefile should not put it in the source directory, because building a
396 to put these various kinds of files in:
447 operation; put such configuration information in separate files that go
492 To tell whether @file{foo.h} came from the Foo package, put a magic
608 # Where to put the executable for the command `gcc'.
610 # Where to put the directories used by the compiler.
612 # Where to put the Info files.

123