Lines Matching refs:str
59 void cxxbridge1$str$new(rust::Str *self) noexcept;
60 void cxxbridge1$str$ref(rust::Str *self, const rust::String *string) noexcept;
61 bool cxxbridge1$str$from(rust::Str *self, const char *ptr,
63 const char *cxxbridge1$str$ptr(const rust::Str *self) noexcept;
64 std::size_t cxxbridge1$str$len(const rust::Str *self) noexcept;
292 Str::Str() noexcept { cxxbridge1$str$new(this); }
294 Str::Str(const String &s) noexcept { cxxbridge1$str$ref(this, &s); }
297 if (!cxxbridge1$str$from(self, ptr, len)) {
320 const char *Str::data() const noexcept { return cxxbridge1$str$ptr(this); }
322 std::size_t Str::size() const noexcept { return cxxbridge1$str$len(this); }
773 MACRO(str, rust::Str)