Searched defs:MapleString (Results 1 – 2 of 2) sorted by relevance
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mempool/src/ |
| D | maple_string.cpp | 18 MapleString::MapleString(const char *str, size_t size, MemPool *currMp) in MapleString() function in maple::MapleString 23 MapleString::MapleString(const char *str, MemPool *currMp) : MapleString(str, StrLen(str), currMp) … in MapleString() function in maple::MapleString 25 MapleString::MapleString(size_t size, MemPool *currMp) : MapleString(nullptr, size, currMp) {} in MapleString() function in maple::MapleString 27 MapleString::MapleString(const MapleString &str, MemPool *currMp) : MapleString(str.data, str.dataL… in MapleString() function in maple::MapleString 29 MapleString::MapleString(const MapleString &str) : MapleString(str, str.memPool) {} in MapleString() function in maple::MapleString 31 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
|