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 EcmaString* JSFunction::GetFunctionNameString(JSThread *thread, JSHandle<EcmaString> concatString, in GetFunctionNameString() argument
229 …JSHandle<EcmaString> newString = factory->ConcatFromString(concatString, factory->GetEmptyString()… in GetFunctionNameString()
237 newString = factory->ConcatFromString(concatString, functionName); in GetFunctionNameString()
258 … JSHandle<EcmaString> concatString = factory->ConcatFromString(handlePrefixString, spaceString); in NameGetter() local
262 newString = GetFunctionNameString(thread, concatString, factory, target); in NameGetter()
265 newString = *factory->ConcatFromString(concatString, functionName); in NameGetter()
702 … JSHandle<EcmaString> concatString = factory->ConcatFromString(handlePrefixString, spaceString); in SetFunctionName() local
703 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(JSThread *thread, JSHandle<EcmaString> concatString,