Home
last modified time | relevance | path

Searched defs:KStringPtrImpl (Results 1 – 1 of 1) sorted by relevance

/arkcompiler/ets_frontend/ets2panda/bindings/native/include/
Dpanda_types.h27 struct KStringPtrImpl { struct
28 KStringPtrImpl(const char *str) : value(nullptr), owned(true) in KStringPtrImpl() argument
33 KStringPtrImpl(const char *str, int len, bool isOwned) : value(nullptr), owned(isOwned) in KStringPtrImpl() function
37 KStringPtrImpl() : value(nullptr), lengthStr(0), owned(true) {} in KStringPtrImpl() argument
40 KStringPtrImpl &operator=(const KStringPtrImpl &other) = delete; argument
42 KStringPtrImpl(KStringPtrImpl &&other) in KStringPtrImpl() function
50 ~KStringPtrImpl() in ~KStringPtrImpl() argument
56 bool isNull() const in isNull()
60 const char *c_str() const in c_str()
64 char *data() const in data()
[all …]