| D | maple_string.cpp | 19 MapleString::MapleString(const char *str, size_t size, MemPool *currMp) in MapleString() function in maple::MapleString 24 MapleString::MapleString(const char *str, MemPool *currMp) : MapleString(str, StrLen(str), currMp) … in MapleString() function in maple::MapleString 26 MapleString::MapleString(size_t size, MemPool *currMp) : MapleString(nullptr, size, currMp) {} in MapleString() function in maple::MapleString 28 MapleString::MapleString(const MapleString &str, MemPool *currMp) : MapleString(str.data, str.dataL… in MapleString() function in maple::MapleString 30 MapleString::MapleString(const MapleString &str) : MapleString(str, str.memPool) {} in MapleString() function in maple::MapleString 32 MapleString::MapleString(const std::string &str, MemPool *currMp) : MapleString(str.data(), str.len… in MapleString() function in maple::MapleString 34 char *MapleString::NewData(MemPool *memPool, const char *source, size_t len) in NewData() 50 void MapleString::clear() in clear() 56 size_t MapleString::find(const MapleString &str, size_t pos) const in find() 79 size_t MapleString::find(const char *str, size_t pos) const in find() [all …]
|