Home
last modified time | relevance | path

Searched refs:str_base (Results 1 – 3 of 3) sorted by relevance

/third_party/boost/libs/python/src/
Dstr.cpp10 detail::new_reference str_base::call(object const& arg_) in call()
22 str_base::str_base() in str_base() function in boost::python::detail::str_base
32 str_base::str_base(const char* s) in str_base() function in boost::python::detail::str_base
55 str_base::str_base(char const* start, char const* finish) in str_base() function in boost::python::detail::str_base
68 str_base::str_base(char const* start, std::size_t length) // new str in str_base() function in boost::python::detail::str_base
81 str_base::str_base(object_cref other) in str_base() function in boost::python::detail::str_base
82 : object(str_base::call(other)) in str_base()
89 str str_base:: name ( BOOST_PP_ENUM_PARAMS(arity, object_cref x) ) const \
103 long str_base::count(object_cref sub) const in count()
108 long str_base::count(object_cref sub, object_cref start) const in count()
[all …]
/third_party/musl/porting/liteos_a/user_debug/src/malloc/
Dbacktrace.c55 char *str_base = NULL; in backtrace_symbols() local
89 str_base = (char *)(string + size); in backtrace_symbols()
94 strcpy(str_base, str_location[i]); in backtrace_symbols()
95 string[i] = str_base; in backtrace_symbols()
96 str_base += strlen(string[i]) + 1; in backtrace_symbols()
/third_party/boost/boost/python/
Dstr.hpp28 struct BOOST_PYTHON_DECL str_base : object struct
127 str_base(); // new str
129 str_base(const char* s); // new str
131 str_base(char const* start, char const* finish);
133 str_base(char const* start, std::size_t length);
135 explicit str_base(object_cref other);
137 BOOST_PYTHON_FORWARD_OBJECT_CONSTRUCTORS(str_base, object)
144 class str : public detail::str_base
146 typedef detail::str_base base;