Searched refs:parameters (Results 1 – 12 of 12) sorted by relevance
| /Renode-v1.15.3-c57714d/src/Renode/RobotFrameworkEngine/ |
| D | Keyword.cs | 26 var parameters = methodInfo.GetParameters(); in TryMatchArguments() 28 if(parameters.Length == 1 && parameters[0].ParameterType == typeof(string[]) in TryMatchArguments() 35 return TryParseArguments(parameters, arguments, out parsedArguments); in TryMatchArguments() 71 …private bool TryParseArguments(ParameterInfo[] parameters, object[] arguments, out object[] parsed… in TryParseArguments() argument 74 if(arguments.Length > parameters.Length) in TryParseArguments() 79 var args = new ArgumentDescriptor[parameters.Length]; in TryParseArguments() 95 … args[position].Value = ChangeType(argumentObj, parameters[position].ParameterType); in TryParseArguments() 108 var param = parameters.SingleOrDefault(x => x.Name == name); in TryParseArguments() 135 … if(!SmartParser.Instance.TryParse(valueToParse, parameters[position].ParameterType, out result)) in TryParseArguments() 151 if(!parameters[i].HasDefaultValue) in TryParseArguments() [all …]
|
| /Renode-v1.15.3-c57714d/src/Renode/UI/ |
| D | LogoRow.cs | 22 public override double PrepareForDrawing(ILayoutParameters parameters) in PrepareForDrawing() argument 24 var baseResult = base.PrepareForDrawing(parameters); in PrepareForDrawing()
|
| /Renode-v1.15.3-c57714d/tests/unit-tests/ |
| D | platform-file-aliases.robot | 10 [Arguments] ${parameters}=${EMPTY} 11 …hine LoadPlatformDescriptionFromString "test: Mocks.PeripheralWithAliases @ sysbus {${parameters}}"
|
| D | grammar-number-separator.robot | 17 # Verify that both parameters that use digit separator resolved correctly
|
| D | robot-integration.robot | 8 Should Contain ${msg} Bad parameters for command
|
| D | it-status.robot | 181 …g to the condition in the instruction, and the Then and Else (T and E) parameters in the instructi…
|
| /Renode-v1.15.3-c57714d/tests/platforms/ |
| D | STM32F7.robot | 41 Write Line To Uart echo-parameters a b 42 Wait For Line On Uart The parameters were:
|
| D | SAME70.robot | 6 # The parameters are actually configurable, if the tests that 8 # parameters or set the variables to the updated values
|
| /Renode-v1.15.3-c57714d/ |
| D | .editorconfig | 43 # Remove unused parameters 111 # Function parameters use camelCase
|
| D | CHANGELOG.rst | 147 * ability to specify aliases for names of constructor parameters in REPL, simplifying adaptation to…
|
| /Renode-v1.15.3-c57714d/src/Renode/PlatformDescription/ |
| D | CreationDriver.cs | 650 var parameters = constructor.GetParameters(); in PrepareConstructorParameters() 651 var parameterValues = new object[parameters.Length]; in PrepareConstructorParameters() 652 for(var i = 0; i < parameters.Length; i++) in PrepareConstructorParameters() 654 var parameter = parameters[i]; in PrepareConstructorParameters() 718 var parameters = x.GetParameters(); in FindUsableRegistrationPoints() 719 if(parameters.Length == 0) in FindUsableRegistrationPoints() 723 if(parameters.Length == 1) in FindUsableRegistrationPoints() 727 … return parameters[1].HasDefaultValue; // if second is optional, all other are optional in FindUsableRegistrationPoints() 1732 var parameters = ctor.GetParameters(); in GetFriendlyConstructorName() 1733 if(parameters.Length == 0) in GetFriendlyConstructorName() [all …]
|
| /Renode-v1.15.3-c57714d/src/Plugins/CoSimulationPlugin/IntegrationLibrary/libs/socket-cpp/ |
| D | README.md | 245 [simpleini](https://github.com/brofield/simpleini) is used to gather unit tests parameters from 246 an INI configuration file. You need to fill that file with some parameters. 248 parameters only for the enabled tests. A template of the INI file already exists under SocketTest/
|