Searched refs:variable (Results 1 – 7 of 7) sorted by relevance
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/ |
| D | SetCommand.cs | 50 public void Run(ICommandInteraction writer, LiteralToken variable) in Run() argument 52 ProcessVariable(writer, variable.Value); in Run() 56 public void Run(ICommandInteraction writer, VariableToken variable) in Run() argument 58 ProcessVariable(writer, variable.Value); in Run() 62 …public void Run(ICommandInteraction writer, LiteralToken variable, MultilineStringTerminatorToken … in Run() argument 64 ProcessVariable(writer, variable.Value, true); in Run() 68 …public void Run(ICommandInteraction writer, VariableToken variable, MultilineStringTerminatorToken… in Run() argument 70 ProcessVariable(writer, variable.Value, true); in Run() 74 public void Run(ICommandInteraction writer, LiteralToken variable, Token value) in Run() argument 76 var varName = variable.Value; in Run() [all …]
|
| D | PythonExecuteCommand.cs | 25 public void Run(ICommandInteraction writer, VariableToken variable) in Run() argument 27 var value = GetVariable(variable); in Run()
|
| D | ExecuteCommand.cs | 26 foreach(var variable in GetVariables()) in PrintHelp() 28 writer.WriteLine("\t{0}".FormatWith(variable)); in PrintHelp()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/ |
| D | PythonEngine.cs | 117 foreach(var variable in variablesToSerialize) in BeforeSerialization() 119 var value = Scope.GetVariable<object>(variable); in BeforeSerialization() 128 variables[variable] = value; in BeforeSerialization() 142 foreach(var variable in variables) in AfterDeserialization() 144 Scope.SetVariable(variable.Key, variable.Value); in AfterDeserialization()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/ |
| D | Misc.cs | 1853 public static T ReturnThenAssign<T>(ref T variable, T value) in ReturnThenAssign() argument 1855 var temp = variable; in ReturnThenAssign() 1856 variable = value; in ReturnThenAssign() 1860 …public static bool ReturnThenSet(ref bool variable, bool value = true) => ReturnThenAssign(ref var… in ReturnThenSet() argument 1862 … public static bool ReturnThenClear(ref bool variable) => ReturnThenAssign(ref variable, false); field in Antmicro.Renode.Utilities.Misc
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Common/ |
| D | RegisterTemplate.tt | 21 throw new ArgumentException("CLASS_NAME variable not set"); 25 throw new ArgumentException("HEADER_FILE variable not set");
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/ |
| D | Monitor.cs | 254 private void EnableStringEater(string variable, int mode, VariableType type) in EnableStringEater() argument 258 stringEaterVariableName = variable; in EnableStringEater()
|