Home
last modified time | relevance | path

Searched refs:Split (Results 1 – 25 of 39) sorted by relevance

12

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Tokenizer/
DHexToken.cs14 public HexToken(string value):base(Convert.ToInt64(value.Split('x')[1], 16).ToString()) in HexToken()
DAbsoluteRangeToken.cs19 var split = trimmed.Split(',').Select(x => x.Trim()).ToArray(); in AbsoluteRangeToken()
DRelativeRangeToken.cs21 …var split = trimmed.Split(new []{ ' ' }, StringSplitOptions.RemoveEmptyEntries).Select(x => x.Trim… in RelativeRangeToken()
DRangeToken.cs40 ? Convert.ToUInt64(input[i].Split('x')[1], 16) in ParseNumbers()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/RiscV/
DRiscvOpcodesParser.cs158 var elems = lineContent.Split(LineSplitPatterns, StringSplitOptions.RemoveEmptyEntries); in ParseLine()
167 var parts = elem.Split(PartSplitPatterns); in ParseLine()
257 var x = s.Split(BitRangeSplitPatterns, StringSplitOptions.None); in TryParse()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Logging/Backends/
DTextBackend.cs19 var messages = entry.Message.Split('\n').GetEnumerator(); in FormatLogEntry()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Network/
DAtCommandModemParsing.cs104 var arguments = argumentsString.Split(','); in ParseArguments()
164 var parts = command.Split(new [] { '=' }, 2); in ParsedCommand()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/MonitorTests/CommandTests/
DPythonCommands.cs74 var splitResult = result.Split(new[]{ '|' }, StringSplitOptions.RemoveEmptyEntries); in DumpTest()
85 … var splitBytes = resultElement.Split(new[]{ ' ' }, StringSplitOptions.RemoveEmptyEntries); in DumpTest()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/GDB/
DPacketThreadId.cs21 var ids = gdbArgument.TrimStart('p').Split('.'); in PacketThreadId()
DCommand.cs236 … return valueToParse.Split(2).Select(x => byte.Parse(x, NumberStyles.HexNumber)).ToArray(); in HandleArgumentNotResolved()
238 …return Encoding.UTF8.GetString(valueToParse.Split(2).Select(x => byte.Parse(x, NumberStyles.HexNum… in HandleArgumentNotResolved()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/
DExecuteCommand.cs37 … var macroLines = GetVariable(tokens[0] as VariableToken).GetObjectValue().ToString().Split('\n'); in Run()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/
DMonitorPath.cs50 var split = path.Split(pathSeparator, StringSplitOptions.RemoveEmptyEntries).Distinct(); in GetDirEntries()
DMonitorPythonEngine.cs89 var keywordArguments = arguments.Skip(parametersLength).Split(3).Select((kwarg, idx) => in ExecuteBuiltinCommand()
DMonitorCommands.cs502 … if(longestMatching.Split('.').Length < currentMatch.Split('.').Length - prefix.Split('.').Length) in TryFindPeripheralTypeByName()
543 … if(longestMatching.Split('.').Length < currentMatch.Split('.').Length - prefix.Split('.').Length) in TryFindPeripheralByName()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DVmemReader.cs98 var words = sub.Split(whitespaces, StringSplitOptions.RemoveEmptyEntries); in ParseCommentless()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Plugins/
DPluginManager.cs86 …foreach(var pluginName in enabledPlugins.Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntrie… in Init()
172 var pluginNameComponents = name.Split(SplitSeparator); in FindPluginFromName()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/GDB/Commands/
DMonitorCommand.cs62 var argv = input.Split(new [] { ' ' }); in TryProcess()
DMultithreadContinueCommand.cs176 foreach(var pair in data.Split(';')) in TryParseData()
180 var operation = pair.Split(':'); in TryParseData()
/Renode-Infrastructure-v1.15.3-29f510e/src/UI/
DCrashHandler.cs40 …markdown.Markdown = message.Split(new [] { '\n' }).Select(x => "\t" + x).Aggregate((x, y) => x + "… in ShowErrorWindow()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Common/
DRegisterEnumParser.tt48 usings.Add("using " + line.Split('"')[1] + ";");
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/Binding/
DNativeBinder.cs305 var parts = candidate.Split(new [] { "__" }, StringSplitOptions.RemoveEmptyEntries); in ResolveCallsToManaged()
399 var words = name.Split('_'); in GetCSharpName()
410 var result = Symbol.DemangleSymbol(name).Split('(')[0].ToString(); in FilterCppName()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/GPIOPort/
DGaisler_GPIO.cs39 … foreach(var pin in inputOnlyPins.Split(new [] { ',' }, StringSplitOptions.RemoveEmptyEntries)) in Gaisler_GPIO()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/
DMachineExtensions.cs90 … var disabledNodeNames = disabledNodes.Split(new[] { ' ' }, StringSplitOptions.RemoveEmptyEntries); in LoadFdt()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/Structure/
DMACAddress.cs131 var splits = str.Split(':'); in TryParse()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Sensor/
DSensorSamplesFifo.cs173 …var numbers = line.Split(new [] { ' ' }, StringSplitOptions.RemoveEmptyEntries).Select(a => a.Trim… in ParseSamplesFile()

12