Searched defs:MapleString (Results 1 – 2 of 2) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mempool/src/ |
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
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mempool/include/ |
D | maple_string.h | 28 explicit MapleString(MemPool *currMp) : memPool(currMp) {} in MapleString() function
|