Home
last modified time | relevance | path

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

/ohos5.0/base/update/updater/test/unittest/script/script_instruction/
H A Dbasic_instruction_unittest.cpp82 UScriptInstructionContext context {}; in TestBasicInstructionIsSubString01()
93 UScriptInstructionContext context {}; in TestBasicInstructionIsSubString01()
107 UScriptInstructionContext context {}; in TestBasicInstructionIsSubString02()
116 UScriptInstructionContext context {}; in TestBasicInstructionIsSubString02()
127 UScriptInstructionContext context {}; in TestBasicInstructionStdout()
150 UScriptInstructionContext context {}; in TestBasicInstructionConcat()
177 UScriptInstructionContext context {}; in TestBasicInstructionConcat()
200 UScriptInstructionContext context {}; in TestBasicInstructionAbort()
205 UScriptInstructionContext context {}; in TestBasicInstructionAbort()
211 UScriptInstructionContext context {}; in TestBasicInstructionAbort()
[all …]
H A Dscript_updateprocesser_unittest.cpp79 UScriptInstructionContext context {}; in TestUpdateProcesserSetProcess()
92 UScriptInstructionContext context {}; in TestUpdateProcesserSetProcess()
113 UScriptInstructionContext context {}; in TestUpdateProcesserShowProcess()
121 UScriptInstructionContext context {}; in TestUpdateProcesserShowProcess()
130 UScriptInstructionContext context {}; in TestUpdateProcesserShowProcess()
153 UScriptInstructionContext context {}; in TestUpdateProcesserPrint()
161 UScriptInstructionContext context {}; in TestUpdateProcesserPrint()
181 UScriptInstructionContext context {}; in TestUpdateProcesserSetProportion()
191 UScriptInstructionContext context {}; in TestUpdateProcesserSetProportion()
H A Dscript_registercmd_unittest.cpp58 UScriptInstructionContext context {}; in TestRegisterCmd01()
71 UScriptInstructionContext context {}; in TestRegisterCmd02()
85 UScriptInstructionContext context {}; in TestRegisterCmd03()
H A Dscript_loadscript_unittest.cpp57 UScriptInstructionContext context {}; in TestLoadScript01()
71 UScriptInstructionContext context {}; in TestLoadScript02()
86 UScriptInstructionContext context {}; in TestLoadScript03()
/ohos5.0/base/update/updater/test/unittest/updater_binary/
H A 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()
/ohos5.0/base/update/updater/services/script/script_interpreter/
H A 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()
H A Dscript_context.h199 class UScriptInstructionContext : public UScriptContext {
201 UScriptInstructionContext() {} in UScriptInstructionContext() function
203 virtual ~UScriptInstructionContext() {} in ~UScriptInstructionContext()
H A Dscript_interpreter.cpp183 …std::shared_ptr<UScriptInstructionContext> funcContext = std::make_shared<UScriptInstructionContex… in ExecuteNativeFunc()
/ohos5.0/base/update/updater/test/unittest/script/
H A Dscript_interpreter_unittest.cpp102 …std::unique_ptr<UScriptInstructionContext> funcContext = std::make_unique<UScriptInstructionContex… in TestScriptInstructionContext()