Home
last modified time | relevance | path

Searched refs:m_str (Results 1 – 23 of 23) sorted by relevance

/third_party/boost/boost/interprocess/
Dexceptions.hpp42 try { m_str = err; } in interprocess_exception()
51 fill_system_message(m_err.get_native_error(), m_str); in interprocess_exception()
54 m_str = str; in interprocess_exception()
57 m_str = "boost::interprocess_exception::library_error"; in interprocess_exception()
66 { return m_str.c_str(); } in what()
76 std::string m_str; member in boost::interprocess::interprocess_exception
/third_party/boost/libs/iterator/example/
Dfunc_output_iter_example.cpp20 : m_str(&s) in string_appender()
25 *m_str += x; in operator ()()
28 std::string* m_str; member
/third_party/boost/boost/test/utils/
Dwrap_stringstream.hpp57 std::basic_string<CharT> m_str; member in boost::basic_wrap_stringstream
96 m_str.assign( m_stream.str(), m_stream.pcount() ); in str()
99 m_str = m_stream.str(); in str()
102 return m_str; in str()
/third_party/boost/boost/geometry/srs/projections/
Dproj4.hpp35 : m_str(s) in proj4()
39 : m_str(s) in proj4()
44 return m_str; in str()
48 std::string m_str; member
/third_party/boost/libs/iterator/doc/
Dfunction_output_iterator_eg.rst13 : m_str(&s)
18 *m_str += x;
21 std::string* m_str;
/third_party/boost/libs/iterator/doc/quickbook/
Dfunction_output_iterator.qbk16 : m_str(&s)
21 *m_str += x;
24 std::string* m_str;
/third_party/boost/libs/log/src/setup/
Dformatter_parser.cpp159 explicit literal_formatter(string_type&& str) : m_str(boost::move(str))
161 explicit literal_formatter(string_type const& str) : m_str(str)
168 strm << m_str;
172 const string_type m_str;
/third_party/mingw-w64/mingw-w64-headers/include/
Dcomutil.h115 mutable char *m_str; variable
277 inline _bstr_t::Data_t::Data_t(const char *s) : m_str(NULL),m_RefCount(1) { in Data_t()
281 inline _bstr_t::Data_t::Data_t(const wchar_t *s) : m_str(NULL),m_RefCount(1) { in Data_t()
286 inline _bstr_t::Data_t::Data_t(BSTR bstr,bool fCopy) : m_str(NULL),m_RefCount(1) { in Data_t()
293 inline _bstr_t::Data_t::Data_t(const _bstr_t &s1,const _bstr_t &s2) : m_str(NULL),m_RefCount(1) { in Data_t()
328 if(!m_str) m_str = _com_util::ConvertBSTRToString(m_wstr); in GetString()
329 return m_str; in GetString()
343 m_str = 0; in Assign()
349 m_str = 0; in Attach()
385 if(m_str!=NULL) delete [] m_str; in _Free()
/third_party/boost/libs/graph/example/
Dmodify_graph.cpp22 : m_str(x), m_name(name) in name_equals_predicate()
28 return m_str == m_name[e]; in operator ()()
30 std::string m_str; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/DIA/
DDIAUtils.h24 llvm::ArrayRef<char> StrBytes(reinterpret_cast<char *>(Str16.m_str), in invokeBstrMethod()
/third_party/flutter/skia/third_party/externals/angle2/src/third_party/trace_event/
Dtrace_event.h608 explicit TraceStringWithCopy(const char *str) : m_str(str) {} in TraceStringWithCopy()
609 operator const char *() const { return m_str; }
612 const char *m_str;
/third_party/skia/third_party/externals/angle2/src/third_party/trace_event/
Dtrace_event.h610 explicit TraceStringWithCopy(const char *str) : m_str(str) {} in TraceStringWithCopy()
611 operator const char *() const { return m_str; }
614 const char *m_str;
/third_party/skia/third_party/externals/dawn/src/dawn_platform/tracing/
DTraceEvent.h830 explicit TraceStringWithCopy(const char* str) : m_str(str) { in TraceStringWithCopy()
833 return m_str;
837 const char* m_str;
/third_party/ltp/testcases/kernel/fs/ftest/
Dftest04.c202 char *m_str[] = { "fsync", "sync" }; variable
Dftest08.c215 char *m_str[] = { "fsync", "sync" }; variable
Dftest01.c245 char *m_str[] = { "fsync", "trunc", "sync", "fstat" }; variable
Dftest05.c246 char *m_str[] = { "fsync", "trunc", "sync", "fstat" }; variable
Dftest03.c263 char *m_str[] = { variable
Dftest07.c262 char *m_str[] = { "fsync", "trunc", "sync", "fstat" }; variable
/third_party/protobuf/src/google/protobuf/util/internal/testdata/
Dbooks.proto202 optional string m_str = 2; field
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/DIA/
DDIASession.cpp299 Session->findFile(DiaCompiland, Utf16Pattern.m_str, Flags, &SourceFiles)) in findSourceFiles()
DDIARawSymbol.cpp567 const char *SrcBytes = reinterpret_cast<const char *>(Result16.m_str); in getUndecoratedNameEx()
/third_party/json/test/thirdparty/doctest/
Ddoctest.h4267 std::string m_str;
4389 : m_str( str ),
4397 for( std::size_t idx = 0; idx < m_str.size(); ++ idx ) {
4398 uchar c = m_str[idx];
4405 if (idx > 2 && m_str[idx - 1] == ']' && m_str[idx - 2] == ']')
4448 if (idx + encBytes - 1 >= m_str.size()) {
4458 uchar nc = m_str[idx + n];
4479 os << m_str[idx + n];