Home
last modified time | relevance | path

Searched refs:TFpDebugDebuggerProperties (Results 1 – 10 of 10) sorted by relevance

/dports/editors/lazarus-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/lazdebuggers/lazdebuggerfp/
H A Dfpdebugdebuggerutils.pas94 TFpDebugDebuggerProperties = class(TDebuggerProperties) class
318 procedure TFpDebugDebuggerProperties.SetMemLimits(AValue: TFpDebugDebuggerPropertiesMemLimits);
323 constructor TFpDebugDebuggerProperties.Create;
334 destructor TFpDebugDebuggerProperties.Destroy;
340 procedure TFpDebugDebuggerProperties.Assign(Source: TPersistent);
343 if Source is TFpDebugDebuggerProperties then begin
344 FNextOnlyStopOnStartLine := TFpDebugDebuggerProperties(Source).NextOnlyStopOnStartLine;
345 FConsoleTty:=TFpDebugDebuggerProperties(Source).ConsoleTty;
347 FForceNewConsole:=TFpDebugDebuggerProperties(Source).FForceNewConsole;
349 FMemLimits.Assign(TFpDebugDebuggerProperties(Source).MemLimits);
[all …]
H A Dfpdebugdebugger.pas3050 Opts := TFpDebugDebuggerProperties(GetProperties).HandleDebugBreakInstruction;
3144 …FDbgController.NextOnlyStopOnStartLine := TFpDebugDebuggerProperties(GetProperties).NextOnlyStopOn…
3152 AConsoleTty:=TFpDebugDebuggerProperties(GetProperties).ConsoleTty;
3161 FDbgController.ForceNewConsoleWin:=TFpDebugDebuggerProperties(GetProperties).ForceNewConsole;
3720 …FMemManager.MemLimits.MaxMemReadSize := TFpDebugDebuggerProperties(GetProperties).MemLimits.MaxMem…
3721 …FMemManager.MemLimits.MaxArrayLen := TFpDebugDebuggerProperties(GetProperties).MemLimits.MaxArrayL…
3722 …FMemManager.MemLimits.MaxStringLen := TFpDebugDebuggerProperties(GetProperties).MemLimits.MaxStrin…
3723 …FMemManager.MemLimits.MaxNullStringSearchLen := TFpDebugDebuggerProperties(GetProperties).MemLimit…
3733 …FDbgController.NextOnlyStopOnStartLine := TFpDebugDebuggerProperties(GetProperties).NextOnlyStopOn…
3840 Result := TFpDebugDebuggerProperties.Create;
H A Dfpdebugdebuggerworkthreads.pas607 Prop: TFpDebugDebuggerProperties;
613 Prop := TFpDebugDebuggerProperties(FDebugger.GetProperties);
/dports/editors/lazarus-qt5-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/lazdebuggers/lazdebuggerfp/
H A Dfpdebugdebuggerutils.pas94 TFpDebugDebuggerProperties = class(TDebuggerProperties) class
318 procedure TFpDebugDebuggerProperties.SetMemLimits(AValue: TFpDebugDebuggerPropertiesMemLimits);
323 constructor TFpDebugDebuggerProperties.Create;
334 destructor TFpDebugDebuggerProperties.Destroy;
340 procedure TFpDebugDebuggerProperties.Assign(Source: TPersistent);
343 if Source is TFpDebugDebuggerProperties then begin
344 FNextOnlyStopOnStartLine := TFpDebugDebuggerProperties(Source).NextOnlyStopOnStartLine;
345 FConsoleTty:=TFpDebugDebuggerProperties(Source).ConsoleTty;
347 FForceNewConsole:=TFpDebugDebuggerProperties(Source).FForceNewConsole;
349 FMemLimits.Assign(TFpDebugDebuggerProperties(Source).MemLimits);
[all …]
H A Dfpdebugdebugger.pas3050 Opts := TFpDebugDebuggerProperties(GetProperties).HandleDebugBreakInstruction;
3144 …FDbgController.NextOnlyStopOnStartLine := TFpDebugDebuggerProperties(GetProperties).NextOnlyStopOn…
3152 AConsoleTty:=TFpDebugDebuggerProperties(GetProperties).ConsoleTty;
3161 FDbgController.ForceNewConsoleWin:=TFpDebugDebuggerProperties(GetProperties).ForceNewConsole;
3720 …FMemManager.MemLimits.MaxMemReadSize := TFpDebugDebuggerProperties(GetProperties).MemLimits.MaxMem…
3721 …FMemManager.MemLimits.MaxArrayLen := TFpDebugDebuggerProperties(GetProperties).MemLimits.MaxArrayL…
3722 …FMemManager.MemLimits.MaxStringLen := TFpDebugDebuggerProperties(GetProperties).MemLimits.MaxStrin…
3723 …FMemManager.MemLimits.MaxNullStringSearchLen := TFpDebugDebuggerProperties(GetProperties).MemLimit…
3733 …FDbgController.NextOnlyStopOnStartLine := TFpDebugDebuggerProperties(GetProperties).NextOnlyStopOn…
3840 Result := TFpDebugDebuggerProperties.Create;
H A Dfpdebugdebuggerworkthreads.pas607 Prop: TFpDebugDebuggerProperties;
613 Prop := TFpDebugDebuggerProperties(FDebugger.GetProperties);
/dports/editors/lazarus-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/lazdebuggers/lazdebuggerfp/test/
H A Dteststepping.pas155 TFpDebugDebuggerProperties(dbg.GetProperties).NextOnlyStopOnStartLine := ANextOnlyStopOnStartLine;
382 TFpDebugDebuggerProperties(dbg.GetProperties).NextOnlyStopOnStartLine := ANextOnlyStopOnStartLine;
470 TFpDebugDebuggerProperties(dbg.GetProperties).NextOnlyStopOnStartLine := ANextOnlyStopOnStartLine;
695 TFpDebugDebuggerProperties(dbg.GetProperties).NextOnlyStopOnStartLine := ANextOnlyStopOnStartLine;
/dports/editors/lazarus-qt5-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/lazdebuggers/lazdebuggerfp/test/
H A Dteststepping.pas155 TFpDebugDebuggerProperties(dbg.GetProperties).NextOnlyStopOnStartLine := ANextOnlyStopOnStartLine;
382 TFpDebugDebuggerProperties(dbg.GetProperties).NextOnlyStopOnStartLine := ANextOnlyStopOnStartLine;
470 TFpDebugDebuggerProperties(dbg.GetProperties).NextOnlyStopOnStartLine := ANextOnlyStopOnStartLine;
695 TFpDebugDebuggerProperties(dbg.GetProperties).NextOnlyStopOnStartLine := ANextOnlyStopOnStartLine;
/dports/editors/lazarus/lazarus/components/lazdebuggers/lazdebuggerfp/
H A Dfpdebugdebugger.pas61 TFpDebugDebuggerProperties = class(TDebuggerProperties) class
424 constructor TFpDebugDebuggerProperties.Create;
430 procedure TFpDebugDebuggerProperties.Assign(Source: TPersistent);
433 if Source is TFpDebugDebuggerProperties then begin
434 FNextOnlyStopOnStartLine := TFpDebugDebuggerProperties(Source).NextOnlyStopOnStartLine;
435 FConsoleTty:=TFpDebugDebuggerProperties(Source).ConsoleTty;
1808 …FDbgController.NextOnlyStopOnStartLine := TFpDebugDebuggerProperties(GetProperties).NextOnlyStopOn…
1815 AConsoleTty:=TFpDebugDebuggerProperties(GetProperties).ConsoleTty;
2158 …FDbgController.NextOnlyStopOnStartLine := TFpDebugDebuggerProperties(GetProperties).NextOnlyStopOn…
2246 Result := TFpDebugDebuggerProperties.Create;
/dports/editors/lazarus-qt5/lazarus/components/lazdebuggers/lazdebuggerfp/
H A Dfpdebugdebugger.pas61 TFpDebugDebuggerProperties = class(TDebuggerProperties) class
424 constructor TFpDebugDebuggerProperties.Create;
430 procedure TFpDebugDebuggerProperties.Assign(Source: TPersistent);
433 if Source is TFpDebugDebuggerProperties then begin
434 FNextOnlyStopOnStartLine := TFpDebugDebuggerProperties(Source).NextOnlyStopOnStartLine;
435 FConsoleTty:=TFpDebugDebuggerProperties(Source).ConsoleTty;
1808 …FDbgController.NextOnlyStopOnStartLine := TFpDebugDebuggerProperties(GetProperties).NextOnlyStopOn…
1815 AConsoleTty:=TFpDebugDebuggerProperties(GetProperties).ConsoleTty;
2158 …FDbgController.NextOnlyStopOnStartLine := TFpDebugDebuggerProperties(GetProperties).NextOnlyStopOn…
2246 Result := TFpDebugDebuggerProperties.Create;