Home
last modified time | relevance | path

Searched refs:sstr (Results 1 – 4 of 4) sorted by relevance

/external/stlport/test/unit/
Dbitset_test.cpp82 stringstream sstr; in iostream() local
84 sstr << b; in iostream()
85 CPPUNIT_ASSERT( sstr.str() == "1000100010001" ); in iostream()
88 sstr >> b1; in iostream()
96 wstringstream sstr; in iostream() local
98 sstr << b; in iostream()
99 CPPUNIT_ASSERT( sstr.str() == L"1000100010001" ); in iostream()
102 sstr >> b1; in iostream()
/external/chromium/third_party/libjingle/source/talk/base/
Dlinux.cc220 std::ostringstream sstr; in ReadLinuxLsbRelease() local
227 sstr << "DISTRIB_ID=" << line; in ReadLinuxLsbRelease()
232 sstr << " DISTRIB_DESCRIPTION=\"" << line << '"'; in ReadLinuxLsbRelease()
237 sstr << " DISTRIB_RELEASE=" << line; in ReadLinuxLsbRelease()
242 sstr << " DISTRIB_CODENAME=" << line; in ReadLinuxLsbRelease()
255 lsb_release_string = sstr.str(); in ReadLinuxLsbRelease()
266 std::ostringstream sstr; in ReadLinuxUname() local
267 sstr << buf.sysname << " " in ReadLinuxUname()
271 return sstr.str(); in ReadLinuxUname()
/external/openssl/crypto/asn1/
Dp5_pbe.c82 unsigned char *sstr; variable
104 sstr = ASN1_STRING_data(pbe->salt);
106 memcpy(sstr, salt, saltlen);
107 else if (RAND_pseudo_bytes(sstr, saltlen) < 0)
/external/eigen/Eigen/src/Core/
DIO.h195 std::stringstream sstr;
196 if(explicit_precision) sstr.precision(explicit_precision);
197 sstr << m.coeff(i,j);
198 width = std::max<Index>(width, Index(sstr.str().length()));