Home
last modified time | relevance | path

Searched refs:UScriptInstructionContext (Results 1 – 9 of 9) sorted by relevance

/base/update/updater/test/unittest/script/script_instruction/
Dbasic_instruction_unittest.cpp57 static void AddInputParam(UScriptInstructionContext &ctx, Args && ... args) in AddInputParam()
61 static int32_t AddInputParamImpl(UScriptInstructionContext &ctx, const std::string &v) in AddInputParamImpl()
66 static int32_t AddInputParamImpl(UScriptInstructionContext &ctx, T v) in AddInputParamImpl()
70 static int32_t AddInputParamImpl(UScriptInstructionContext &ctx, int32_t v) in AddInputParamImpl()
78 UScriptInstructionContext context {}; in TestBasicInstructionIsSubString01()
89 UScriptInstructionContext context {}; in TestBasicInstructionIsSubString01()
103 UScriptInstructionContext context {}; in TestBasicInstructionIsSubString02()
112 UScriptInstructionContext context {}; in TestBasicInstructionIsSubString02()
123 UScriptInstructionContext context {}; in TestBasicInstructionStdout()
146 UScriptInstructionContext context {}; in TestBasicInstructionConcat()
[all …]
Dscript_updateprocesser_unittest.cpp77 UScriptInstructionContext context {}; in TestUpdateProcesserSetProcess()
90 UScriptInstructionContext context {}; in TestUpdateProcesserSetProcess()
111 UScriptInstructionContext context {}; in TestUpdateProcesserShowProcess()
119 UScriptInstructionContext context {}; in TestUpdateProcesserShowProcess()
128 UScriptInstructionContext context {}; in TestUpdateProcesserShowProcess()
151 UScriptInstructionContext context {}; in TestUpdateProcesserPrint()
159 UScriptInstructionContext context {}; in TestUpdateProcesserPrint()
Dscript_registercmd_unittest.cpp58 UScriptInstructionContext context {}; in TestRegisterCmd01()
71 UScriptInstructionContext context {}; in TestRegisterCmd02()
85 UScriptInstructionContext context {}; in TestRegisterCmd03()
Dscript_loadscript_unittest.cpp57 UScriptInstructionContext context {}; in TestLoadScript01()
71 UScriptInstructionContext context {}; in TestLoadScript02()
86 UScriptInstructionContext context {}; in TestLoadScript03()
/base/update/updater/test/unittest/updater_binary/
Dupdate_image_patch_unittest.cpp38 UScriptInstructionContext context {}; in TestImgPatch01()
49 UScriptInstructionContext context {}; in TestImgPatch02()
66 UScriptInstructionContext context {}; in TestImgPatch03()
83 UScriptInstructionContext context {}; in TestImgPatch04()
102 UScriptInstructionContext context {}; in TestImgPatch05()
134 UScriptInstructionContext context {}; in TestImgPatch06()
/base/update/updater/services/script/script_interpreter/
Dscript_context.cpp29 int32_t UScriptInstructionContext::PushParam(int32_t value) in PushParam()
40 int32_t UScriptInstructionContext::PushParam(float value) in PushParam()
51 int32_t UScriptInstructionContext::PushParam(const std::string& value) in PushParam()
62 int32_t UScriptInstructionContext::GetParamCount() in GetParamCount()
67 int32_t UScriptInstructionContext::GetParam(int32_t index, int32_t &value) in GetParam()
72 int32_t UScriptInstructionContext::GetParam(int32_t index, float &value) in GetParam()
77 int32_t UScriptInstructionContext::GetParam(int32_t index, std::string &value) in GetParam()
83 int32_t UScriptInstructionContext::GetParam(int32_t index, T &value) in GetParam()
101 UScriptContext::ParamType UScriptInstructionContext::GetParamType(int32_t index) in GetParamType()
111 int32_t UScriptInstructionContext::AddInputParam(UScriptValuePtr value) in AddInputParam()
Dscript_context.h199 class UScriptInstructionContext : public UScriptContext {
201 UScriptInstructionContext() {} in UScriptInstructionContext() function
203 virtual ~UScriptInstructionContext() {} in ~UScriptInstructionContext()
Dscript_interpreter.cpp183 …std::shared_ptr<UScriptInstructionContext> funcContext = std::make_shared<UScriptInstructionContex… in ExecuteNativeFunc()
/base/update/updater/test/unittest/script/
Dscript_interpreter_unittest.cpp102 …std::unique_ptr<UScriptInstructionContext> funcContext = std::make_unique<UScriptInstructionContex… in TestScriptInstructionContext()