Lines Matching refs:this
51 size_t GetLength() const { return (*this)->GetLength(); } in GetLength()
53 size_t GetDataSize() const { return ((*this)->GetLength() + 1) * sizeof(Char); } in GetDataSize()
54 const void* GetDataBuffer() const { return &((*this)[0]); } in GetDataBuffer()
56 const Char* GetString() const { return (*this)->GetString(); } in GetString()
58 operator const Char*() const { return (*this)->GetString(); }
59 const Char& operator[](int i) const { return (**this)[i]; }
60 operator bool() const { return (*this)->IsValid(); }
61 bool operator!() const { return !(*this)->IsValid(); }
65 Updater(*this)->EraseHead(size); in EraseHead()
71 const Char* s = *this; in GetArchiveNameLength()
84 nn::dbg::detail::Printf("SafePath::PRINT \"%ls\"\n", (*this)->GetString()); in PRINT()