Searched refs:StringRef (Results 1 – 1 of 1) sorted by relevance
/lvgl-latest/src/libs/thorvg/rapidjson/ |
D | document.h | 454 inline GenericStringRef<CharType> StringRef(const CharType* str) { in StringRef() function 474 inline GenericStringRef<CharType> StringRef(const CharType* str, size_t length) { in StringRef() function 492 inline GenericStringRef<CharType> StringRef(const std::basic_string<CharType>& str) { in StringRef() function 764 SetStringRaw(StringRef(rhs.GetString(), rhs.GetStringLength()), allocator); 837 …(const Ch* s, SizeType length) RAPIDJSON_NOEXCEPT : data_() { SetStringRaw(StringRef(s, length)); } 843 … Ch* s, SizeType length, Allocator& allocator) : data_() { SetStringRaw(StringRef(s, length), allo… 846 …GenericValue(const Ch*s, Allocator& allocator) : data_() { SetStringRaw(StringRef(s), allocator); } 852 …td::basic_string<Ch>& s, Allocator& allocator) : data_() { SetStringRaw(StringRef(s), allocator); } 1067 bool operator==(const Ch* rhs) const { return *this == GenericValue(StringRef(rhs)); } 1073 …perator==(const std::basic_string<Ch>& rhs) const { return *this == GenericValue(StringRef(rhs)); } [all …]
|