Home
last modified time | relevance | path

Searched refs:concatString (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/examples/benchmarks/ts/b/2/
Db2.ts36 concatString: string = 'Ab'; property in B1
44 this.concatString = dummy();
54 result = result.concat(this.concatString);
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/examples/benchmarks/ts/a/1/
Da1.ts35 concatString: string = 'Ab'; property in A1
52 result = result.concat(this.concatString);
/arkcompiler/ets_runtime/ecmascript/
Djs_function.cpp225 …tring* JSFunction::GetFunctionNameString(ObjectFactory *factory, JSHandle<EcmaString> concatString, in GetFunctionNameString() argument
233 … return *factory->ConcatFromString(concatString, factory->NewFromStdString(funcName)); in GetFunctionNameString()
237 return *concatString; in GetFunctionNameString()
255 … JSHandle<EcmaString> concatString = factory->ConcatFromString(handlePrefixString, spaceString); in NameGetter() local
259 newString = GetFunctionNameString(factory, concatString, target); in NameGetter()
262 newString = *factory->ConcatFromString(concatString, functionName); in NameGetter()
699 … JSHandle<EcmaString> concatString = factory->ConcatFromString(handlePrefixString, spaceString); in SetFunctionName() local
700 newString = *factory->ConcatFromString(concatString, functionName); in SetFunctionName()
Decma_string_table.cpp212 …EcmaString *concatString = EcmaStringAccessor::Flatten(vm, concatHandle, MemSpaceType::SHARED_OLD_… in GetOrInternStringWithoutLock() local
213 concatString->SetMixHashcode(result.second); in GetOrInternStringWithoutLock()
214 InternStringThreadUnsafe(concatString, hashcode); in GetOrInternStringWithoutLock()
215 return concatString; in GetOrInternStringWithoutLock()
Djs_function.h213 …static EcmaString* GetFunctionNameString(ObjectFactory *factory, JSHandle<EcmaString> concatString,