Home
last modified time | relevance | path

Searched refs:ToShortString (Results 1 – 7 of 7) sorted by relevance

/Renode-v1.15.3-c57714d/src/Renode/PlatformDescription/Syntax/
DIrqDestinations.cs33 return ends.Single().ToShortString(); in PrettyPrintIrqEnds()
35 …return string.Format("[{0}]", ends.Select(x => x.ToShortString()).Aggregate((x, y) => x + "," + y)… in PrettyPrintIrqEnds()
DEnumValue.cs31 return string.Format("[EnumValue: {0}]", ToShortString()); in ToString()
34 public string ToShortString() in ToShortString() method in Antmicro.Renode.PlatformDescription.Syntax.EnumValue
DIrqEnd.cs20 return string.Format("[IrqEnd: {0}]", ToShortString()); in ToString()
23 public string ToShortString() in ToShortString() method in Antmicro.Renode.PlatformDescription.Syntax.IrqEnd
DIrqReceiver.cs29 public string ToShortString() in ToShortString() method in Antmicro.Renode.PlatformDescription.Syntax.IrqReceiver
31 … return Reference.ToShortString() + (LocalIndex != null ? "#" + LocalIndex.ToString() : ""); in ToShortString()
DReferenceValue.cs25 public string ToShortString() in ToShortString() method in Antmicro.Renode.PlatformDescription.Syntax.ReferenceValue
DSingleOrMultiIrqEnd.cs56 return endsAsArray[0].ToShortString(); in PrettyPrintEnds()
/Renode-v1.15.3-c57714d/src/Renode/PlatformDescription/
DCreationDriver.cs1284 …at("Interrupt '{0}' has already been used as a source in this entry.", end.ToShortString()), true); in CheckOverlappingIrqs()