Searched refs:StringValue (Results 1 – 4 of 4) sorted by relevance
/Renode-v1.15.3-c57714d/src/Renode/PlatformDescription/Syntax/ |
D | StringValue.cs | 10 public sealed class StringValue : Value, ISimplestValue class 12 public StringValue(string value) in StringValue() method in Antmicro.Renode.PlatformDescription.Syntax.StringValue
|
D | Grammar.cs | 186 …r<Value> Value = (SingleLineQuotedString.Or(MultilineQuotedString)).Select(x => new StringValue(x))
|
/Renode-v1.15.3-c57714d/tests/unit-tests/RenodeTests/PlatformDescription/ |
D | ParserTests.cs | 100 …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/ |
D | CreationDriver.cs | 1358 … TryConvertSimplestValue<StringValue>(value, expectedType, typeof(string), "string", ref result), in TryConvertSimpleValue()
|