Searched refs:ReferenceValue (Results 1 – 8 of 8) sorted by relevance
/Renode-v1.15.3-c57714d/src/Renode/PlatformDescription/Syntax/ |
D | ReferenceValue.cs | 12 public sealed class ReferenceValue : Value, IPrefixable, IPositionAware<ReferenceValue> class 14 public ReferenceValue(string value) in ReferenceValue() method in Antmicro.Renode.PlatformDescription.Syntax.ReferenceValue 35 ReferenceValue IPositionAware<ReferenceValue>.SetPos(Position startPos, int length) in SetPos() 37 return (ReferenceValue)SetPos(startPos, length); in SetPos()
|
D | RegistrationInfo.cs | 15 public RegistrationInfo(ReferenceValue register, Value registrationPoint) in RegistrationInfo() 26 public ReferenceValue Register { get; private set; }
|
D | IrqReceiver.cs | 15 public IrqReceiver(ReferenceValue reference, int? localIndex) in IrqReceiver() 39 public ReferenceValue Reference { get; private set; }
|
D | Grammar.cs | 181 …public static readonly Parser<ReferenceValue> ReferenceValue = Identifier.Select(x => new Referenc… field in Antmicro.Renode.PlatformDescription.Syntax.Grammar 192 .Or(ReferenceValue) 196 (from register in ReferenceValue.Named("register reference").Positioned() 276 (from destinationName in ReferenceValue.Named("destination peripheral reference")
|
/Renode-v1.15.3-c57714d/src/Renode/PlatformDescription/ |
D | VariableStore.cs | 56 public bool TryGetVariableFromReference(ReferenceValue reference, out Variable variable) in TryGetVariableFromReference() 62 public Variable GetVariableFromReference(ReferenceValue reference) in GetVariableFromReference()
|
D | CreationDriver.cs | 31 using DependencyGraph = Dictionary<Entry, Dictionary<Entry, ReferenceValue>>; 333 var localDictionary = new Dictionary<Entry, ReferenceValue>(); in BuildDependencyGraph() 337 ReferenceValue maybeReferenceValue; in BuildDependencyGraph() 344 maybeReferenceValue = ctorAttribute.Value as ReferenceValue; in BuildDependencyGraph() 437 var referenceRegPoint = registrationPoint as ReferenceValue; in ProcessEntryPreMerge() 666 var referenceValue = attribute.Value as ReferenceValue; in PrepareConstructorParameters() 954 var referenceRegPoint = registrationInfo.RegistrationPoint as ReferenceValue; in TryRegisterFromEntry() 1062 var referenceValue = ctorOrPropertyAttribute.Value as ReferenceValue; in ValidateAttributePreMerge() 1200 var referenceValue = attribute.Value as ReferenceValue; in ValidateProperty() 1216 …Enumerable<Type> ValidateReference(string friendlyName, Type[] typesToAssign, ReferenceValue value) in ValidateReference() [all …]
|
D | UsingsGraph.cs | 176 …SyntaxTreeHelpers.VisitSyntaxTree<ReferenceValue>(description, x => x.Scope = description.FileName… in SetupScopeInDescription()
|
/Renode-v1.15.3-c57714d/tests/unit-tests/RenodeTests/PlatformDescription/ |
D | ParserTests.cs | 179 Assert.AreEqual("otherUart", ((ReferenceValue)attributes["friendUart"]).Value); in ShouldParseEntryWithAllAttributes()
|