Home
last modified time | relevance | path

Searched refs:UScriptInterpretContext (Results 1 – 5 of 5) sorted by relevance

/base/update/updater/services/script/script_interpreter/
Dscript_context.h28 class UScriptInterpretContext; variable
31 using UScriptContextPtr = std::shared_ptr<UScriptInterpretContext>;
232 class UScriptInterpretContext {
234 explicit UScriptInterpretContext(bool top = false);
236 virtual ~UScriptInterpretContext() in ~UScriptInterpretContext()
Dscript_context.cpp117 UScriptValuePtr UScriptInterpretContext::FindVariable(const ScriptInterpreter &inter, std::string i… in FindVariable()
126 UScriptInterpretContext::UScriptInterpretContext(bool top) : top_(top) in UScriptInterpretContext() function in Uscript::UScriptInterpretContext
131 void UScriptInterpretContext::UpdateVariable(const ScriptInterpreter &inter, std::string id, in UpdateVariable()
139 void UScriptInterpretContext::UpdateVariables(const ScriptInterpreter &inter, in UpdateVariables()
Dscript_function.cpp35 UScriptContextPtr funcContext = std::make_shared<UScriptInterpretContext>(); in Execute()
Dscript_statement.cpp276 UScriptContextPtr local = std::make_shared<UScriptInterpretContext>(); in Execute()
279 UScriptContextPtr local = std::make_shared<UScriptInterpretContext>(); in Execute()
Dscript_interpreter.cpp89 UScriptContextPtr context = std::make_shared<UScriptInterpretContext>(true); in Execute()