Home
last modified time | relevance | path

Searched refs:GetDescription (Results 1 – 14 of 14) sorted by relevance

/ark/js_runtime/ecmascript/
Djs_symbol.h106 EcmaString *srcString = EcmaString::Cast(src.GetDescription().GetTaggedObject()); in Equal()
107 EcmaString *dstString = EcmaString::Cast(dst.GetDescription().GetTaggedObject()); in Equal()
Dsymbol_table-inl.h64 JSTaggedValue des = symbol->GetDescription(); in FindSymbol()
Djs_function.cpp389 JSTaggedValue description = JSHandle<JSSymbol>::Cast(name)->GetDescription(); in SetFunctionName()
501 JSTaggedValue description = JSSymbol::Cast(name.GetTaggedObject())->GetDescription(); in SetFunctionNameNoPrefix()
510 … JSHandle<EcmaString>(thread, JSSymbol::Cast(nameBegin->GetHeapObject())->GetDescription())); in SetFunctionNameNoPrefix()
Ddump.cpp323 DumpStringClass(EcmaString::Cast(sym->GetDescription().GetTaggedObject()), os); in DumpPropertyKey()
1433 JSTaggedValue description = GetDescription(); in Dump()
2673 EcmaStringToStd(res, EcmaString::Cast(sym->GetDescription().GetTaggedObject())); in KeyToStd()
3049 vec.push_back(std::make_pair(CString("description"), GetDescription())); in DumpForSnapshot()
/ark/js_runtime/ecmascript/builtins/
Dbuiltins_symbol.cpp99 JSHandle<JSTaggedValue> descHandle(thread, symbolObject->GetDescription()); in SymbolDescriptiveString()
248 JSTaggedValue desValue = JSSymbol::Cast(value->GetTaggedObject())->GetDescription(); in ThisSymbolValue()
259 JSTaggedValue primitiveDesValue = JSSymbol::Cast(primitive.GetTaggedObject())->GetDescription(); in ThisSymbolValue()
/ark/js_runtime/ecmascript/mem/
Dc_string.cpp119 ecmascript::JSTaggedValue desc = JSSymbol::Cast(key.GetTaggedObject())->GetDescription(); in ConvertToString()
/ark/js_runtime/ecmascript/builtins/tests/
Dbuiltins_symbol_test.cpp295 ASSERT_EQ(sym->GetDescription().IsUndefined(), true); in HWTEST_F_L0()
308 …ndle<JSTaggedValue>(thread, reinterpret_cast<JSSymbol *>(result1.GetRawData())->GetDescription())); in HWTEST_F_L0()
/ark/js_runtime/ecmascript/hprof/
Dheap_snapshot.cpp666 keyString = EcmaString::Cast(symbol->GetDescription().GetTaggedObject()); in ConvertKey()
/ark/js_runtime/ecmascript/napi/include/
Djsnapi.h399 Local<StringRef> GetDescription(const EcmaVM *vm);
/ark/js_runtime/ecmascript/tooling/base/
Dpt_types.cpp343 std::string description = "Symbol(" + tagged->GetDescription(ecmaVm)->ToString() + ")"; in DescriptionForSymbol()
702 nameStr = "Symbol(" + Local<SymbolRef>(name)->GetDescription(ecmaVm)->ToString() + ")"; in FromProperty()
Dpt_types.h197 const std::string &GetDescription() const in GetDescription() function
/ark/js_runtime/ecmascript/napi/
Djsnapi.cpp710 Local<StringRef> SymbolRef::GetDescription(const EcmaVM *vm) in GetDescription() function in panda::SymbolRef
712 …cription = JSSymbol::Cast(JSNApiHelper::ToJSTaggedValue(this).GetTaggedObject())->GetDescription(); in GetDescription()
/ark/js_runtime/ecmascript/tests/
Dtagged_value_test.cpp879 …EXPECT_EQ(EcmaString::Cast(reinterpret_cast<JSSymbol *>(tagged5.GetRawData())->GetDescription().Ge… in HWTEST_F_L0()
/ark/js_runtime/ecmascript/tooling/test/
Ddebugger_types_test.cpp212 EXPECT_EQ("Test", remoteObject->GetDescription()); in HWTEST_F_L0()