Home
last modified time | relevance | path

Searched refs:StringValue (Results 1 – 4 of 4) sorted by relevance

/Renode-v1.15.3-c57714d/src/Renode/PlatformDescription/Syntax/
DStringValue.cs10 public sealed class StringValue : Value, ISimplestValue class
12 public StringValue(string value) in StringValue() method in Antmicro.Renode.PlatformDescription.Syntax.StringValue
DGrammar.cs186 …r<Value> Value = (SingleLineQuotedString.Or(MultilineQuotedString)).Select(x => new StringValue(x))
/Renode-v1.15.3-c57714d/tests/unit-tests/RenodeTests/PlatformDescription/
DParserTests.cs100 …Assert.AreEqual("something", ((StringValue)entry.RegistrationInfos.Single().RegistrationPoint).Val… in ShouldParseEntryWithStringRegistrationPoint()
176 Assert.AreEqual("ABC666", ((StringValue)attributes["model"]).Value); in ShouldParseEntryWithAllAttributes()
546 …ash: \, two in a row: \\, before quote: \"", and one at the end: \", ((StringValue)attribute.Value… in ShouldParseStringWithEscapedBackslashes()
/Renode-v1.15.3-c57714d/src/Renode/PlatformDescription/
DCreationDriver.cs1358 … TryConvertSimplestValue<StringValue>(value, expectedType, typeof(string), "string", ref result), in TryConvertSimpleValue()