| /arkcompiler/ets_runtime/ecmascript/intl/ |
| D | global_intl_helper.h | 110 EcmaStringAccessor(locales.GetTaggedValue()).ToStdString(); in GetGlobalObject()
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | js_number_format.cpp | 681 … locales->IsUndefined() ? "" : EcmaStringAccessor(locales.GetTaggedValue()).ToStdString(); in InitializeNumberFormat() 710 …heEntry = locales->IsUndefined() ? "" : EcmaStringAccessor(locales.GetTaggedValue()).ToStdString(); in GetCachedIcuNumberFormatter() 738 std::string stdString = EcmaStringAccessor(bigintStr).ToStdString(); in FormatNumeric() 868 std::string stdString = EcmaStringAccessor(bigintStr).ToStdString(); in FormatNumericToParts()
|
| D | js_tagged_value.cpp | 963 std::string keyStr = EcmaStringAccessor(ToString(thread, key)).ToStdString(); in GetProperty() 964 std::string objStr = EcmaStringAccessor(ToString(thread, obj)).ToStdString(); in GetProperty() 992 std::string objStr = EcmaStringAccessor(ToString(thread, obj)).ToStdString(); in GetProperty() 1020 std::string keyStr = EcmaStringAccessor(ToString(thread, key)).ToStdString(); in GetProperty() 1021 std::string objStr = EcmaStringAccessor(ToString(thread, obj)).ToStdString(); in GetProperty()
|
| D | js_collator.cpp | 310 … locales->IsUndefined() ? "" : EcmaStringAccessor(locales.GetTaggedValue()).ToStdString(); in InitializeCollator() 323 std::string cacheEntry = locales.IsUndefined() ? "" : EcmaStringAccessor(locales).ToStdString(); in GetCachedIcuCollator()
|
| D | js_bigint.h | 61 CString ToStdString(uint32_t conversionToRadix) const;
|
| D | js_date_time_format.cpp | 638 … locales->IsUndefined() ? "" : EcmaStringAccessor(locales.GetTaggedValue()).ToStdString(); in InitializeDateTimeFormat() 686 …heEntry = locales->IsUndefined() ? "" : EcmaStringAccessor(locales.GetTaggedValue()).ToStdString(); in GetCachedIcuSimpleDateFormat() 849 std::string result = EcmaStringAccessor(key.GetTaggedValue()).ToStdString(); in ToDateTimeSkeleton() 874 std::string result = EcmaStringAccessor(key.GetTaggedValue()).ToStdString(); in ToDateTimeSkeleton()
|
| D | js_locale.h | 88 std::string str = EcmaStringAccessor(itor).ToStdString(); in JSIntlIterator()
|
| D | js_bigint.cpp | 481 CString result = bigint->ToStdString(conversionToRadix); in ToString() 485 CString BigInt::ToStdString(uint32_t conversionToRadix) const in ToStdString() function in panda::ecmascript::BigInt
|
| D | ecma_string.h | 1229 std::string ToStdString(StringConvertedUsage usage = StringConvertedUsage::PRINT);
|
| D | ecma_string.cpp | 1412 std::string EcmaStringAccessor::ToStdString(StringConvertedUsage usage) in ToStdString() function in panda::ecmascript::EcmaStringAccessor
|
| D | dump.cpp | 1741 os << " - value : " << ToStdString(DECIMAL) << "\n"; in Dump()
|
| /arkcompiler/ets_runtime/ecmascript/tests/ |
| D | js_bigint_test.cpp | 296 (bigint2->ToStdString(BigInt::BINARY)).c_str()); in HWTEST_F_L0() 301 (bigint2->ToStdString(BigInt::OCTAL)).c_str()); in HWTEST_F_L0() 306 (bigint2->ToStdString(BigInt::DECIMAL)).c_str()); in HWTEST_F_L0() 311 (bigint2->ToStdString(BigInt::HEXADECIMAL)).c_str()); in HWTEST_F_L0()
|
| /arkcompiler/ets_runtime/ecmascript/dfx/stackinfo/ |
| D | js_stackgetter.cpp | 149 methodNameStr = EcmaStringAccessor(methodName).ToStdString(); in GetNativeStack()
|
| /arkcompiler/ets_runtime/ecmascript/debugger/ |
| D | debugger_api.cpp | 479 std::string varName = EcmaStringAccessor(localName).ToStdString(); in GetImportModule() 489 name = EcmaStringAccessor(importName).ToStdString(); in GetImportModule() 520 std::string localName = EcmaStringAccessor(localKey).ToStdString(); in GetModuleVariableIndex() 521 std::string exportName = EcmaStringAccessor(exportKey).ToStdString(); in GetModuleVariableIndex() 762 std::string importName = EcmaStringAccessor(ee->GetImportName()).ToStdString(); in GetIndirectExportVariables()
|
| /arkcompiler/ets_runtime/ecmascript/builtins/ |
| D | builtins_function.cpp | 357 std::string nameStr = EcmaStringAccessor(methodName).ToStdString(); in FunctionPrototypeToString()
|
| D | builtins_global.cpp | 517 EcmaStringAccessor(substr).ToStdString(StringConvertedUsage::LOGICOPERATION)); in HandleSingleByteCharacter() 647 EcmaStringAccessor(substr).ToStdString(StringConvertedUsage::LOGICOPERATION)); in UTF16EncodeCodePoint()
|
| D | builtins_ark_tools.cpp | 62 LOG_ECMA(ERROR) << ": " << EcmaStringAccessor(str).ToStdString(); in ObjectDump() 292 fileName = EcmaStringAccessor(str).ToStdString() + ".cpuprofile"; in StartCpuProfiler() 501 std::string opStr = EcmaStringAccessor(opStrVal.GetTaggedValue()).ToStdString(); in PrintTypedOpProfiler()
|
| D | builtins_regexp.cpp | 953 … resultString += EcmaStringAccessor(substr).ToStdString(StringConvertedUsage::LOGICOPERATION); in MatchAndReplace() 973 resultString += EcmaStringAccessor(substr).ToStdString(StringConvertedUsage::LOGICOPERATION); in MatchAndReplace() 1574 …std::string stdStrT = EcmaStringAccessor(substr).ToStdString(StringConvertedUsage::LOGICOPERATION); in RegExpSplit() 1626 …std::string stdStrT = EcmaStringAccessor(substr).ToStdString(StringConvertedUsage::LOGICOPERATION); in RegExpSplit()
|
| D | builtins_string.cpp | 565 auto result = collator->Compare(EcmaStringAccessor(thisHandle).ToStdString(), in DoLocaleCompare() 566 EcmaStringAccessor(thatHandle).ToStdString()); in DoLocaleCompare()
|
| /arkcompiler/ets_runtime/ |
| D | libark_jsruntime.map | 164 panda::ecmascript::EcmaStringAccessor::ToStdString*;
|
| /arkcompiler/ets_runtime/ecmascript/base/ |
| D | typed_array_helper.cpp | 703 … JSTaggedValue::ToString(thread, GetConstructorNameFromType(thread, arrayType))).ToStdString(); in CreateFromArrayBuffer() 770 … JSTaggedValue::ToString(thread, GetConstructorNameFromType(thread, arrayType))).ToStdString(); in CreateFromSendableArrayBuffer()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/aot_file/ |
| D | aot_file_manager.cpp | 532 std::string fileNameStr = EcmaStringAccessor(fileInfo->Get(nameOffset)).ToStdString(); in ParseDeserializedData()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | type_info_accessors.cpp | 503 if (EcmaStringAccessor(prop).ToStdString() == "prototype") { in InitPropAndCheck()
|
| /arkcompiler/ets_runtime/ecmascript/stubs/ |
| D | runtime_stubs.cpp | 2863 << EcmaStringAccessor(key.GetTaggedValue()).ToStdString(); in DEF_RUNTIME_STUBS() 2891 << EcmaStringAccessor(key.GetTaggedValue()).ToStdString(); in DEF_RUNTIME_STUBS()
|
| /arkcompiler/ets_runtime/ecmascript/module/ |
| D | js_module_source_text.cpp | 1606 std::string exportName = EcmaStringAccessor(ee->GetExportName()).ToStdString(); in AddExportName()
|