Home
last modified time | relevance | path

Searched refs:Stringify (Results 1 – 24 of 24) sorted by relevance

/arkcompiler/runtime_core/libpandabase/utils/
Djson_builder.h64 void Stringify(std::nullptr_t) in Stringify() function
69 void Stringify(bool boolean) in Stringify() function
75 void Stringify(T &&number) in Stringify() function
85 void Stringify(std::string_view string) in Stringify() function
90 void Stringify(const char *string) in Stringify() function
96 void Stringify(T &&array);
99 void Stringify(T &&object);
112 Stringify(std::forward<T>(value)); in Add()
133 Stringify(key); in AddProperty()
135 Stringify(std::forward<T>(value)); in AddProperty()
[all …]
/arkcompiler/toolchain/tooling/test/
Dpt_json_test.cpp49 EXPECT_EQ(json->Stringify(), str); in HWTEST_F_L0()
59 EXPECT_EQ(json->Stringify(), str); in HWTEST_F_L0()
69 EXPECT_EQ(json->Stringify(), str); in HWTEST_F_L0()
79 EXPECT_EQ(json->Stringify(), str); in HWTEST_F_L0()
89 EXPECT_EQ(json->Stringify(), str); in HWTEST_F_L0()
99 EXPECT_EQ(json->Stringify(), str); in HWTEST_F_L0()
112 EXPECT_EQ(json->Stringify(), str); in HWTEST_F_L0()
127 EXPECT_EQ(json->Stringify(), str); in HWTEST_F_L0()
177 EXPECT_EQ(root->Stringify(), in HWTEST_F_L0()
185 std::string result = ptJson.Stringify(); in HWTEST_F_L0()
/arkcompiler/toolchain/tooling/test/utils/
Dtest_channel.h39 std::string str = result.ToJson()->Stringify(); in SendResponse()
44 std::string str = events.ToJson()->Stringify(); in SendNotification()
/arkcompiler/ets_runtime/ecmascript/base/tests/
Djson_stringifier_test.cpp113 …JSHandle<JSTaggedValue> resultString1 = stringifier1.Stringify(handleValue, handleReplacer1, handl… in HWTEST_F_L0()
119 …JSHandle<JSTaggedValue> resultString2 = stringifier2.Stringify(handleValue, handleReplacer2, handl… in HWTEST_F_L0()
142 …JSHandle<JSTaggedValue> resultString = stringifier.Stringify(handleValue, handleReplacer, handleGa… in HWTEST_F_L0()
170 …JSHandle<JSTaggedValue> resultString = stringifier.Stringify(handleValue, handleReplacer, handleGa… in HWTEST_F_L0()
210 …JSHandle<JSTaggedValue> resultString = stringifier.Stringify(handleValue, handleReplacer, handleGa… in HWTEST_F_L0()
233 …JSHandle<JSTaggedValue> resultString = stringifier.Stringify(handleValue, handleReplacer, handleGa… in HWTEST_F_L0()
275 …JSHandle<JSTaggedValue> resultString = stringifier.Stringify(handleValue, handleReplacer, handleGa… in HWTEST_F_L0()
314 …JSHandle<JSTaggedValue> resultString = stringifier.Stringify(handleValue, handleReplacer, handleGa… in HWTEST_F_L0()
343 …JSHandle<JSTaggedValue> resultString = stringifier.Stringify(handleValue, handleReplacer, handleGa… in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_json.cpp80 JSTaggedValue BuiltinsJson::Stringify(EcmaRuntimeCallInfo *argv) in Stringify() function in panda::ecmascript::builtins::BuiltinsJson
82 BUILTINS_API_TRACE(argv->GetThread(), Json, Stringify); in Stringify()
103 JSHandle<JSTaggedValue> result = stringifier.Stringify(handleValue, handleReplacer, handleGap); in Stringify()
Dbuiltins_json.h27 static JSTaggedValue Stringify(EcmaRuntimeCallInfo *argv);
Dbuiltins.cpp1720 SetFunction(env, jsonObject, "stringify", Json::Stringify, FunctionLength::THREE); in InitializeJson()
/arkcompiler/ets_runtime/ecmascript/builtins/tests/
Dbuiltins_json_test.cpp290 JSTaggedValue result = BuiltinsJson::Stringify(ecmaRuntimeCallInfo); in HWTEST_F_L0()
310 JSTaggedValue result = BuiltinsJson::Stringify(ecmaRuntimeCallInfo); in HWTEST_F_L0()
332 JSTaggedValue result = BuiltinsJson::Stringify(ecmaRuntimeCallInfo); in HWTEST_F_L0()
361 JSTaggedValue result = BuiltinsJson::Stringify(ecmaRuntimeCallInfo); in HWTEST_F_L0()
365 HWTEST_F_L0(BuiltinsJsonTest, Stringify) in HWTEST_F_L0() argument
374 JSTaggedValue result = BuiltinsJson::Stringify(ecmaRuntimeCallInfo); in HWTEST_F_L0()
414 JSTaggedValue result = BuiltinsJson::Stringify(ecmaRuntimeCallInfo); in HWTEST_F_L0()
445 JSTaggedValue result = BuiltinsJson::Stringify(ecmaRuntimeCallInfo); in HWTEST_F_L0()
465 JSTaggedValue result = BuiltinsJson::Stringify(ecmaRuntimeCallInfo); in HWTEST_F_L0()
514 JSTaggedValue result = BuiltinsJson::Stringify(ecmaRuntimeCallInfo); in HWTEST_F_L0()
[all …]
/arkcompiler/ets_runtime/test/fuzztest/jsonstringify_fuzzer/
Djsonstringify_fuzzer.cpp49 JSON::Stringify(vm, jsValue); in JSONStringifyFuzzTest()
/arkcompiler/ets_runtime/test/fuzztest/jsonparse_fuzzer/
Djsonparse_fuzzer.cpp49 JSON::Stringify(vm, jsValue); in JSONParseFuzzTest()
/arkcompiler/toolchain/tooling/test/testcases/
Djs_local_variable_scope_test.h100 std::string str = parsed->ToJson()->Stringify(); in SendNotification()
108 std::string str = paused->ToJson()->Stringify(); in SendNotification()
Djs_variable_first_test.h99 std::string str = parsed->ToJson()->Stringify(); in SendNotification()
108 std::string str = paused->ToJson()->Stringify(); in SendNotification()
Djs_module_variable_test.h102 std::string str = parsed->ToJson()->Stringify(); in SendNotification()
111 std::string str = paused->ToJson()->Stringify(); in SendNotification()
Djs_variable_second_test.h99 std::string str = parsed->ToJson()->Stringify(); in SendNotification()
108 std::string str = paused->ToJson()->Stringify(); in SendNotification()
Djs_container_test.h100 std::string str = parsed->ToJson()->Stringify(); in SendNotification()
109 std::string str = paused->ToJson()->Stringify(); in SendNotification()
/arkcompiler/toolchain/tooling/base/
Dpt_json.h48 std::string Stringify() const;
Dpt_json.cpp45 std::string PtJson::Stringify() const in Stringify() function in panda::ecmascript::tooling::PtJson
/arkcompiler/ets_runtime/ecmascript/base/
Djson_stringifier.h36 …JSHandle<JSTaggedValue> Stringify(const JSHandle<JSTaggedValue> &value, const JSHandle<JSTaggedVal…
Djson_stringifier.cpp143 JSHandle<JSTaggedValue> JsonStringifier::Stringify(const JSHandle<JSTaggedValue> &value, in Stringify() function in panda::ecmascript::base::JsonStringifier
/arkcompiler/toolchain/tooling/
Dprotocol_handler.cpp111 std::string str = reply.Stringify(); in SendReply()
/arkcompiler/ets_runtime/ecmascript/
Druntime_call_id.h446 V(Json, Stringify) \
/arkcompiler/ets_runtime/ecmascript/napi/include/
Djsnapi.h990 static Local<JSValueRef> Stringify(const EcmaVM *vm, Local<JSValueRef> json);
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp2355 Local<JSValueRef> JSON::Stringify(const EcmaVM *vm, Local<JSValueRef> json) in Stringify() function in panda::JSON
2361 JSHandle<JSTaggedValue> str = stringifier.Stringify( in Stringify()
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/
Dsnapshot_processor.cpp608 reinterpret_cast<uintptr_t>(Json::Stringify),