Home
last modified time | relevance | path

Searched refs:newStr (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/dfx/hprof/
Dstring_hashmap.cpp29 auto *newStr = const_cast<NativeAreaAllocator *>( in FindOrInsertString() local
31 hashmap_.emplace(key, newStr); in FindOrInsertString()
34 return newStr; in FindOrInsertString()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mempool/src/
Dmaple_string.cpp182 MapleString newStr(memPool); in substr() local
183 newStr.data = static_cast<char *>(newStr.memPool->Malloc((1 + len) * sizeof(char))); in substr()
185 newStr[i] = this->data[i + pos]; in substr()
187 newStr.dataLength = len; in substr()
188 newStr.data[newStr.dataLength] = '\0'; in substr()
189 return newStr; in substr()
/arkcompiler/ets_runtime/test/moduletest/string/
Dstring.js179 let newStr = new String("adcdcdccda")
180 newStr.split("d")
181 split = newStr.split("d")
184 print(newStr.split("d"))
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
Dglobal_tables.h656 T *newStr = new T(str); in GetOrCreateStrIdxFromName() local
657 stringTable.push_back(newStr); in GetOrCreateStrIdxFromName()
658 stringTableMap[newStr] = strIdx; in GetOrCreateStrIdxFromName()
662 T *newStr = new T(str); in GetOrCreateStrIdxFromName() local
663 stringTable.push_back(newStr); in GetOrCreateStrIdxFromName()
664 stringTableMap[newStr] = strIdx; in GetOrCreateStrIdxFromName()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/mock/
Darray_native_test_2.cpp503 ets_string newStr = env_->NewStringUTF(newExample.c_str()); in TEST_F() local
504 ASSERT_NE(newStr, nullptr); in TEST_F()
510 env_->SetObjectArrayElement(strArray, -1, newStr); in TEST_F()
518 env_->SetObjectArrayElement(strArray, 5_I, newStr); in TEST_F()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_string.cpp2118 JSHandle<EcmaString> newStr = factory->NewFromUtf16Literal(&c, 1); in StringToList() local
2119 ElementAccessor::Set(thread, newArrayHandle, index, newStr.GetTaggedValue(), true); in StringToList()