Home
last modified time | relevance | path

Searched refs:_ostr (Results 1 – 25 of 29) sorted by relevance

12

/dports/devel/poco/poco-1.10.1-all/Foundation/src/
H A DBinaryWriter.cpp26 _ostr(ostr), in BinaryWriter()
38 _ostr(ostr), in BinaryWriter()
188 _ostr.write(--ptr, 1); in operator <<()
205 _ostr.write(--ptr, 1); in operator <<()
259 _ostr.write(converted.data(), length); in operator <<()
265 _ostr.write(value.data(), length); in operator <<()
287 _ostr.write(value, length); in operator <<()
300 _ostr.write((const char*) &c, 1); in write7BitEncoded()
316 _ostr.write((const char*) &c, 1); in write7BitEncoded()
333 _ostr.write(buffer, length); in writeRaw()
[all …]
/dports/math/openmesh/OpenMesh-8.1/src/OpenMesh/Core/Mesh/
H A DBaseKernel.cc64 _ostr << vprops_.size() << " vprops:\n"; in property_stats()
67 *it == nullptr ? (void)(_ostr << "[deleted]" << "\n") : (*it)->stats(_ostr); in property_stats()
72 *it == nullptr ? (void)(_ostr << "[deleted]" << "\n") : (*it)->stats(_ostr); in property_stats()
77 *it == nullptr ? (void)(_ostr << "[deleted]" << "\n") : (*it)->stats(_ostr); in property_stats()
82 *it == nullptr ? (void)(_ostr << "[deleted]" << "\n") : (*it)->stats(_ostr); in property_stats()
87 *it == nullptr ? (void)(_ostr << "[deleted]" << "\n") : (*it)->stats(_ostr); in property_stats()
181 *it == nullptr ? (void)(_ostr << "[deleted]" << "\n") : (*it)->stats(_ostr); in vprop_stats()
193 *it == nullptr ? (void)(_ostr << "[deleted]" << "\n") : (*it)->stats(_ostr); in hprop_stats()
205 *it == nullptr ? (void)(_ostr << "[deleted]" << "\n") : (*it)->stats(_ostr); in eprop_stats()
217 *it == nullptr ? (void)(_ostr << "[deleted]" << "\n") : (*it)->stats(_ostr); in fprop_stats()
[all …]
H A DBaseKernel.hh759 void property_stats(std::ostream& _ostr) const;
774 void vprop_stats(std::ostream& _ostr) const;
775 void hprop_stats(std::ostream& _ostr) const;
776 void eprop_stats(std::ostream& _ostr) const;
777 void fprop_stats(std::ostream& _ostr) const;
778 void mprop_stats(std::ostream& _ostr) const;
/dports/devel/poco/poco-1.10.1-all/Foundation/include/Poco/
H A DBinaryWriter.h161 std::ostream& _ostr;
173 BinaryWriter(_ostr, byteOrder), in BinaryWriter() argument
175 _ostr(data.begin(), data.capacity()) in BinaryWriter()
182 _ostr(data.begin(), data.capacity()) in BinaryWriter()
210 return _ostr; in stream()
215 return _ostr; in stream()
220 MemoryOutputStream _ostr; variable
234 return _ostr; in stream()
240 return _ostr.good(); in good()
246 return _ostr.fail(); in fail()
[all …]
/dports/devel/poco/poco-1.10.1-all/Net/src/
H A DMultipartWriter.cpp30 _ostr(ostr), in MultipartWriter()
38 _ostr(ostr), in MultipartWriter()
57 _ostr << "\r\n"; in nextPart()
58 _ostr << "--" << _boundary << "\r\n"; in nextPart()
59 header.write(_ostr); in nextPart()
60 _ostr << "\r\n"; in nextPart()
66 _ostr << "\r\n--" << _boundary << "--\r\n"; in close()
H A DQuotedPrintableEncoder.cpp30 _ostr(ostr) in QuotedPrintableEncoderBuf()
80 _ostr << "=\r\n"; in writeEncoded()
84 _ostr << '=' << NumberFormatter::formatHex((unsigned) charToInt(c), 2); in writeEncoded()
92 _ostr.put(c); in writeRaw()
97 _ostr.put(c); in writeRaw()
102 _ostr << "=\r\n" << c; in writeRaw()
111 return _ostr ? 0 : -1; in close()
/dports/devel/poco/poco-1.10.1-all/CppUnit/src/
H A DTestRunner.cpp18 _ostr(std::cout) in TestRunner()
24 _ostr(ostr) in TestRunner()
38 _ostr in printBanner()
119 _ostr << "Test " << testCase << " not found." << std::endl; in run()
133 TextTestResult result(_ostr, ignore); in run()
145 _ostr << result << std::endl; in run()
156 _ostr << "<RETURN> to continue" << std::endl; in run()
173 _ostr << " "; in print()
174 _ostr << name << std::endl; in print()
H A DTextTestResult.cpp23 _ostr(std::cout) in TextTestResult()
29 _ostr(std::cout) in TextTestResult()
60 _ostr(ostr) in TextTestResult()
66 _ostr(ostr) in TextTestResult()
124 _ostr << "ERROR" << std::flush; in addError()
128 _ostr << "ERROR (ignored)" << std::flush; in addError()
138 _ostr << "FAILURE" << std::flush; in addFailure()
142 _ostr << "FAILURE (ignored)" << std::flush; in addFailure()
150 _ostr << "\n" << shortName(test->toString()) << ": " << std::flush; in startTest()
/dports/math/openmesh/OpenMesh-8.1/src/OpenMesh/Core/Utils/
H A DBaseProperty.cc49 void BaseProperty::stats(std::ostream& _ostr) const in stats()
51 _ostr << " " << name() << (persistent() ? ", persistent " : "") << "\n"; in stats()
H A DProperty.hh148 virtual size_t store( std::ostream& _ostr, bool _swap ) const override in store() argument
151 return IO::store(_ostr, data_, _swap ); in store()
154 bytes += IO::store( _ostr, data_[i], _swap ); in store()
265 size_t store( std::ostream& _ostr, bool /* _swap */ ) const override in store() argument
286 _ostr << bits; in store()
295 _ostr << bits; in store()
429 size_t store( std::ostream& _ostr, bool _swap ) const override in store() argument
430 { return IO::store( _ostr, data_, _swap ); } in store()
H A DBaseProperty.hh125 virtual void stats(std::ostream& _ostr) const;
158 virtual size_t store( std::ostream& _ostr, bool _swap ) const = 0;
/dports/math/openmesh/OpenMesh-8.1/src/OpenMesh/Tools/Utils/
H A DTestingFramework.hh212 TestFunc& info(const std::ostringstream& _ostr) in info() argument
213 { th_.info(_ostr); return *this; } in info()
302 Self& info(const std::ostringstream& _ostr) in info() argument
304 os_ << " + " << _ostr.str() << std::endl; in info()
/dports/misc/usd/USD-21.11/pxr/base/tf/testenv/
H A DfileUtils.cpp425 : _ostr(ostr), _stopPath(stopPath) in Tf_WalkLogger()
437 *_ostr << "('" << dirpath << "', "; in operator ()()
445 *_ostr << "['" << TfStringJoin(*dirnames, "', '") << "'], "; in operator ()()
447 *_ostr << "[], "; in operator ()()
450 *_ostr << "['" << TfStringJoin(filenames, "', '") << "'])" << endl; in operator ()()
452 *_ostr << "[])" << endl; in operator ()()
458 std::ostream* _ostr; member
/dports/devel/poco/poco-1.10.1-all/Net/include/Poco/Net/
H A DMultipartWriter.h91 std::ostream& _ostr; variable
102 return _ostr; in stream()
H A DQuotedPrintableEncoder.h47 std::ostream& _ostr; variable
/dports/math/openmesh/OpenMesh-8.1/src/OpenMesh/Core/IO/
H A DSR_binary_vector_of_bool.inl17 size_t store( std::ostream& _ostr, const value_type& _v, bool )
37 _ostr << bits;
54 _ostr << bits;
/dports/devel/poco/poco-1.10.1-all/Data/src/
H A DStatementImpl.cpp51 _ostr(), in StatementImpl()
470 Poco::format(sql, _ostr.str(), arguments); in formatSQL()
471 _ostr.str(""); in formatSQL()
472 _ostr << sql; in formatSQL()
/dports/devel/poco/poco-1.10.1-all/Data/include/Poco/Data/
H A DStatementImpl.h106 _ostr << t; in add()
441 std::ostringstream _ostr; variable
467 return _ostr.str(); in toString()
/dports/devel/tbb/oneTBB-2020.3/examples/parallel_reduce/convex_hull/
H A Dconvex_hull.h132 ostream& operator <<(ostream& _ostr, point<T> _p) {
133 return _ostr << '(' << _p.x << ',' << _p.y << ')';
/dports/devel/taskflow/taskflow-3.2.0/3rd-party/tbb/examples/parallel_reduce/convex_hull/
H A Dconvex_hull.h132 ostream& operator <<(ostream& _ostr, point<T> _p) {
133 return _ostr << '(' << _p.x << ',' << _p.y << ')';
/dports/devel/onetbb/oneTBB-2021.4.0/examples/parallel_reduce/convex_hull/
H A Dconvex_hull.hpp138 std::ostream& operator<<(std::ostream& _ostr, point<T> _p) { in operator <<() argument
139 return _ostr << '(' << _p.x << ',' << _p.y << ')'; in operator <<()
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/acro/tpl/cxxtest/cxxtest/
H A DXmlFormatter.h247 : _o(o), _ostr(ostr), _os(os), stream_redirect(NULL) in XmlFormatter()
315 (*curr).write(*_ostr); in leaveSuite()
513 return _ostr; in outputFileStream()
567 OutputStream *_ostr; variable
/dports/devel/cxxtest/cxxtest-4.4/cxxtest/
H A DXmlFormatter.h263 : _o(o), _ostr(ostr), _os(os), stream_redirect(NULL) in XmlFormatter()
339 (*curr).write(*_ostr); in leaveSuite()
554 return _ostr; in outputFileStream()
656 OutputStream *_ostr; variable
/dports/games/0ad/0ad-0.0.23b-alpha/libraries/source/cxxtest-4.4/cxxtest/
H A DXmlFormatter.h263 : _o(o), _ostr(ostr), _os(os), stream_redirect(NULL) in XmlFormatter()
339 (*curr).write(*_ostr); in leaveSuite()
554 return _ostr; in outputFileStream()
656 OutputStream *_ostr; variable
/dports/www/py-spyne/spyne-2.13.16/spyne/server/
H A Dnull.py112 self._ostr = ostr
221 if cnt == 0 and fc._ostr:

12