Home
last modified time | relevance | path

Searched refs:ReferenceValue (Results 1 – 8 of 8) sorted by relevance

/Renode-v1.15.3-c57714d/src/Renode/PlatformDescription/Syntax/
DReferenceValue.cs12 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()
DRegistrationInfo.cs15 public RegistrationInfo(ReferenceValue register, Value registrationPoint) in RegistrationInfo()
26 public ReferenceValue Register { get; private set; }
DIrqReceiver.cs15 public IrqReceiver(ReferenceValue reference, int? localIndex) in IrqReceiver()
39 public ReferenceValue Reference { get; private set; }
DGrammar.cs181 …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/
DVariableStore.cs56 public bool TryGetVariableFromReference(ReferenceValue reference, out Variable variable) in TryGetVariableFromReference()
62 public Variable GetVariableFromReference(ReferenceValue reference) in GetVariableFromReference()
DCreationDriver.cs31 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 …]
DUsingsGraph.cs176 …SyntaxTreeHelpers.VisitSyntaxTree<ReferenceValue>(description, x => x.Scope = description.FileName… in SetupScopeInDescription()
/Renode-v1.15.3-c57714d/tests/unit-tests/RenodeTests/PlatformDescription/
DParserTests.cs179 Assert.AreEqual("otherUart", ((ReferenceValue)attributes["friendUart"]).Value); in ShouldParseEntryWithAllAttributes()