hexsha
stringlengths
40
40
size
int64
3
1.05M
ext
stringclasses
163 values
lang
stringclasses
53 values
max_stars_repo_path
stringlengths
3
945
max_stars_repo_name
stringlengths
4
112
max_stars_repo_head_hexsha
stringlengths
40
78
max_stars_repo_licenses
listlengths
1
10
max_stars_count
float64
1
191k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
3
945
max_issues_repo_name
stringlengths
4
113
max_issues_repo_head_hexsha
stringlengths
40
78
max_issues_repo_licenses
listlengths
1
10
max_issues_count
float64
1
116k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
3
945
max_forks_repo_name
stringlengths
4
113
max_forks_repo_head_hexsha
stringlengths
40
78
max_forks_repo_licenses
listlengths
1
10
max_forks_count
float64
1
105k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
3
1.05M
avg_line_length
float64
1
966k
max_line_length
int64
1
977k
alphanum_fraction
float64
0
1
6a882e626047e8f8622b90df27a577e22f276d45
3,693
pas
Pascal
FastList.pas
randydom/commonx
2315f1acf41167bd77ba4d040b3f5b15a5c5b81a
[ "MIT" ]
48
2018-11-19T22:13:00.000Z
2021-11-02T17:25:41.000Z
FastList.pas
jpluimers/commonx
c49e51b4edcc61b2b51e78590a5168d574b66282
[ "MIT" ]
6
2018-11-24T17:15:29.000Z
2019-05-15T14:59:56.000Z
FastList.pas
jpluimers/commonx
c49e51b4edcc61b2b51e78590a5168d574b66282
[ "MIT" ]
12
2018-11-20T15:15:44.000Z
2021-09-14T10:12:43.000Z
unit FastList; {$INCLUDE DelphiDefs.inc} {$IFNDEF WINDOWS} !error, this is only intended for windows (non-arc) compilers {$ENDIF} interface uses systemx, typex, sysutils, generics.collections, generics.defaults; type PPointer = ^pointer; TFastList<TYP: class>= class(TObject) private FObjects: PPointer;...
18.651515
68
0.648524
6a7bf5084b7a822dcc6b1e96d61d75fbc8b4a8ac
6,880
pas
Pascal
Kide/Source/KIDE.Editor.pas
gz818/kitto3
e76eea45028d732730a66c2d6238d13cd2e65392
[ "Apache-2.0" ]
1
2021-11-18T05:41:19.000Z
2021-11-18T05:41:19.000Z
Kide/Source/KIDE.Editor.pas
gz818/kitto3
e76eea45028d732730a66c2d6238d13cd2e65392
[ "Apache-2.0" ]
null
null
null
Kide/Source/KIDE.Editor.pas
gz818/kitto3
e76eea45028d732730a66c2d6238d13cd2e65392
[ "Apache-2.0" ]
null
null
null
{------------------------------------------------------------------------------- Copyright 2012-2017 Ethea S.r.l. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://ww...
34.4
125
0.681105
61e770feff52a5efc448ceea2177b8eb5fdf5cba
642
pas
Pascal
test_pascal/test_class/test3.pas
tranleduy2000/pascalnide
c7f3f79ecf4cf6a81b32c7d389aad7f4034c8f01
[ "Apache-2.0" ]
81
2017-05-07T13:26:56.000Z
2022-03-03T19:39:15.000Z
test_pascal/test_class/test3.pas
tranleduy2000/pascalnide
c7f3f79ecf4cf6a81b32c7d389aad7f4034c8f01
[ "Apache-2.0" ]
52
2017-06-13T08:46:43.000Z
2021-06-09T09:50:07.000Z
test_pascal/test_class/test3.pas
tranleduy2000/pascalnide
c7f3f79ecf4cf6a81b32c7d389aad7f4034c8f01
[ "Apache-2.0" ]
28
2017-05-22T21:09:58.000Z
2021-09-07T13:05:27.000Z
{$mode objfpc} // directive to be used for defining classes {$m+} // directive to be used for using constructor program exClass; type Rectangle = class private zrandom : integer; public function setRandom() : integer; function getRandom() : integer; end; var r1, r2 : Rectangle; functi...
18.342857
59
0.674455
6a667a1d7a1229702789e1398faade2bcafe617d
1,361
dpr
Pascal
contrib/mORMot/SQLite3/Samples/11 - Exception logging/thread512.dpr
Razor12911/bms2xtool
0493cf895a9dbbd9f2316a3256202bcc41d9079c
[ "MIT" ]
11
2022-01-17T22:05:37.000Z
2022-02-23T19:18:19.000Z
contrib/mORMot/SQLite3/Samples/11 - Exception logging/thread512.dpr
Razor12911/xtool
4797195ad310e8f6dc2eae8eb86fe14683f77cf0
[ "MIT" ]
1
2022-02-17T07:17:16.000Z
2022-02-17T07:17:16.000Z
contrib/mORMot/SQLite3/Samples/11 - Exception logging/thread512.dpr
Razor12911/bms2xtool
0493cf895a9dbbd9f2316a3256202bcc41d9079c
[ "MIT" ]
2
2020-08-18T09:42:33.000Z
2021-04-22T08:15:27.000Z
// test logging when 6000 threads are created (per chunks of 20) program thread512; {$APPTYPE CONSOLE} uses {$ifdef MSWINDOWS} Windows, {$endif} SynCommons, SynLog, mORMot, Classes, SysUtils; type TMyThread = class(TThread) protected procedure Execute; override; end; var n: integer; pro...
19.169014
93
0.671565
6a4be2ee532449770d15dd138cae61d5a9783104
4,057
pas
Pascal
windows/src/desktop/setup/UfrmDownloadProgress.pas
bravogeorge/keyman
c0797e36292de903d7313214d1f765e3d9a2bf4d
[ "MIT" ]
219
2017-06-21T03:37:03.000Z
2022-03-27T12:09:28.000Z
windows/src/desktop/setup/UfrmDownloadProgress.pas
bravogeorge/keyman
c0797e36292de903d7313214d1f765e3d9a2bf4d
[ "MIT" ]
4,451
2017-05-29T02:52:06.000Z
2022-03-31T23:53:23.000Z
windows/src/desktop/setup/UfrmDownloadProgress.pas
bravogeorge/keyman
c0797e36292de903d7313214d1f765e3d9a2bf4d
[ "MIT" ]
72
2017-05-26T04:08:37.000Z
2022-03-03T10:26:20.000Z
(* Name: UfrmDownloadProgress Copyright: Copyright (C) SIL International. Documentation: Description: Create Date: 4 Dec 2006 Modified Date: 18 May 2012 Authors: mcdurdin Related Files: Dependencies: Bugs: Todo: N...
28.370629
113
0.700271
6a6de58777cfbefcde4243760671865c01705dfd
947
pas
Pascal
import/src/DataSourceIntf.pas
voucha/powertools
e80a591a7cfc02eb48a034687801370eb0c9c9ae
[ "MIT" ]
null
null
null
import/src/DataSourceIntf.pas
voucha/powertools
e80a591a7cfc02eb48a034687801370eb0c9c9ae
[ "MIT" ]
null
null
null
import/src/DataSourceIntf.pas
voucha/powertools
e80a591a7cfc02eb48a034687801370eb0c9c9ae
[ "MIT" ]
null
null
null
unit DataSourceIntf; interface uses System.SysUtils, System.Classes, Winapi.Windows, ZDataset, Customers; type IImportDataSource = interface function showConnectionSetting(ParentHandle: HWND): Boolean; procedure Connect; procedure Disconnnect; procedure getCustomerDataset(Query: TZQuery); p...
27.057143
78
0.774023
6a5a981df1c358d4665eab0e4066fd2784cef3b7
18,093
pas
Pascal
PythonForDelphi/Components/Sources/Core/WrapDelphiTypes.pas
katischulze/python4delphi
38314ef36e54f14b068d9c72278e71f301d02847
[ "MIT" ]
5
2017-07-01T03:52:57.000Z
2021-11-16T10:52:09.000Z
PythonForDelphi/Components/Sources/Core/WrapDelphiTypes.pas
katischulze/python4delphi
38314ef36e54f14b068d9c72278e71f301d02847
[ "MIT" ]
1
2020-02-04T23:22:21.000Z
2020-02-04T23:22:21.000Z
PythonForDelphi/Components/Sources/Core/WrapDelphiTypes.pas
katischulze/python4delphi
38314ef36e54f14b068d9c72278e71f301d02847
[ "MIT" ]
3
2017-11-08T14:45:15.000Z
2021-04-12T19:12:50.000Z
{$I Definition.Inc} unit WrapDelphiTypes; interface uses Classes, SysUtils, PythonEngine, Types, WrapDelphi; type TPyDelphiPoint = class(TPyObject) private fValue: TPoint; protected // Exposed Getters function Get_X(Acontext : Pointer) : PPyObject; cdecl; function...
29.276699
119
0.698281
aad787cbe2acb229204b43de6cf7ff9c890b018d
336
dpr
Pascal
Demo/SvgViewer/SvgViewer.dpr
YWtheGod/SVGIconImageList
76090ecd0a2972ccdfcd6c53cf46e22288e386a1
[ "Apache-2.0" ]
null
null
null
Demo/SvgViewer/SvgViewer.dpr
YWtheGod/SVGIconImageList
76090ecd0a2972ccdfcd6c53cf46e22288e386a1
[ "Apache-2.0" ]
null
null
null
Demo/SvgViewer/SvgViewer.dpr
YWtheGod/SVGIconImageList
76090ecd0a2972ccdfcd6c53cf46e22288e386a1
[ "Apache-2.0" ]
null
null
null
program SvgViewer; uses Vcl.Forms, SvgViewerUnit in 'SvgViewerUnit.pas' {SVGViewerForm}, FrameViewer in 'FrameViewer.pas' {FrameView: TFrame}; {$R *.res} begin Application.Initialize; Application.MainFormOnTaskbar := True; Application.CreateForm(TSVGViewerForm, SVGViewerForm); Applicat...
18.666667
57
0.717262
6a5c4b5b00a2d2c580ac8e76f61c904288374648
858
dpr
Pascal
launch/JoplinPortable.dpr
shaoziyang/JoplinPortable
e4c0391d0c47bbb0602380cb9f7131717a7f1844
[ "CC0-1.0" ]
1
2022-03-07T02:15:56.000Z
2022-03-07T02:15:56.000Z
launch/JoplinPortable.dpr
shaoziyang/JoplinPortable
e4c0391d0c47bbb0602380cb9f7131717a7f1844
[ "CC0-1.0" ]
null
null
null
launch/JoplinPortable.dpr
shaoziyang/JoplinPortable
e4c0391d0c47bbb0602380cb9f7131717a7f1844
[ "CC0-1.0" ]
null
null
null
program JoplinPortable; uses Windows, ShellAPI, IniFiles, SysUtils; {$R *.res} var path: string; AppName: string; DataPath: string; ini: TIniFile; begin path := ExtractFilePath(ParamStr(0)); if FileExists(path + 'JoplinPortable.cmd') then begin ShellExecute(0, 'open', PChar(path + 'Joplin...
19.953488
96
0.62704
6ad6e2035c26be152f11b0f4e6c4b60f46aa2729
2,188
dfm
Pascal
Chapter03/03_GenericPeople/ufrmPeopleList.dfm
atkins126/Fearless-Cross-Platform-Development-with-Delphi
1fc47e085c82bfa51f0bf2792f22bedc18a72756
[ "MIT" ]
25
2020-06-19T10:50:25.000Z
2022-03-16T12:46:25.000Z
Chapter03/03_GenericPeople/ufrmPeopleList.dfm
atkins126/Fearless-Cross-Platform-Development-with-Delphi
1fc47e085c82bfa51f0bf2792f22bedc18a72756
[ "MIT" ]
null
null
null
Chapter03/03_GenericPeople/ufrmPeopleList.dfm
atkins126/Fearless-Cross-Platform-Development-with-Delphi
1fc47e085c82bfa51f0bf2792f22bedc18a72756
[ "MIT" ]
7
2020-08-27T02:55:57.000Z
2022-03-02T21:25:21.000Z
object frmPeopleList: TfrmPeopleList Left = 0 Top = 0 Caption = 'People List' ClientHeight = 340 ClientWidth = 515 Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color = clWindowText Font.Height = -13 Font.Name = 'Tahoma' Font.Style = [] OldCreateOrder = False OnCreate = FormCreate On...
20.259259
46
0.584552
615103915a09adcd74a522cf021a7fdc17e382bb
3,609
pas
Pascal
HODLER_Multiplatform_Win_And_iOS_Linux/additionalUnits/CryptoLib/src/Math/EC/Multiplier/ClpFixedPointCombMultiplier.pas
devilking6105/HODLER-Open-Source-Multi-Asset-Wallet
2554bce0ad3e3e08e4617787acf93176243ce758
[ "Unlicense" ]
35
2018-11-04T12:02:34.000Z
2022-02-15T06:00:19.000Z
HODLER_Multiplatform_Win_And_iOS_Linux/additionalUnits/CryptoLib/src/Math/EC/Multiplier/ClpFixedPointCombMultiplier.pas
Ecoent/HODLER-Open-Source-Multi-Asset-Wallet
a8c54ecfc569d0ee959b6f0e7826c4ee4b5c4848
[ "Unlicense" ]
85
2018-10-23T17:09:20.000Z
2022-01-12T07:12:54.000Z
HODLER_Multiplatform_Win_And_iOS_Linux/additionalUnits/CryptoLib/src/Math/EC/Multiplier/ClpFixedPointCombMultiplier.pas
Ecoent/HODLER-Open-Source-Multi-Asset-Wallet
a8c54ecfc569d0ee959b6f0e7826c4ee4b5c4848
[ "Unlicense" ]
34
2018-10-30T00:40:37.000Z
2022-02-15T06:00:15.000Z
{ *********************************************************************************** } { * CryptoLib Library * } { * Copyright (c) 2018 - 20XX Ugochukwu Mmaduekwe * } { * Github Repository <https://github.co...
27.549618
94
0.579108
6a35831cceb2cb31e32f575a851e8e4c629dd833
767
dfm
Pascal
Examples/VCL/Example 1 - Basic usage/unit1.dfm
aidv/verysimplexml
21748d23439214352523966d21df1c4fc7efd523
[ "Condor-1.1" ]
54
2016-05-03T15:22:06.000Z
2022-01-15T18:31:31.000Z
Examples/VCL/Example 1 - Basic usage/unit1.dfm
aidv/verysimplexml
21748d23439214352523966d21df1c4fc7efd523
[ "Condor-1.1" ]
5
2019-01-10T06:47:40.000Z
2020-10-25T11:40:45.000Z
Examples/VCL/Example 1 - Basic usage/unit1.dfm
aidv/verysimplexml
21748d23439214352523966d21df1c4fc7efd523
[ "Condor-1.1" ]
30
2016-10-20T18:26:12.000Z
2021-12-27T17:06:57.000Z
object Form1: TForm1 Left = 0 Top = 0 Caption = 'Form1' ClientHeight = 300 ClientWidth = 635 Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color = clWindowText Font.Height = -11 Font.Name = 'Tahoma' Font.Style = [] OldCreateOrder = False OnShow = FormShow PixelsPerInch ...
20.72973
35
0.611473
61cd8cb154fa0c2e9b00cf40f4c9a172be96fc7b
3,271
pas
Pascal
src/archtecture/EventBus/Form.Main.pas
bogdanpolak/internalBSC
75f7f9be576de7af0f1748f602137cca4dc8bb84
[ "MIT" ]
3
2019-01-13T08:41:55.000Z
2020-11-11T03:00:56.000Z
src/archtecture/EventBus/Form.Main.pas
bogdanpolak/internalBSC
75f7f9be576de7af0f1748f602137cca4dc8bb84
[ "MIT" ]
7
2018-09-27T15:27:35.000Z
2019-08-13T15:30:23.000Z
src/archtecture/EventBus/Form.Main.pas
bogdanpolak/internalBSC
75f7f9be576de7af0f1748f602137cca4dc8bb84
[ "MIT" ]
3
2019-01-13T08:41:57.000Z
2020-11-11T03:01:00.000Z
unit Form.Main; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtCtrls, Vcl.StdCtrls; type TFormMain = class(TForm) GroupBox1: TGroupBox; Bevel1: TBevel; Bevel2: TBevel; Bevel3: TBevel;...
23.364286
69
0.750229
852de8760bf5c7e6247b6c88c80fbd88c8ce3637
3,156
pas
Pascal
client/Input.pas
RazZziel/soldat
1eae85d007f5e52f34a32c474e5a277a021292f1
[ "MIT" ]
1,391
2018-11-28T19:15:30.000Z
2022-03-30T06:11:10.000Z
client/Input.pas
xyproto/soldat
2280296ac56883f6a9cad4da48025af8ae7782e7
[ "MIT" ]
61
2018-06-25T07:55:05.000Z
2022-03-31T07:10:04.000Z
client/Input.pas
xyproto/soldat
2280296ac56883f6a9cad4da48025af8ae7782e7
[ "MIT" ]
84
2020-05-25T15:12:56.000Z
2022-03-07T12:31:14.000Z
{*******************************************************} { } { Input Unit for SOLDAT } { } { Copyright (c) 2016 Paweł Drzazga } { ...
25.451613
89
0.592522
852ce5966b48fb95a4123b4499f841e6ea3f4839
179,654
pas
Pascal
source/uWVBrowserBase.pas
khongten001/WebView4Delphi
b5c33eb9fc52cde0763afef0e1260573795e1c58
[ "MIT" ]
99
2021-12-03T22:21:56.000Z
2022-03-26T20:19:23.000Z
source/uWVBrowserBase.pas
khongten001/WebView4Delphi
b5c33eb9fc52cde0763afef0e1260573795e1c58
[ "MIT" ]
20
2021-12-04T10:12:45.000Z
2022-03-01T09:37:51.000Z
source/uWVBrowserBase.pas
khongten001/WebView4Delphi
b5c33eb9fc52cde0763afef0e1260573795e1c58
[ "MIT" ]
17
2021-12-04T09:32:31.000Z
2022-03-24T15:15:44.000Z
unit uWVBrowserBase; {$IFDEF FPC}{$MODE Delphi}{$ENDIF} {$I webview2.inc} interface uses {$IFDEF FPC} Windows, Classes, Types, SysUtils, Graphics, ActiveX, Messages, httpprotocol, CommCtrl, fpjson, jsonparser, {$ELSE} Winapi.Windows, System.Classes, System.Types, System.UITypes, System.SysUtils, ...
46.68763
429
0.681621
6adf43fc295d8d2d1259d5c063553be3db74c1a9
95
pas
Pascal
Source/Source/Tools/LuaWorkshop/synedit/Source/QSynEditExport.pas
uvbs/FullSource
07601c5f18d243fb478735b7bdcb8955598b9a90
[ "MIT" ]
2
2018-07-26T07:58:14.000Z
2019-05-31T14:32:18.000Z
Jx3Full/Source/Source/Tools/LuaWorkshop/synedit/Source/QSynEditExport.pas
RivenZoo/FullSource
cfd7fd7ad422fd2dae5d657a18839c91ff9521fd
[ "MIT" ]
null
null
null
Jx3Full/Source/Source/Tools/LuaWorkshop/synedit/Source/QSynEditExport.pas
RivenZoo/FullSource
cfd7fd7ad422fd2dae5d657a18839c91ff9521fd
[ "MIT" ]
5
2021-02-03T10:25:39.000Z
2022-02-23T07:08:37.000Z
unit QSynEditExport; {$DEFINE SYN_CLX} {$DEFINE QSYNEDITEXPORT} {$I SynEditExport.pas}
13.571429
25
0.715789
aa8df959a5314524e61b9ddafd790b71d96868cb
225
dpr
Pascal
AddString2File_DIR/File2Add_SDir.dpr
minias/delphi_tip
6544bd545852b303c5e9543c6a4b028f8a873d9e
[ "MIT" ]
null
null
null
AddString2File_DIR/File2Add_SDir.dpr
minias/delphi_tip
6544bd545852b303c5e9543c6a4b028f8a873d9e
[ "MIT" ]
null
null
null
AddString2File_DIR/File2Add_SDir.dpr
minias/delphi_tip
6544bd545852b303c5e9543c6a4b028f8a873d9e
[ "MIT" ]
null
null
null
program File2Add_SDir; uses Vcl.Forms, Unit1 in 'Unit1.pas' {Form1}; {$R *.res} begin Application.Initialize; Application.MainFormOnTaskbar := True; Application.CreateForm(TForm1, Form1); Application.Run; end.
15
40
0.724444
850a1b38d2a136d6c6c14f4585e84e9f4d6f4477
529
pas
Pascal
Samples/Delphi/FMX/src/View/RICK.Sample.View2.pas
ricksolucoes/RICKShowForm
5db9adffb7909a7fd0d58ce86397e59199e5e320
[ "MIT" ]
null
null
null
Samples/Delphi/FMX/src/View/RICK.Sample.View2.pas
ricksolucoes/RICKShowForm
5db9adffb7909a7fd0d58ce86397e59199e5e320
[ "MIT" ]
null
null
null
Samples/Delphi/FMX/src/View/RICK.Sample.View2.pas
ricksolucoes/RICKShowForm
5db9adffb7909a7fd0d58ce86397e59199e5e320
[ "MIT" ]
1
2021-12-02T01:13:15.000Z
2021-12-02T01:13:15.000Z
unit RICK.Sample.View2; interface uses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, FMX.Types, FMX.Graphics, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.StdCtrls, FMX.Layouts, FMX.Objects, FMX.Controls.Presentation, RICK.Sample.Base, System.Math.Vectors, FMX.Controls3D, FMX...
18.892857
82
0.722117
6a76a67ad3e16225e16015721e0101265409908f
1,745
dpr
Pascal
vcl/XLSReadWrite6/Samples/XLSSpreadSheet/DemoSpreadSheetRibbon/Src/DemoXSSRibbon.dpr
1aq/PBox
67ced599ee36ceaff097c6584f8100cf96006dfe
[ "MIT" ]
null
null
null
vcl/XLSReadWrite6/Samples/XLSSpreadSheet/DemoSpreadSheetRibbon/Src/DemoXSSRibbon.dpr
1aq/PBox
67ced599ee36ceaff097c6584f8100cf96006dfe
[ "MIT" ]
null
null
null
vcl/XLSReadWrite6/Samples/XLSSpreadSheet/DemoSpreadSheetRibbon/Src/DemoXSSRibbon.dpr
1aq/PBox
67ced599ee36ceaff097c6584f8100cf96006dfe
[ "MIT" ]
null
null
null
program DemoXSSRibbon; uses Vcl.Forms, Main in 'Main.pas' {fmrMain}, FrmNames in 'FrmNames.pas' {frmNameManager}, FrmEditName in 'FrmEditName.pas' {frmName}, FormPageSetup in 'FormPageSetup.pas' {frmPageSetup}, FrmSelPages in 'FrmSelPages.pas' {frmSelectPages}, FrmExpHTML in 'FrmExpHTML.pas' {frmExport...
51.323529
143
0.791404
6aa1297cb569aee14ecf7e93f2da899e360c8904
5,776
pas
Pascal
FormDisplay.pas
DanScottNI/delphi-quarry
4ec8f49e83a07a05da495ff8ba521fff5805ea19
[ "MIT" ]
1
2017-03-18T15:36:22.000Z
2017-03-18T15:36:22.000Z
FormDisplay.pas
DanScottNI/delphi-quarry
4ec8f49e83a07a05da495ff8ba521fff5805ea19
[ "MIT" ]
null
null
null
FormDisplay.pas
DanScottNI/delphi-quarry
4ec8f49e83a07a05da495ff8ba521fff5805ea19
[ "MIT" ]
1
2019-11-29T11:50:24.000Z
2019-11-29T11:50:24.000Z
unit FormDisplay; interface uses Forms, GR32; Procedure ShowOptions(); Procedure ShowTSAEditor(); Procedure ShowQuarrySetup(); Procedure ShowAboutForm(); Procedure ShowJumpTo(); Procedure ShowPaletteEditor(); Procedure ShowPasswordEditor(); Procedure ShowStartingLivesEditor(); Procedure ShowLevelProperties(); Proced...
23.011952
82
0.717105
61316977abeb45b1b8e324b5002536c545960c7f
728
pas
Pascal
cursor/0001.pas
nickelsworth/swag
7c21c0da2291fc249b9dc5cfe121a7672a4ffc08
[ "BSD-2-Clause" ]
11
2015-12-12T05:13:15.000Z
2020-10-14T13:32:08.000Z
cursor/0001.pas
nickelsworth/swag
7c21c0da2291fc249b9dc5cfe121a7672a4ffc08
[ "BSD-2-Clause" ]
null
null
null
cursor/0001.pas
nickelsworth/swag
7c21c0da2291fc249b9dc5cfe121a7672a4ffc08
[ "BSD-2-Clause" ]
8
2017-05-05T05:24:01.000Z
2021-07-03T20:30:09.000Z
{> And how can I hide my cursor ? I know it's something With INT 10 but > that's all I know... Try this: SType 'C' or 'M' - Color or monchrome display Size 'S' or 'B' or 'O' cursor small, big, or none (invisible) } Uses Dos; Procedure CursorSize(SType, Size : Char); Var Regs : Registers; i : Integer...
15.489362
72
0.528846
6ad0ce7be357b23dc13ef17e6af325db87cc1062
6,870
pas
Pascal
src/libraries/hashlib4pascal/HlpHashResult.pas
lunatictac/PascalCash
2d52d0e4a98da51185b561df03ba225128e79f51
[ "MIT" ]
null
null
null
src/libraries/hashlib4pascal/HlpHashResult.pas
lunatictac/PascalCash
2d52d0e4a98da51185b561df03ba225128e79f51
[ "MIT" ]
null
null
null
src/libraries/hashlib4pascal/HlpHashResult.pas
lunatictac/PascalCash
2d52d0e4a98da51185b561df03ba225128e79f51
[ "MIT" ]
1
2022-01-16T12:31:15.000Z
2022-01-16T12:31:15.000Z
unit HlpHashResult; {$I HashLib.inc} interface uses {$IFDEF HAS_UNITSCOPE} System.SysUtils, {$IFDEF DELPHIXE7_UP} System.NetEncoding, {$ELSE} System.Classes, Soap.EncdDecd, {$ENDIF DELPHIXE7_UP} {$ELSE} SysUtils, {$IFDEF DELPHI} Classes, EncdDecd, {$ENDIF DELPHI} {$IFDEF FPC} base64, {$ENDIF FPC} {$...
24.448399
79
0.718341
616e12f970550f3ebb4048cdb2a91584b6eb0248
3,650
dfm
Pascal
Win10Session/VCL_CommonDialogStyling/CommonDialog.dfm
xchinjo/DelphiSessions
0679d97a78ff232c6bbec1217c4f8c2104d58210
[ "MIT" ]
44
2017-05-30T20:54:06.000Z
2022-02-25T16:44:23.000Z
Win10Session/VCL_CommonDialogStyling/CommonDialog.dfm
jpluimers/DelphiSessions
0679d97a78ff232c6bbec1217c4f8c2104d58210
[ "MIT" ]
null
null
null
Win10Session/VCL_CommonDialogStyling/CommonDialog.dfm
jpluimers/DelphiSessions
0679d97a78ff232c6bbec1217c4f8c2104d58210
[ "MIT" ]
19
2017-07-25T10:03:13.000Z
2021-10-17T11:40:38.000Z
object Form1: TForm1 Left = 0 Top = 0 Caption = 'VCL Styling for Common Dialog' ClientHeight = 269 ClientWidth = 656 Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color = clWindowText Font.Height = -11 Font.Name = 'Tahoma' Font.Style = [] OldCreateOrder = False Position = ...
20.165746
50
0.596712
44b1c965595688e1aabb349cd2d2094980a250c0
18,196
pas
Pascal
Indy/CWStackBSDBase.pas
corp2world/c2w-delphi-client
cbebdf9560340a9d27eac2ad01d129ee1626940e
[ "Apache-2.0" ]
null
null
null
Indy/CWStackBSDBase.pas
corp2world/c2w-delphi-client
cbebdf9560340a9d27eac2ad01d129ee1626940e
[ "Apache-2.0" ]
null
null
null
Indy/CWStackBSDBase.pas
corp2world/c2w-delphi-client
cbebdf9560340a9d27eac2ad01d129ee1626940e
[ "Apache-2.0" ]
null
null
null
{ $Project$ $Workfile$ $Revision$ $DateUTC$ $Id$ This file is part of the Indy (Internet Direct) project, and is offered under the dual-licensing agreement described on the Indy website. (http://www.indyproject.org/) Copyright: (c) 1993-2005, Chad Z. Hower and the Indy Pit Crew. All rights reserv...
32.904159
184
0.719224
61546053b4324ea4e4ddff79b64ea45a9d99f79a
19,985
pas
Pascal
sound/0093.pas
nickelsworth/swag
7c21c0da2291fc249b9dc5cfe121a7672a4ffc08
[ "BSD-2-Clause" ]
11
2015-12-12T05:13:15.000Z
2020-10-14T13:32:08.000Z
sound/0093.pas
nickelsworth/swag
7c21c0da2291fc249b9dc5cfe121a7672a4ffc08
[ "BSD-2-Clause" ]
null
null
null
sound/0093.pas
nickelsworth/swag
7c21c0da2291fc249b9dc5cfe121a7672a4ffc08
[ "BSD-2-Clause" ]
8
2017-05-05T05:24:01.000Z
2021-07-03T20:30:09.000Z
UNIT CDAUDIO; { by Eric Miller, Jan. 15, 1996 } { public domain } INTERFACE Uses Objects; CONST cdPlaying = 1; { drive is playing audio } cdDisc = 2; { disc is in drive } cdDoor = 4; { drive door is closed } TYPE TRedBook = RECORD Frame, S...
31.522082
120
0.374781
6ad840066563dc42903d5e9a668deeeed164123a
30,288
pas
Pascal
lib/delphi/src/Thrift.WinHTTP.pas
antbofh/thrift
57ca6adf77293ef1acb06016e4d7c6badbc232eb
[ "Apache-2.0" ]
null
null
null
lib/delphi/src/Thrift.WinHTTP.pas
antbofh/thrift
57ca6adf77293ef1acb06016e4d7c6badbc232eb
[ "Apache-2.0" ]
7
2020-07-20T07:13:43.000Z
2021-05-11T10:20:39.000Z
lib/delphi/src/Thrift.WinHTTP.pas
antbofh/thrift
57ca6adf77293ef1acb06016e4d7c6badbc232eb
[ "Apache-2.0" ]
null
null
null
(* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ma...
37.438813
140
0.685453
6ae1b4df1d744ebdef7354dca02d076acb5ed72b
12,743
pas
Pascal
windows/src/buildtools/stockeditor/COMMessageEditor.pas
ermshiperete/keyman
0eeef1b5794fd698447584e531e2a6c1ef4c05aa
[ "MIT" ]
1
2021-03-08T09:31:47.000Z
2021-03-08T09:31:47.000Z
windows/src/buildtools/stockeditor/COMMessageEditor.pas
ermshiperete/keyman
0eeef1b5794fd698447584e531e2a6c1ef4c05aa
[ "MIT" ]
null
null
null
windows/src/buildtools/stockeditor/COMMessageEditor.pas
ermshiperete/keyman
0eeef1b5794fd698447584e531e2a6c1ef4c05aa
[ "MIT" ]
null
null
null
(* Name: COMMessageEditor Copyright: Copyright (C) SIL International. Documentation: Description: Create Date: 20 Jun 2006 Modified Date: 26 Jun 2012 Authors: mcdurdin Related Files: Dependencies: Bugs: Todo: Note...
29.227064
245
0.613199
85100f5b8d49c09dd2ff72984da943efe3542aef
2,545
pas
Pascal
src/astar3d_test.pas
laggyluk/brick_engine
1fc63d8186b4eb12cbfdb3a8b48a901089d3994c
[ "MIT" ]
1
2019-05-24T19:20:12.000Z
2019-05-24T19:20:12.000Z
src/astar3d_test.pas
laggyluk/brick_engine
1fc63d8186b4eb12cbfdb3a8b48a901089d3994c
[ "MIT" ]
null
null
null
src/astar3d_test.pas
laggyluk/brick_engine
1fc63d8186b4eb12cbfdb3a8b48a901089d3994c
[ "MIT" ]
null
null
null
unit astar3d_test; //http://roy-t.nl/index.php/2011/09/24/another-faster-version-of-a-2d3d-in-c/ {$mode objfpc}{$H+} interface uses windows,Classes, SysUtils,astar3d_breadCrumb,astar3d_pathFinder,astar3d_world,astar3d_point3d; type TArrayOfString = array of string; { leProgram } leProgram = class proc...
22.927928
96
0.639293
cd61ed236713dbb9b537b92f926d3def24083d8f
20,105
dfm
Pascal
ish/{app}/editor/Unit6.dfm
TrueBashkir1/sigma-master
cbeaf372874f156413ddf7d060db0f285ae1c68c
[ "MIT" ]
7
2019-04-06T13:21:19.000Z
2019-12-07T21:02:04.000Z
ish/{app}/editor/Unit6.dfm
TrueBashkir1/sigma-master
cbeaf372874f156413ddf7d060db0f285ae1c68c
[ "MIT" ]
3
2020-04-12T08:27:31.000Z
2020-05-23T14:18:00.000Z
ish/{app}/editor/Unit6.dfm
TrueBashkir1/sigma-master
cbeaf372874f156413ddf7d060db0f285ae1c68c
[ "MIT" ]
5
2019-04-06T13:21:21.000Z
2022-03-03T10:47:28.000Z
object GrafikGL: TGrafikGL Left = 163 Top = 140 Width = 787 Height = 578 Caption = #1043#1088#1072#1092#1080#1082' '#1089#1093#1086#1076#1080#1084#1086#1089#1090#1080' 1-'#1086#1075#1086' '#1075#1083#1072#1074#1085#1086#1075#1086' '#1085#1072#1087#1088#1103#1078#1077#1085#1080#1103 Color = clBtnFace Font....
24.975155
211
0.594131
618ca0304397fbb39b89bba7309ab561df3ad525
1,606
pas
Pascal
Components/JVCL/examples/RaLib/RaInterpreterEndUser/Reports/qr_employeelist.pas
sabatex/Delphi
0efbe6eb38bf8aa2bf269d1866741266e90b9cbf
[ "MIT" ]
null
null
null
Components/JVCL/examples/RaLib/RaInterpreterEndUser/Reports/qr_employeelist.pas
sabatex/Delphi
0efbe6eb38bf8aa2bf269d1866741266e90b9cbf
[ "MIT" ]
null
null
null
Components/JVCL/examples/RaLib/RaInterpreterEndUser/Reports/qr_employeelist.pas
sabatex/Delphi
0efbe6eb38bf8aa2bf269d1866741266e90b9cbf
[ "MIT" ]
1
2019-12-24T08:39:18.000Z
2019-12-24T08:39:18.000Z
{****************************************************************** JEDI-VCL Demo Copyright (C) 2002 Project JEDI Original author: Contributor(s): You may retrieve the latest version of this file at the JEDI-JVCL home page, located at http://jvcl.sourceforge.net The contents of this f...
23.617647
67
0.650062
851bd09ff5edd30ccff7d200c84401f93e936fce
1,716
pas
Pascal
SimpleConvert/SimpleConverter.pas
ProHolz/ElementsDelphiTools
dca0c4d6171428ea2671ace6d3bc5f68e6f147af
[ "MIT" ]
5
2019-02-21T14:07:28.000Z
2021-04-21T18:59:59.000Z
SimpleConvert/SimpleConverter.pas
ProHolz/ElementsDelphiTools
dca0c4d6171428ea2671ace6d3bc5f68e6f147af
[ "MIT" ]
1
2019-03-04T12:27:59.000Z
2019-03-04T12:27:59.000Z
SimpleConvert/SimpleConverter.pas
ProHolz/ElementsDelphiTools
dca0c4d6171428ea2671ace6d3bc5f68e6f147af
[ "MIT" ]
4
2019-09-07T12:48:54.000Z
2021-04-23T13:34:34.000Z
namespace ProHolz.CodeGen; interface uses RemObjects.Elements.RTL; type ElementsConverter = static class private method BuildElementsFile(const Source: String; const Dest: String): Boolean; public method BuildSameName(const Source : String) : Boolean; method BuildNewName(const Source : String) : B...
26
99
0.702214
61c0ae7961c42555600252170cd52dfbb7a4fc06
56,118
pas
Pascal
hedgewars/uRender.pas
EchoLiao/hedgewars
2a4338756d8a79e8247395506ddb867263fdfeb1
[ "Apache-2.0" ]
null
null
null
hedgewars/uRender.pas
EchoLiao/hedgewars
2a4338756d8a79e8247395506ddb867263fdfeb1
[ "Apache-2.0" ]
null
null
null
hedgewars/uRender.pas
EchoLiao/hedgewars
2a4338756d8a79e8247395506ddb867263fdfeb1
[ "Apache-2.0" ]
null
null
null
(* * Hedgewars, a free turn based strategy game * Copyright (c) 2004-2014 Andrey Korotaev <unC0Rr@gmail.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License * ...
28.414177
132
0.633166
61cf6bcd2fb860a379755f8316a40bdbf7920cee
1,351
pas
Pascal
SICovid.Dados.pas
CarlosSpencer/SysCovid
b595e18634810f59fe0fe3af3fd6bb4971d09848
[ "MIT" ]
null
null
null
SICovid.Dados.pas
CarlosSpencer/SysCovid
b595e18634810f59fe0fe3af3fd6bb4971d09848
[ "MIT" ]
null
null
null
SICovid.Dados.pas
CarlosSpencer/SysCovid
b595e18634810f59fe0fe3af3fd6bb4971d09848
[ "MIT" ]
null
null
null
unit SICovid.Dados; interface uses System.SysUtils, System.Classes, FireDAC.Stan.Intf, FireDAC.Stan.Option, FireDAC.Stan.Error, FireDAC.UI.Intf, FireDAC.Phys.Intf, FireDAC.Stan.Def, FireDAC.Stan.Pool, FireDAC.Stan.Async, FireDAC.Phys, FireDAC.Phys.SQLite, FireDAC.Phys.SQLiteDef, FireDAC.Stan.ExprFuncs, FireDA...
25.980769
78
0.751295
6130876a4c0ee4a7c11bbecec215a7a9024e4e25
104,061
pas
Pascal
references/zeoslib/src/dbc/ZDbcInterbase6Metadata.pas
zekiguven/alcinoe
e55c5368ee8bfe7cd6d92424c29ab07d8a3e844c
[ "Apache-2.0" ]
851
2018-02-05T09:54:56.000Z
2022-03-24T23:13:10.000Z
references/zeoslib/src/dbc/ZDbcInterbase6Metadata.pas
zekiguven/alcinoe
e55c5368ee8bfe7cd6d92424c29ab07d8a3e844c
[ "Apache-2.0" ]
200
2018-02-06T18:52:39.000Z
2022-03-24T19:59:14.000Z
references/zeoslib/src/dbc/ZDbcInterbase6Metadata.pas
zekiguven/alcinoe
e55c5368ee8bfe7cd6d92424c29ab07d8a3e844c
[ "Apache-2.0" ]
197
2018-03-20T20:49:55.000Z
2022-03-21T17:38:14.000Z
{*********************************************************} { } { Zeos Database Objects } { Interbase Database Connectivity Classes } { } { Origin...
38.201542
144
0.672865
6a8bd599b930cbea1226394be3467d4887f26683
209
dfm
Pascal
UpdateServer/JDGitHubBackupUpdateServer.dfm
djjd47130/GitHubBackup
69be9b97a018dfd1ea56b6b626ac60c00557cbd5
[ "MIT" ]
5
2019-07-01T06:38:33.000Z
2021-06-04T07:39:10.000Z
UpdateServer/JDGitHubBackupUpdateServer.dfm
djjd47130/GitHubBackup
69be9b97a018dfd1ea56b6b626ac60c00557cbd5
[ "MIT" ]
65
2019-06-30T18:11:12.000Z
2019-08-25T02:01:07.000Z
UpdateServer/JDGitHubBackupUpdateServer.dfm
djjd47130/GitHubBackup
69be9b97a018dfd1ea56b6b626ac60c00557cbd5
[ "MIT" ]
2
2020-06-23T00:57:58.000Z
2020-09-01T19:44:56.000Z
object JDGitHubBackupUpdateSvr: TJDGitHubBackupUpdateSvr OldCreateOrder = False DisplayName = 'JD GitHub Backup Update Server Service' AfterInstall = ServiceAfterInstall Height = 320 Width = 215 end
26.125
56
0.799043
618424e2d2ed930b0768e0625a458a658f3c2c58
591
dfm
Pascal
formRasterUnit.dfm
Nixson/rip
6b5670413df30379a1911b1c11a1ea819dbb09d8
[ "Apache-2.0" ]
null
null
null
formRasterUnit.dfm
Nixson/rip
6b5670413df30379a1911b1c11a1ea819dbb09d8
[ "Apache-2.0" ]
null
null
null
formRasterUnit.dfm
Nixson/rip
6b5670413df30379a1911b1c11a1ea819dbb09d8
[ "Apache-2.0" ]
null
null
null
object formRaster: TformRaster Left = 637 Top = 238 Width = 559 Height = 427 Caption = 'formRaster' Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color = clWindowText Font.Height = -11 Font.Name = 'MS Sans Serif' Font.Style = [] FormStyle = fsMDIChild OldCreateOrder = False Position ...
20.37931
67
0.659898
cdd58892079674e8bfb6d4fefc6e7e4eeff02677
56,583
pas
Pascal
EvilWorks.Web.HTTP.pas
vedranvuk/EvilLibrary
05b97e8689d47c2f97b3de510836f202130e2266
[ "BSD-4-Clause" ]
null
null
null
EvilWorks.Web.HTTP.pas
vedranvuk/EvilLibrary
05b97e8689d47c2f97b3de510836f202130e2266
[ "BSD-4-Clause" ]
null
null
null
EvilWorks.Web.HTTP.pas
vedranvuk/EvilLibrary
05b97e8689d47c2f97b3de510836f202130e2266
[ "BSD-4-Clause" ]
null
null
null
// // EvilLibrary by Vedran Vuk 2010-2012 // // Name: EvilWorks.Web.HTTP // Description: HTTP Client. // File last change date: October 21st. 2012 // File version: Dev 0.0.0 // Licence: Free. // { TODO: Implement request octet-stream type sending. } { TODO: Implement gzip/deflate for posti...
27.92843
170
0.701076
cd7a0750cec840168f25aa35e8f11cf67c937f7f
2,671
dfm
Pascal
RasterUnit.dfm
Nixson/rip
6b5670413df30379a1911b1c11a1ea819dbb09d8
[ "Apache-2.0" ]
null
null
null
RasterUnit.dfm
Nixson/rip
6b5670413df30379a1911b1c11a1ea819dbb09d8
[ "Apache-2.0" ]
null
null
null
RasterUnit.dfm
Nixson/rip
6b5670413df30379a1911b1c11a1ea819dbb09d8
[ "Apache-2.0" ]
null
null
null
object formRaster: TformRaster Left = 513 Top = 172 Width = 559 Height = 427 Caption = #1056#1072#1089#1090#1088#1086#1074#1099#1081' '#1080#1085#1076#1080#1082#1072#1090#1086#1088 Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color = clWindowText Font.Height = -11 Font.Name = 'MS Sans Serif...
23.637168
202
0.588918
6a98f91053a4356a7f51c4141b36833dceefcf16
795
dfm
Pascal
Servidor/USMPaiCadastro.dfm
gabrielthinassi/PROVA
f2220e771654208e68fee9db0535caa30dda8eda
[ "MIT" ]
null
null
null
Servidor/USMPaiCadastro.dfm
gabrielthinassi/PROVA
f2220e771654208e68fee9db0535caa30dda8eda
[ "MIT" ]
null
null
null
Servidor/USMPaiCadastro.dfm
gabrielthinassi/PROVA
f2220e771654208e68fee9db0535caa30dda8eda
[ "MIT" ]
null
null
null
object SMPaiCadastro: TSMPaiCadastro OldCreateOrder = False Height = 293 Width = 456 object SQLDSCadastro: TSQLDataSet MaxBlobSize = -1 Params = <> SQLConnection = SMConexao.SQLConexaoBanco Left = 48 Top = 40 end object DSPCadastro: TDataSetProvider DataSet = SQLDSCadastro Option...
23.382353
66
0.699371
6afd7105083b021eb1fd4d5529a83de1a94a9ea7
12,225
pas
Pascal
components/DelphiAST/DelphiAST.SimpleParserEx.pas
bogdanpolak/delphi-ast-writer
a13559bdd79faed64dfc34e29eb7f5ffe1bf1676
[ "MIT" ]
1
2020-11-14T19:02:10.000Z
2020-11-14T19:02:10.000Z
components/DelphiAST/DelphiAST.SimpleParserEx.pas
bogdanpolak/delphi-static-code-analyser
a13559bdd79faed64dfc34e29eb7f5ffe1bf1676
[ "MIT" ]
null
null
null
components/DelphiAST/DelphiAST.SimpleParserEx.pas
bogdanpolak/delphi-static-code-analyser
a13559bdd79faed64dfc34e29eb7f5ffe1bf1676
[ "MIT" ]
2
2020-12-02T10:10:43.000Z
2020-12-07T13:15:27.000Z
unit DelphiAST.SimpleParserEx; interface uses SysUtils, Generics.Collections, SimpleParser, SimpleParser.Lexer.Types, SimpleParser.Lexer, Classes; type TStringEvent = procedure(var s: string) of object; TPasLexer = class private FLexer: TmwPasLex; FOnHandleString: TStringEvent; ...
28.900709
86
0.732434
6ae3ebf3caff77b17edbfd161984a9ad0e00b932
5
pas
Pascal
Python/tempCodeRunnerFile.pas
jinzhengyu1212/Clovers
0efbb0d87b5c035e548103409c67914a1f776752
[ "MIT" ]
null
null
null
Python/tempCodeRunnerFile.pas
jinzhengyu1212/Clovers
0efbb0d87b5c035e548103409c67914a1f776752
[ "MIT" ]
null
null
null
Python/tempCodeRunnerFile.pas
jinzhengyu1212/Clovers
0efbb0d87b5c035e548103409c67914a1f776752
[ "MIT" ]
null
null
null
end.
2.5
4
0.6
6a24d896a187a321e06fc76735ebe7697ad502a8
994
pas
Pascal
tests/CoordTransformTests.pas
pjcunningham/coordinateconversion
8bffcbce038c76b05694b8f5faefb93f55bc9983
[ "Apache-2.0" ]
1
2018-12-28T03:55:03.000Z
2018-12-28T03:55:03.000Z
tests/CoordTransformTests.pas
pjcunningham/coordinateconversion
8bffcbce038c76b05694b8f5faefb93f55bc9983
[ "Apache-2.0" ]
null
null
null
tests/CoordTransformTests.pas
pjcunningham/coordinateconversion
8bffcbce038c76b05694b8f5faefb93f55bc9983
[ "Apache-2.0" ]
3
2018-12-26T19:32:41.000Z
2020-02-22T12:44:55.000Z
unit CoordTransformTests; interface uses TestFramework; type // Test methods for unit Geo.pas TCoordTransformUnitTest = class(TTestCase) private public published procedure Test00; procedure Test01; end; implementation uses Math, CoordTransform, LatLon; procedure TCoordTransformUnitTest.Tes...
21.608696
117
0.744467
610bb3f25409a00f97f9c79b2f4dd9852d3d1ccb
11,433
pas
Pascal
Source/Client/WiRL.http.Client.Indy.pas
MARS-library/mars
2fc30f0ef0154fb9ba30c650dc85d3f9b94ec0dc
[ "Apache-2.0" ]
147
2016-11-28T15:22:48.000Z
2022-03-25T05:36:48.000Z
Source/Client/WiRL.http.Client.Indy.pas
MARS-library/mars
2fc30f0ef0154fb9ba30c650dc85d3f9b94ec0dc
[ "Apache-2.0" ]
14
2017-10-18T23:28:07.000Z
2021-08-03T15:14:35.000Z
Source/Client/WiRL.http.Client.Indy.pas
MARS-library/mars
2fc30f0ef0154fb9ba30c650dc85d3f9b94ec0dc
[ "Apache-2.0" ]
57
2016-11-28T08:17:43.000Z
2022-03-28T10:24:57.000Z
{******************************************************************************} { } { WiRL: RESTful Library for Delphi } { ...
31.067935
134
0.741888
852f2b2ce4cb01ea518460550649940efabbea50
14,217
pas
Pascal
windows/src/developer/TIKE/project/Keyman.Developer.UI.Project.UfrmNewProjectParameters.pas
ermshiperete/keyman
0eeef1b5794fd698447584e531e2a6c1ef4c05aa
[ "MIT" ]
1
2021-03-08T09:31:47.000Z
2021-03-08T09:31:47.000Z
windows/src/developer/TIKE/project/Keyman.Developer.UI.Project.UfrmNewProjectParameters.pas
ermshiperete/keyman
0eeef1b5794fd698447584e531e2a6c1ef4c05aa
[ "MIT" ]
null
null
null
windows/src/developer/TIKE/project/Keyman.Developer.UI.Project.UfrmNewProjectParameters.pas
ermshiperete/keyman
0eeef1b5794fd698447584e531e2a6c1ef4c05aa
[ "MIT" ]
null
null
null
unit Keyman.Developer.UI.Project.UfrmNewProjectParameters; interface uses System.Classes, System.SysUtils, System.UITypes, System.Variants, Winapi.Messages, Winapi.Windows, Vcl.CheckLst, Vcl.Controls, Vcl.Dialogs, Vcl.Forms, Vcl.Graphics, Vcl.Grids, Vcl.StdCtrls, kpsfile, PackageInfo, ...
25.662455
136
0.743687
6ad75d2fc409cc1802b86d5ae79339b5a59f0d56
48,828
pas
Pascal
example/ufrmMain.pas
mikerabat/DelphiFido2
a41c289477d2f5e3dc1227e295d39b12aeedbbc0
[ "Apache-2.0" ]
9
2019-12-03T23:37:07.000Z
2022-01-18T12:10:28.000Z
example/ufrmMain.pas
mikerabat/DelphiFido2
a41c289477d2f5e3dc1227e295d39b12aeedbbc0
[ "Apache-2.0" ]
1
2019-12-03T23:43:02.000Z
2019-12-03T23:50:19.000Z
example/ufrmMain.pas
mikerabat/DelphiFido2
a41c289477d2f5e3dc1227e295d39b12aeedbbc0
[ "Apache-2.0" ]
3
2020-01-02T03:41:52.000Z
2020-11-23T03:28:39.000Z
// ################################################################### // #### This file is part of the mathematics library project, and is // #### offered under the licence agreement described on // #### http://www.mrsoft.org/ // #### // #### Copyright:(c) 2019, Michael R. . All rights reserved. // #### // ####...
34.877143
148
0.520029
618dfa511551176cb9521673e1f796cf0b111803
729
pas
Pascal
Course1/Contest4/doubles.pas
Morgan-iv/Main-source-folder
fa1ff9a2ba1654058e4a9bc81150fbe777cabfcd
[ "Unlicense" ]
1
2017-10-31T00:58:14.000Z
2017-10-31T00:58:14.000Z
Course1/Contest4/doubles.pas
Morgan-iv/Main-source-folder
fa1ff9a2ba1654058e4a9bc81150fbe777cabfcd
[ "Unlicense" ]
null
null
null
Course1/Contest4/doubles.pas
Morgan-iv/Main-source-folder
fa1ff9a2ba1654058e4a9bc81150fbe777cabfcd
[ "Unlicense" ]
null
null
null
program double; type list = ^node; node = record elem: integer; next: list; end; function doubles(l: list): boolean; var q: list; begin doubles:=false; if l=nil then exit; while l^.next<>nil do begin q:=l^.next; while q<>nil do begin ...
17.780488
69
0.510288
611a15e06f634daba655302ea01060a24fee283b
1,851
pas
Pascal
win-os2/0037.pas
nickelsworth/swag
7c21c0da2291fc249b9dc5cfe121a7672a4ffc08
[ "BSD-2-Clause" ]
11
2015-12-12T05:13:15.000Z
2020-10-14T13:32:08.000Z
win-os2/0037.pas
nickelsworth/swag
7c21c0da2291fc249b9dc5cfe121a7672a4ffc08
[ "BSD-2-Clause" ]
null
null
null
win-os2/0037.pas
nickelsworth/swag
7c21c0da2291fc249b9dc5cfe121a7672a4ffc08
[ "BSD-2-Clause" ]
8
2017-05-05T05:24:01.000Z
2021-07-03T20:30:09.000Z
{ From: ZWEITZE@et.tudelft.nl (Zweitze de Vries) >Does anyone have examples of installation programs that use >the file installation library (VER.DLL) in BP7? Since all installation programs do the same thing, why reinvent the wheel? Just buy one, it should be cheaper than developing your own. There are also ...
37.77551
78
0.711507
6a70a66bc8acc56c5539937269551d28f5642f6e
49,422
pas
Pascal
dependencies/Indy10/OpenSSL/dynamic/IdOpenSSLHeaders_ts.pas
danka74/fhirserver
1fc53b6fba67a54be6bee39159d3db28d42eb8e2
[ "BSD-3-Clause" ]
132
2015-02-02T00:22:40.000Z
2021-08-11T12:08:08.000Z
dependencies/Indy10/OpenSSL/dynamic/IdOpenSSLHeaders_ts.pas
danka74/fhirserver
1fc53b6fba67a54be6bee39159d3db28d42eb8e2
[ "BSD-3-Clause" ]
113
2015-03-20T01:55:20.000Z
2021-10-08T16:15:28.000Z
dependencies/Indy10/OpenSSL/dynamic/IdOpenSSLHeaders_ts.pas
danka74/fhirserver
1fc53b6fba67a54be6bee39159d3db28d42eb8e2
[ "BSD-3-Clause" ]
49
2015-04-11T14:59:43.000Z
2021-03-30T10:29:18.000Z
{******************************************************************************} { } { Indy (Internet Direct) - Internet Protocols Simplified } { ...
51.48125
155
0.735664
6a6a1b5636013c00d3aeb89f0c3a7aad81de3744
4,673
lpr
Pascal
tutorial1/tutorial1.lpr
AntonAngeloff/DX11_Examples
ac0dec9a59ea276a7286a3a3dcf4a1b836025711
[ "MIT" ]
5
2016-08-03T05:39:27.000Z
2020-06-06T22:06:12.000Z
tutorial1/tutorial1.lpr
AntonAngeloff/DX11_Examples
ac0dec9a59ea276a7286a3a3dcf4a1b836025711
[ "MIT" ]
null
null
null
tutorial1/tutorial1.lpr
AntonAngeloff/DX11_Examples
ac0dec9a59ea276a7286a3a3dcf4a1b836025711
[ "MIT" ]
2
2017-04-25T13:06:06.000Z
2020-09-16T00:57:44.000Z
program tutorial1; { DirectX 11 - Tutorial #1 - The motivation of this tutorial is do demonstrate some very basic workflow of Direct3D 11, and how to start a very basic framework, since there are not much resources on the subject for FreePascal/Delphi and it can be rather hard to get star...
23.482412
102
0.686283
854bdbb03baaf7d5720f2886d62ed12b89292d54
12,747
pas
Pascal
Examples/HTTP/AsyncHttpServer.RequestParser.pas
lordcrc/AsyncIO
7ea7f930fa7491f046abe032f628570efde32381
[ "Apache-2.0" ]
33
2015-05-25T01:26:03.000Z
2021-11-16T11:24:59.000Z
Examples/HTTP/AsyncHttpServer.RequestParser.pas
lordcrc/AsyncIO
7ea7f930fa7491f046abe032f628570efde32381
[ "Apache-2.0" ]
3
2016-07-19T09:49:00.000Z
2017-10-14T09:43:43.000Z
Examples/HTTP/AsyncHttpServer.RequestParser.pas
lordcrc/AsyncIO
7ea7f930fa7491f046abe032f628570efde32381
[ "Apache-2.0" ]
7
2015-04-27T14:44:32.000Z
2021-09-30T01:42:12.000Z
unit AsyncHttpServer.RequestParser; interface uses System.SysUtils, AsyncIO, AsyncHttpServer.Request; type HttpRequestState = ( HttpRequestStateNeedMoreData, HttpRequestStateValid, HttpRequestStateInvalid ); HttpRequestParser = interface ['{02575C91-D940-4399-B2AD-BE943B6A3DAB}'] functi...
22.521201
97
0.638111
6109500d31e342bd7b818160e3c36ea3bfbd15ee
2,365
dpr
Pascal
Demos/Other Demos/JavaScriptUsingBesen/FrameDemJavaScriptUsingBesen.dpr
PopRe/HtmlViewer
e7e96247fb1b63f59ddfcd2888793b354275b319
[ "MIT" ]
320
2015-01-12T08:42:13.000Z
2022-03-26T14:49:32.000Z
Demos/Other Demos/JavaScriptUsingBesen/FrameDemJavaScriptUsingBesen.dpr
PopRe/HtmlViewer
e7e96247fb1b63f59ddfcd2888793b354275b319
[ "MIT" ]
217
2015-01-05T10:40:53.000Z
2022-03-17T13:49:52.000Z
Demos/Other Demos/JavaScriptUsingBesen/FrameDemJavaScriptUsingBesen.dpr
PopRe/HtmlViewer
e7e96247fb1b63f59ddfcd2888793b354275b319
[ "MIT" ]
133
2015-02-10T12:51:08.000Z
2022-03-17T13:51:32.000Z
{ Version 11.7 Copyright (c) 1995-2008 by L. David Baldwin Copyright (c) 2008-2010 by HtmlViewer Team Copyright (c) 2011-2016 by Bernd Gabriel ********************************************************* * * * Thanks to Mike Lischke for his * ...
37.539683
80
0.678224
aa3b2224489c69fca924299422cc99eece005915
7,726
pas
Pascal
archcab.pas
corvus1/dn2l
2ce2b3a6b001008c3ff75d5fbf046444f92aa6f3
[ "AFL-2.0", "AFL-3.0" ]
63
2020-10-23T00:54:34.000Z
2022-01-02T11:02:27.000Z
archcab.pas
corvus1/dn2l
2ce2b3a6b001008c3ff75d5fbf046444f92aa6f3
[ "AFL-2.0", "AFL-3.0" ]
8
2020-10-22T16:02:21.000Z
2020-11-19T06:19:10.000Z
archcab.pas
corvus1/dn2l
2ce2b3a6b001008c3ff75d5fbf046444f92aa6f3
[ "AFL-2.0", "AFL-3.0" ]
8
2020-10-28T05:46:04.000Z
2022-01-02T11:02:31.000Z
{///////////////////////////////////////////////////////////////////////// // // Dos Navigator Open Source 1.51.08 // Based on Dos Navigator (C) 1991-99 RIT Research Labs // // This programs is free for commercial and non-commercial use as long as // the following conditions are aheared to. // // Copyright...
35.118182
80
0.622055
61bb3fdf44996ad963501c3bd9265d44699c6bd0
33,173
pas
Pascal
Sources/Next Addons/NxVirtualDataSet.pas
KashaketCompany/soulengine
767d18b53fa882b1a9d797761e5165cfb58c47ad
[ "FTL" ]
6
2019-03-03T17:30:22.000Z
2019-07-18T11:56:57.000Z
Sources/Next Addons/NxVirtualDataSet.pas
gzwplato/soulengine
767d18b53fa882b1a9d797761e5165cfb58c47ad
[ "FTL" ]
16
2019-02-02T19:54:54.000Z
2019-02-28T05:22:36.000Z
Sources/Next Addons/NxVirtualDataSet.pas
suwermave/soulengine
767d18b53fa882b1a9d797761e5165cfb58c47ad
[ "FTL" ]
1
2021-09-11T05:41:08.000Z
2021-09-11T05:41:08.000Z
{-----------------------------------------------------------} {----Purpose : Pure Virtual Dataset. } { By : Ir. G.W. van der Vegt } { For : Myself } {-----------------------------------------------------------} { ddmmyyyy...
32.300876
109
0.657221
6a16192fc3b3d1f63487333abeabaf44f0bc8ac9
8,994
dfm
Pascal
windows/src/ext/jedi/jvcl/tests/restructured/examples/JVCLMegaDemo/JvControlsU.dfm
bravogeorge/keyman
c0797e36292de903d7313214d1f765e3d9a2bf4d
[ "MIT" ]
219
2017-06-21T03:37:03.000Z
2022-03-27T12:09:28.000Z
windows/src/ext/jedi/jvcl/tests/restructured/examples/JVCLMegaDemo/JvControlsU.dfm
bravogeorge/keyman
c0797e36292de903d7313214d1f765e3d9a2bf4d
[ "MIT" ]
4,451
2017-05-29T02:52:06.000Z
2022-03-31T23:53:23.000Z
windows/src/ext/jedi/jvcl/tests/restructured/examples/JVCLMegaDemo/JvControlsU.dfm
bravogeorge/keyman
c0797e36292de903d7313214d1f765e3d9a2bf4d
[ "MIT" ]
72
2017-05-26T04:08:37.000Z
2022-03-03T10:26:20.000Z
object JvControls: TJvControls Left = 0 Top = 0 Width = 660 Height = 461 HelpContext = 8 TabOrder = 0 object JvWaitingGradient1: TJvWaitingGradient Left = 0 Top = 437 Width = 660 Height = 24 Hint = 'noting to say ' GradientWidth = 70 EndColor = clNavy Align = alBottom end...
35.270588
79
0.764732
61b279da1a2870ec1ab32d0f5a4d2b0ef9a3b391
2,694
dfm
Pascal
PrgDistributor 2.0/old/fFirmsEdit.dfm
sabatex/Delphi
0efbe6eb38bf8aa2bf269d1866741266e90b9cbf
[ "MIT" ]
null
null
null
PrgDistributor 2.0/old/fFirmsEdit.dfm
sabatex/Delphi
0efbe6eb38bf8aa2bf269d1866741266e90b9cbf
[ "MIT" ]
null
null
null
PrgDistributor 2.0/old/fFirmsEdit.dfm
sabatex/Delphi
0efbe6eb38bf8aa2bf269d1866741266e90b9cbf
[ "MIT" ]
1
2019-12-24T08:39:18.000Z
2019-12-24T08:39:18.000Z
object Form1: TForm1 Left = 330 Top = 263 Width = 506 Height = 196 Caption = 'Form1' Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color = clWindowText Font.Height = -11 Font.Name = 'MS Sans Serif' Font.Style = [] OldCreateOrder = False PixelsPerInch = 96 TextHeight = 13 object Lab...
19.808824
103
0.602079
613682aa8877344dbec7ae326f5e8154f3769052
5,300
pas
Pascal
Units/Utils/UAppParams.pas
Mohammad-Rabieh/wallet
d968d0b397fa05740bc1055f3794821d7954595e
[ "MIT" ]
20
2017-09-06T13:28:56.000Z
2021-11-16T11:25:36.000Z
Units/Utils/UAppParams.pas
Mohammad-Rabieh/wallet
d968d0b397fa05740bc1055f3794821d7954595e
[ "MIT" ]
6
2017-12-17T03:09:41.000Z
2018-02-20T18:06:42.000Z
Units/Utils/UAppParams.pas
Mohammad-Rabieh/wallet
d968d0b397fa05740bc1055f3794821d7954595e
[ "MIT" ]
6
2017-12-07T21:27:55.000Z
2021-12-17T21:29:38.000Z
unit UAppParams; {$IFDEF FPC} {$MODE Delphi} {$ENDIF} { Copyright (c) 2016 by Albert Molina Distributed under the MIT software license, see the accompanying file LICENSE or visit http://www.opensource.org/licenses/mit-license.php. This unit is a part of Pascal Coin, a P2P crypto currency without need of h...
26.767677
96
0.741509
44153af4452e048c1606238600da2d86e50e8fee
30,675
pas
Pascal
Projects/Genealogie/Source/WinAhnenCls/cls_HejHelper.pas
joecare99/Public
9eee060fbdd32bab33cf65044602976ac83f4b83
[ "MIT" ]
11
2017-06-17T05:13:45.000Z
2021-07-11T13:18:48.000Z
Projects/Genealogie/Source/WinAhnenCls/cls_HejHelper.pas
joecare99/Public
9eee060fbdd32bab33cf65044602976ac83f4b83
[ "MIT" ]
2
2019-03-05T12:52:40.000Z
2021-12-03T12:34:26.000Z
Projects/Genealogie/Source/WinAhnenCls/cls_HejHelper.pas
joecare99/Public
9eee060fbdd32bab33cf65044602976ac83f4b83
[ "MIT" ]
6
2017-09-07T09:10:09.000Z
2022-02-19T20:19:58.000Z
unit cls_HejHelper; {$mode objfpc}{$H+} interface uses Classes, SysUtils, cls_HejData,cls_HejIndData,unt_IGenBase2, cls_HejMarrData, cls_GenHelperBase; type { THejHelper } THejHelper = class; { TVirtFamily } TVirtFamily = Class(TObject,IGenFamily) private FHusband: integer; FMa...
30.221675
99
0.63674
6aefc24a51d1262188e2d646b5cbd05a3d2977ea
8,215
dfm
Pascal
windows/src/ext/jedi/jvcl/jvcl/design/JvCsvDataForm.dfm
bravogeorge/keyman
c0797e36292de903d7313214d1f765e3d9a2bf4d
[ "MIT" ]
219
2017-06-21T03:37:03.000Z
2022-03-27T12:09:28.000Z
windows/src/ext/jedi/jvcl/jvcl/design/JvCsvDataForm.dfm
bravogeorge/keyman
c0797e36292de903d7313214d1f765e3d9a2bf4d
[ "MIT" ]
4,451
2017-05-29T02:52:06.000Z
2022-03-31T23:53:23.000Z
windows/src/ext/jedi/jvcl/jvcl/design/JvCsvDataForm.dfm
bravogeorge/keyman
c0797e36292de903d7313214d1f765e3d9a2bf4d
[ "MIT" ]
72
2017-05-26T04:08:37.000Z
2022-03-03T10:26:20.000Z
object JvCsvDefStrDialog: TJvCsvDefStrDialog Left = 382 Top = 246 Caption = 'JvCsvDataSet.CSVFieldDef Editor' ClientHeight = 381 ClientWidth = 434 Color = clBtnFace Constraints.MinHeight = 331 Constraints.MinWidth = 442 Font.Charset = DEFAULT_CHARSET Font.Color = clWindowText Font.Height = -11 F...
31.475096
70
0.756056
8506c32fdf2641432b8fca73ad3ab6d9ac1df67b
4,662
pas
Pascal
examples/Delphi/Simple/ObjectSpace/Query/QueryDemoClasses.pas
LenakeTech/BoldForDelphi
3ef25517d5c92ebccc097c6bc2f2af62fc506c71
[ "MIT" ]
121
2020-09-22T10:46:20.000Z
2021-11-17T12:33:35.000Z
examples/Delphi/Simple/ObjectSpace/Query/QueryDemoClasses.pas
LenakeTech/BoldForDelphi
3ef25517d5c92ebccc097c6bc2f2af62fc506c71
[ "MIT" ]
8
2020-09-23T12:32:23.000Z
2021-07-28T07:01:26.000Z
examples/Delphi/Simple/ObjectSpace/Query/QueryDemoClasses.pas
LenakeTech/BoldForDelphi
3ef25517d5c92ebccc097c6bc2f2af62fc506c71
[ "MIT" ]
42
2020-09-22T14:37:20.000Z
2021-10-04T10:24:12.000Z
(*****************************************) (* This file is autogenerated *) (* Any manual changes will be LOST! *) (*****************************************) (* Generated 2002-04-05 16:08:59 *) (*****************************************) (* This file should be stored in the *) (* same dire...
26.488636
195
0.73595
6ae03902db22f63a5ec64a868c6b6c52d3d4892e
1,703
pas
Pascal
Chapter04/Marker interface/Customer.Interfaces.pas
PacktPublishing/Hands-On-Design-Patterns-with-Delphi
30f6ab51e61d583f822be4918f4b088e2255cd82
[ "MIT" ]
38
2019-02-28T06:22:52.000Z
2022-03-16T12:30:43.000Z
Chapter04/Marker interface/Customer.Interfaces.pas
alefragnani/Hands-On-Design-Patterns-with-Delphi
3d29e5b2ce9e99e809a6a9a178c3f5e549a8a03d
[ "MIT" ]
null
null
null
Chapter04/Marker interface/Customer.Interfaces.pas
alefragnani/Hands-On-Design-Patterns-with-Delphi
3d29e5b2ce9e99e809a6a9a178c3f5e549a8a03d
[ "MIT" ]
18
2019-03-29T08:36:14.000Z
2022-03-30T00:31:28.000Z
unit Customer.Interfaces; interface type ICustomer = interface ['{A736226E-B177-4E3A-9CCD-39AE71FB4E1B}'] function GetAddress: string; function GetEmail: string; function GetName: string; procedure SetAddress(const value: string); procedure SetEmail(const value: string); procedure SetName(co...
23.013514
75
0.742807
6ab41d31fc10c7dcd7d346538882f49ce17dcd37
3,684
pas
Pascal
Version7/Source/CMD/linenoise.pas
dss-extensions/electricdss-src
fab07b5584090556b003ef037feb25ec2de3b7c9
[ "BSD-3-Clause" ]
1
2022-01-23T14:43:30.000Z
2022-01-23T14:43:30.000Z
Version8/Source/CMD/linenoise.pas
PMeira/electricdss-src
fab07b5584090556b003ef037feb25ec2de3b7c9
[ "BSD-3-Clause" ]
7
2018-08-15T04:00:26.000Z
2018-10-25T10:15:59.000Z
Version8/Source/CMD/linenoise.pas
PMeira/electricdss-src
fab07b5584090556b003ef037feb25ec2de3b7c9
[ "BSD-3-Clause" ]
null
null
null
{ ---------------------------------------------------------- Copyright (c) 2017 Battelle Memorial Institute ---------------------------------------------------------- } unit linenoise; { /* linenoise.h -- guerrilla line editing library against the idea that a * line editing lib needs to be 20,000 lines o...
42.837209
92
0.747557
6ac76e3684a4efae2358d75503a1a91a3f2be5b9
6,507
pas
Pascal
Delphi.Mocks.Interfaces.pas
natvincent/Delphi-Mocks
9679898cb0491a3d8157fadef6c7a1b71cee33e3
[ "Apache-2.0" ]
null
null
null
Delphi.Mocks.Interfaces.pas
natvincent/Delphi-Mocks
9679898cb0491a3d8157fadef6c7a1b71cee33e3
[ "Apache-2.0" ]
null
null
null
Delphi.Mocks.Interfaces.pas
natvincent/Delphi-Mocks
9679898cb0491a3d8157fadef6c7a1b71cee33e3
[ "Apache-2.0" ]
null
null
null
{***************************************************************************} { } { Delphi.Mocks } { } { ...
50.44186
125
0.548794
6ab58bf690434ba1bec6e8dd3df91e89b2a0f0b8
10,898
dfm
Pascal
Source/VCL/AT.Vcl.DX.NativeFileSelector.Frame.dfm
AngelicTech/ATLibrary
b4b629234e3eeee684a6bb49ca4d88e29d9e78ba
[ "BSL-1.0" ]
1
2021-08-09T18:45:25.000Z
2021-08-09T18:45:25.000Z
Source/VCL/AT.Vcl.DX.NativeFileSelector.Frame.dfm
AngelicTech/ATLibrary
b4b629234e3eeee684a6bb49ca4d88e29d9e78ba
[ "BSL-1.0" ]
null
null
null
Source/VCL/AT.Vcl.DX.NativeFileSelector.Frame.dfm
AngelicTech/ATLibrary
b4b629234e3eeee684a6bb49ca4d88e29d9e78ba
[ "BSL-1.0" ]
2
2021-08-09T18:45:27.000Z
2021-08-10T05:57:32.000Z
object ATdxNativeFileSelectorFrame: TATdxNativeFileSelectorFrame Left = 0 Top = 0 Width = 713 Height = 606 TabOrder = 0 object layFileSelect: TdxLayoutControl Left = 0 Top = 0 Width = 713 Height = 606 Align = alClient MenuItems = [] TabOrder = 0 OptionsItem.AllowRename = Fals...
28.830688
67
0.663975
85328e2d0c3f5500126c37d274d837b7f85e8aa6
794
dpr
Pascal
Apps/UnitSearch/UnitSearch.dpr
GDKsoftware/OpenTestGrip
a06f7840aea852c9d84ea2178e792d93866bf797
[ "MIT" ]
5
2017-11-08T22:44:16.000Z
2019-08-16T10:02:39.000Z
Apps/UnitSearch/UnitSearch.dpr
GDKsoftware/OpenTestGrip
a06f7840aea852c9d84ea2178e792d93866bf797
[ "MIT" ]
18
2016-05-18T10:33:07.000Z
2019-04-10T13:50:33.000Z
Apps/UnitSearch/UnitSearch.dpr
GDKsoftware/OpenTestGrip
a06f7840aea852c9d84ea2178e792d93866bf797
[ "MIT" ]
2
2016-04-30T11:25:35.000Z
2018-03-02T06:58:37.000Z
program UnitSearch; uses Forms, FUnitSearchMain in 'FUnitSearchMain.pas' {FrmUnitSearchMain}, uCodeHelpers in '..\..\Core\uCodeHelpers.pas', uDefinitionSearch in '..\..\Core\uDefinitionSearch.pas', uPascalDefs in '..\..\Core\uPascalDefs.pas', uProjectParser in '..\..\Core\uProjectParser.pas', uUnitParser...
31.76
64
0.721662
6a0c411cd89e2424a0bd48ae0dc3a5e25b2ed78b
1,316
pas
Pascal
source/iphelper.pas
DKiyanov/SAPTaskBar
44f5894ecd95d4860e8f72928221fe1acd816612
[ "MIT" ]
null
null
null
source/iphelper.pas
DKiyanov/SAPTaskBar
44f5894ecd95d4860e8f72928221fe1acd816612
[ "MIT" ]
null
null
null
source/iphelper.pas
DKiyanov/SAPTaskBar
44f5894ecd95d4860e8f72928221fe1acd816612
[ "MIT" ]
null
null
null
unit IPHelper; interface uses Windows; const ERROR_SUCCESS = 0; ERROR_BUFFER_OVERFLOW = 111; MAX_ADAPTER_NAME_LENGTH = 256; MAX_ADAPTER_DESCRIPTION_LENGTH = 128; MAX_ADAPTER_ADDRESS_LENGTH = 8; type TIPAddressString = record _String: array [1..16] of Char; end; TIPMaskString = TIPAddressString; ...
23.087719
109
0.734043
8552d27a222a4a1a01f97398178031d0ef92d0a3
51,258
pas
Pascal
Win32.Woodworm/Winsock2.pas
010001111/Vx-Suites
6b4b90a60512cce48aa7b87aec5e5ac1c4bb9a79
[ "MIT" ]
2
2021-02-04T06:47:45.000Z
2021-07-28T10:02:10.000Z
Win32.Woodworm/Winsock2.pas
TheWover/Vx-Suites
6b4b90a60512cce48aa7b87aec5e5ac1c4bb9a79
[ "MIT" ]
null
null
null
Win32.Woodworm/Winsock2.pas
TheWover/Vx-Suites
6b4b90a60512cce48aa7b87aec5e5ac1c4bb9a79
[ "MIT" ]
null
null
null
{ Delphi Winsock2 Static Unit by Aphex http://www.iamaphex.cjb.net unremote@knology.net } unit Winsock2; {$D-,L-,O+,Q-,R-,Y-,S-} interface {$ALIGN OFF} {$RANGECHECKS OFF} {$WRITEABLECONST OFF} uses Windows; const WINSOCK_VERSION = $0202; WINSOCK2_DLL = 'WS2_32.DLL'; type u_char = Byte; u_short = Wor...
44.149871
191
0.712494
6a61ebe51361799a7f04d46bd077e32783c7b12d
43
pas
Pascal
PascalCompiler/Tests/Tokenizer/67.pas
GoldFeniks/PascalCompiler
4a7325c385c133dd360eaba06bebaedd30b4078d
[ "MIT" ]
2
2018-07-06T09:50:57.000Z
2019-10-06T12:57:57.000Z
PascalCompiler/Tests/Tokenizer/67.pas
GoldFeniks/PascalCompiler
4a7325c385c133dd360eaba06bebaedd30b4078d
[ "MIT" ]
null
null
null
PascalCompiler/Tests/Tokenizer/67.pas
GoldFeniks/PascalCompiler
4a7325c385c133dd360eaba06bebaedd30b4078d
[ "MIT" ]
null
null
null
1..20 10..20 10.05..10.05 1.05e-3..10.05e-3
10.75
17
0.604651
6aabd2250b1a826e6c46d54610b20bed4a8d0ace
110
pas
Pascal
Libraries/SynEdit/Source/QSynHighlighterFoxpro.pas
Patiencer/Concepts
e63910643b2401815dd4f6b19fbdf0cd7d443392
[ "Apache-2.0" ]
19
2018-10-22T23:45:31.000Z
2021-05-16T00:06:49.000Z
package/synedit-201b/SynEdit/Source/QSynHighlighterFoxpro.pas
RonaldoSurdi/Sistema-gerenciamento-websites-delphi
8cc7eec2d05312dc41f514bbd5f828f9be9c579e
[ "MIT" ]
16
2019-02-02T19:54:54.000Z
2019-02-28T05:22:36.000Z
package/synedit-201b/SynEdit/Source/QSynHighlighterFoxpro.pas
RonaldoSurdi/Sistema-gerenciamento-websites-delphi
8cc7eec2d05312dc41f514bbd5f828f9be9c579e
[ "MIT" ]
6
2018-08-30T05:16:21.000Z
2021-05-12T20:25:43.000Z
unit QSynHighlighterFoxpro; {$DEFINE SYN_CLX} {$DEFINE QSYNHIGHLIGHTERFOXPRO} {$I SynHighlighterFoxpro.pas}
15.714286
31
0.809091
61ac2c1981e9b5d0efd184e898f8a0b49c5e09f3
286
dpr
Pascal
Projects/Lazarus_Bible/2010/Checks.dpr
joecare99/Public
9eee060fbdd32bab33cf65044602976ac83f4b83
[ "MIT" ]
11
2017-06-17T05:13:45.000Z
2021-07-11T13:18:48.000Z
Projects/Lazarus_Bible/2010/Checks.dpr
joecare99/Public
9eee060fbdd32bab33cf65044602976ac83f4b83
[ "MIT" ]
2
2019-03-05T12:52:40.000Z
2021-12-03T12:34:26.000Z
Projects/Lazarus_Bible/2010/Checks.dpr
joecare99/Public
9eee060fbdd32bab33cf65044602976ac83f4b83
[ "MIT" ]
6
2017-09-07T09:10:09.000Z
2022-02-19T20:19:58.000Z
program Checks; uses Forms, Frm_ChecksMAIN in '..\Source\CHECKS\Frm_ChecksMAIN.PAS' {MainForm}; {$R *.RES} {$E EXE} begin Application.Initialize; Application.Title := 'Demo: Checks'; Application.CreateForm(TMainForm, MainForm); Application.Run; end.
22
71
0.664336
6aa201587203a2ff31fb782b5eb2f1dbcd2d7294
137,683
pas
Pascal
data/pascal/e0f9eabc129217f251c3e4d8b6afbf8b_MemoryBrowserFormUnit.pas
maxim5/code-inspector
14812dfbc7bac1d76c4d9e5be2cdf83fc1c391a1
[ "Apache-2.0" ]
5
2018-01-03T06:43:07.000Z
2020-07-30T13:15:29.000Z
data/pascal/e0f9eabc129217f251c3e4d8b6afbf8b_MemoryBrowserFormUnit.pas
maxim5/code-inspector
14812dfbc7bac1d76c4d9e5be2cdf83fc1c391a1
[ "Apache-2.0" ]
null
null
null
data/pascal/e0f9eabc129217f251c3e4d8b6afbf8b_MemoryBrowserFormUnit.pas
maxim5/code-inspector
14812dfbc7bac1d76c4d9e5be2cdf83fc1c391a1
[ "Apache-2.0" ]
2
2019-11-04T02:54:49.000Z
2020-04-24T17:50:46.000Z
unit MemoryBrowserFormUnit; {$MODE Delphi} interface uses jwawindows, windows, LCLProc, LCLIntf, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, frmMemoryAllocHandlerUnit, math, StdCtrls, Spin, ExtCtrls,CEFuncProc,symbolhandler,Clipbrd, Menus,plugin,CEDebugger,KernelDebugger, Assemblerunit,d...
27.290981
322
0.718099
cd9af561505dec39d6372260b18a7640ac75f7e9
2,831
pas
Pascal
Packages/Order Entry Results Reporting/CPRS/CPRS-Chart/Orders/fODChangeEvtDisp.pas
timmvt/VistA_tt
05694e3a98c026f682f99ca9eb701bdd1e82af28
[ "Apache-2.0" ]
72
2015-02-03T02:30:45.000Z
2020-01-30T17:20:52.000Z
CPRSChart/OR_30_423_SRC/CPRS-chart/Orders/fODChangeEvtDisp.pas
VHAINNOVATIONS/Transplant
a6c000a0df4f46a17330cec95ff25119fca1f472
[ "Apache-2.0" ]
80
2016-04-19T12:04:06.000Z
2020-01-31T14:35:19.000Z
CPRSChart/OR_30_423_SRC/CPRS-chart/Orders/fODChangeEvtDisp.pas
VHAINNOVATIONS/Transplant
a6c000a0df4f46a17330cec95ff25119fca1f472
[ "Apache-2.0" ]
67
2015-01-27T16:47:56.000Z
2020-02-12T21:23:56.000Z
unit fODChangeEvtDisp; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, fAutoSz, StdCtrls, ORFn, ExtCtrls, ORCtrls, VA508AccessibilityManager; type TfrmChangeEventDisp = class(TfrmAutoSz) lblTop: TMemo; pnlTop: TPanel; lstCVOrders: TCaptionListBox; pnlBot...
25.276786
98
0.724832
6a2f1a6b9711445096c2e42654cd2e9e8cbeab73
8,215
pas
Pascal
Projects/Regsvr.pas
winter-wh/issrc-is-5_4
bebd906f45bcaa3e3a22944e2511c583ae3dfb13
[ "FSFAP" ]
null
null
null
Projects/Regsvr.pas
winter-wh/issrc-is-5_4
bebd906f45bcaa3e3a22944e2511c583ae3dfb13
[ "FSFAP" ]
null
null
null
Projects/Regsvr.pas
winter-wh/issrc-is-5_4
bebd906f45bcaa3e3a22944e2511c583ae3dfb13
[ "FSFAP" ]
null
null
null
unit RegSvr; { Inno Setup Copyright (C) 1997-2012 Jordan Russell Portions by Martijn Laan For conditions of distribution and use, see LICENSE.TXT. Registers OLE servers & type libraries after a reboot } interface procedure RunRegSvr; implementation uses Windows, SysUtils, Classes, Forms, PathFunc, Cmn...
36.674107
92
0.666464
6a5bd1ee1e995ee94798332f41e9db4b93bfc432
81,453
pas
Pascal
WvN.Pascal.CReader.pas
yuchueh/C-To-Delphi
6658bfb38e8d37e4d2e9f42c845cd30412930b37
[ "MIT" ]
257
2016-12-11T04:57:15.000Z
2022-03-01T21:39:55.000Z
WvN.Pascal.CReader.pas
yuchueh/C-To-Delphi
6658bfb38e8d37e4d2e9f42c845cd30412930b37
[ "MIT" ]
11
2017-08-12T10:23:49.000Z
2022-03-07T17:46:30.000Z
WvN.Pascal.CReader.pas
yuchueh/C-To-Delphi
6658bfb38e8d37e4d2e9f42c845cd30412930b37
[ "MIT" ]
63
2016-12-11T04:53:27.000Z
2022-02-13T07:42:02.000Z
unit WvN.Pascal.CReader; interface uses Windows, WvN.Pascal.Model, System.Threading; type TOnProgress = reference to procedure(progress:double;const text:string); function c_FunctionToPas(const aUnit:TPascalUnit; const c:string;var aRoutine:TRoutine):boolean; procedure c_to_pas(const aCCode:s...
30.112015
366
0.536346
6ab9ebf9a101d52fadde47cc1d41d5559b04536d
4,157
pas
Pascal
unit-tests/src/testcase_avltree_performance.pas
isemenkov/libpasc-algorithms
a5cb89f8b4bf3cdf0a6640577451c747d5ef872a
[ "MIT" ]
10
2020-06-29T16:37:57.000Z
2022-03-13T18:58:59.000Z
unit-tests/src/testcase_avltree_performance.pas
isemenkov/libpasc-algorithms
a5cb89f8b4bf3cdf0a6640577451c747d5ef872a
[ "MIT" ]
null
null
null
unit-tests/src/testcase_avltree_performance.pas
isemenkov/libpasc-algorithms
a5cb89f8b4bf3cdf0a6640577451c747d5ef872a
[ "MIT" ]
7
2020-07-01T07:20:50.000Z
2021-12-27T01:23:57.000Z
(******************************************************************************) (* libPasC-Algorithms *) (* delphi and object pascal library of common data structures and algorithms *) (* https://github.com/fragglet/c-algorithms ...
35.836207
80
0.579023
617414fe53348fda1ea8211752bf5125d465c99d
4,641
pas
Pascal
lazarus/l3d_camera.pas
vitalych/Lab3D
227bce465ee135674af40d69c0521e08fd30e15b
[ "MIT" ]
null
null
null
lazarus/l3d_camera.pas
vitalych/Lab3D
227bce465ee135674af40d69c0521e08fd30e15b
[ "MIT" ]
6
2019-12-30T11:28:48.000Z
2020-01-06T22:05:43.000Z
lazarus/l3d_camera.pas
vitalych/Lab3D
227bce465ee135674af40d69c0521e08fd30e15b
[ "MIT" ]
null
null
null
// Copyright (c) 2002-2019 Vitaly Chipounov // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, mer...
26.672414
87
0.714286
6af0f57a2a6c49c0c0c7ccc2c54f316a5ed4caf7
297
dpr
Pascal
Libraries/Spring4D/Samples/SpringDemos/Demo.Collections/Demo.Spring.Enumerators.dpr
jomael/Concepts
82d18029e41d55e897d007f826c021cdf63e53f8
[ "Apache-2.0" ]
62
2016-01-20T16:26:25.000Z
2022-02-28T14:25:52.000Z
Libraries/Spring4D/Samples/SpringDemos/Demo.Collections/Demo.Spring.Enumerators.dpr
jomael/Concepts
82d18029e41d55e897d007f826c021cdf63e53f8
[ "Apache-2.0" ]
null
null
null
Libraries/Spring4D/Samples/SpringDemos/Demo.Collections/Demo.Spring.Enumerators.dpr
jomael/Concepts
82d18029e41d55e897d007f826c021cdf63e53f8
[ "Apache-2.0" ]
20
2016-09-08T00:15:22.000Z
2022-01-26T13:13:08.000Z
program Demo.Spring.Enumerators; uses Forms, frmEnumerableDemo in 'frmEnumerableDemo.pas' {EnumerationDemoForm}; {$R *.res} begin Application.Initialize; Application.MainFormOnTaskbar := True; Application.CreateForm(TEnumerationDemoForm, EnumerationDemoForm); Application.Run; end.
19.8
69
0.787879
6ac0c8f9f82017d79dc1980c23f71104e33a4c1b
34,982
dfm
Pascal
CVN_ComClient/CVN_FConnectionPass.dfm
Convnet/convnet
bc2599185054fb2edbf7d7069f534f5600d44b0f
[ "Apache-2.0" ]
22
2015-10-20T12:23:20.000Z
2021-01-23T18:14:07.000Z
CVN_ComClient/CVN_FConnectionPass.dfm
Convnet/convnet
bc2599185054fb2edbf7d7069f534f5600d44b0f
[ "Apache-2.0" ]
null
null
null
CVN_ComClient/CVN_FConnectionPass.dfm
Convnet/convnet
bc2599185054fb2edbf7d7069f534f5600d44b0f
[ "Apache-2.0" ]
14
2016-10-19T03:27:08.000Z
2022-01-01T04:16:08.000Z
object fNeedPass: TfNeedPass Left = 270 Top = 115 BorderStyle = bsToolWindow Caption = #38656#35201#35775#38382#21475#20196 ClientHeight = 156 ClientWidth = 308 Color = 15329769 Font.Charset = DEFAULT_CHARSET Font.Color = clWindowText Font.Height = -11 Font.Name = 'MS Sans Serif' Font.Style = []...
63.71949
72
0.861729
6a6e45284fc1e9d2c3d4e4f3194deff365574062
1,398
pas
Pascal
build/setup.pas
ReactiveBIM/InnoSetup.ScriptBuilder
4a39273a1df2d6d8fa035d46d6212992357332f9
[ "MIT" ]
7
2021-11-13T18:49:32.000Z
2022-02-20T11:03:29.000Z
build/setup.pas
ReactiveBIM/InnoSetup.ScriptBuilder
4a39273a1df2d6d8fa035d46d6212992357332f9
[ "MIT" ]
6
2021-11-13T21:19:47.000Z
2022-03-03T09:20:20.000Z
build/setup.pas
ReactiveBIM/InnoSetup.ScriptBuilder
4a39273a1df2d6d8fa035d46d6212992357332f9
[ "MIT" ]
3
2021-11-13T20:48:38.000Z
2022-03-20T15:30:35.000Z
function GetUninstallString(): String; var sUnInstPath: String; sUnInstallString: String; begin sUnInstPath := ExpandConstant('Software\Microsoft\Windows\CurrentVersion\Uninstall\{#emit SetupSetting("AppId")}_is1'); sUnInstallString := ''; if not RegQueryStringValue(HKLM, sUnInstPath, 'UninstallString', sUnIn...
26.884615
122
0.725322
8536b805e98d7ab2798ef5703e0384e669855a34
21,598
pas
Pascal
Console.pas
dung059/quake3-opengl-delphi
566cc41031fb8c74a7ab7e492dee86b439de412a
[ "MIT" ]
2
2019-03-17T12:59:11.000Z
2019-03-25T09:19:13.000Z
Console.pas
dung059/quake3-opengl-delphi
566cc41031fb8c74a7ab7e492dee86b439de412a
[ "MIT" ]
null
null
null
Console.pas
dung059/quake3-opengl-delphi
566cc41031fb8c74a7ab7e492dee86b439de412a
[ "MIT" ]
null
null
null
unit Console; interface uses OpenGL, classes, Textures, Winapi.Windows; const FONT_HEIGHT = 12; FONT_WIDTH = 9; type FontRect = Record T1,U1,T2,U2, W, H: single; end; FontObj = Object F: array of FontRect; StartChar, FontLe...
31.301449
175
0.544124
6a27c606a847d61105be931d6f8e49aebddcc846
5,876
pas
Pascal
HashLib/src/Crypto/HlpMD4.pas
bogomolov-a-a/HashLib4Pascal
1e48625c6969f282bf082789d55c49679c707eb3
[ "MIT" ]
159
2016-07-10T13:00:27.000Z
2022-03-18T04:18:51.000Z
HashLib/src/Crypto/HlpMD4.pas
bogomolov-a-a/HashLib4Pascal
1e48625c6969f282bf082789d55c49679c707eb3
[ "MIT" ]
24
2020-01-04T11:50:53.000Z
2022-02-17T09:55:23.000Z
HashLib/src/Crypto/HlpMD4.pas
bogomolov-a-a/HashLib4Pascal
1e48625c6969f282bf082789d55c49679c707eb3
[ "MIT" ]
61
2016-07-11T02:50:51.000Z
2022-02-24T15:04:53.000Z
unit HlpMD4; {$I ..\Include\HashLib.inc} interface uses {$IFDEF DELPHI2010} SysUtils, // to get rid of compiler hint "not inlined" on Delphi 2010. {$ENDIF DELPHI2010} HlpMDBase, {$IFDEF DELPHI} HlpHashBuffer, HlpHash, {$ENDIF DELPHI} HlpBits, HlpConverters, HlpIHash, HlpIHashInfo; ...
33.577143
80
0.521273
6a9c5b2bec794320b69f239c809d59a01fcbf782
1,814
pas
Pascal
fpascal/utils.pas
Akira13641/countwords
91ab4e4e8ff5c83dfe45037d7d01979aa4174b3c
[ "MIT" ]
null
null
null
fpascal/utils.pas
Akira13641/countwords
91ab4e4e8ff5c83dfe45037d7d01979aa4174b3c
[ "MIT" ]
null
null
null
fpascal/utils.pas
Akira13641/countwords
91ab4e4e8ff5c83dfe45037d7d01979aa4174b3c
[ "MIT" ]
null
null
null
unit utils; {$mode Delphi}{$H+}{$J-} {$ImplicitExceptions Off} {$RangeChecks Off} interface uses lgHash; type // The default of 255 characters we'd get if using a regular stack-allocated `ShortString` is too // much for our use case here, so we use a custom-defined type for the sake of efficiency. It's // dec...
25.914286
100
0.670342
aa8d89f758d34a39b4dfecb5d4ddaba8314ab56e
1,037
pas
Pascal
prEndereco/unit_dados.pas
marcieleadivincula/delphi
ab937042bbd1ecf49b64ec98b5c6d47436ce871c
[ "MIT" ]
null
null
null
prEndereco/unit_dados.pas
marcieleadivincula/delphi
ab937042bbd1ecf49b64ec98b5c6d47436ce871c
[ "MIT" ]
null
null
null
prEndereco/unit_dados.pas
marcieleadivincula/delphi
ab937042bbd1ecf49b64ec98b5c6d47436ce871c
[ "MIT" ]
null
null
null
unit unit_dados; interface uses System.SysUtils, System.Classes, FireDAC.Stan.Intf, FireDAC.Stan.Option, FireDAC.Stan.Error, FireDAC.UI.Intf, FireDAC.Phys.Intf, FireDAC.Stan.Def, FireDAC.Stan.Pool, FireDAC.Stan.Async, FireDAC.Phys, FireDAC.VCLUI.Wait, FireDAC.Stan.Param, FireDAC.DatS, FireDAC.DApt.Intf, FireD...
22.543478
77
0.747348
85298f53f6aa20dca3221334aa49a38f68ed3cdd
3,635
pas
Pascal
crossinstallers/m_freebsd64_to_freebsd32.pas
Moehre2/fpcupdeluxe
a427ed6e3b503b8ba295f8a818ca909c5a5bb34f
[ "zlib-acknowledgement" ]
198
2018-12-12T04:32:15.000Z
2022-03-10T03:37:09.000Z
crossinstallers/m_freebsd64_to_freebsd32.pas
djwisdom/fpcupdeluxe
07a9ab12480f4c619e968d7f899ca2e13dade32b
[ "zlib-acknowledgement" ]
425
2018-11-13T12:53:45.000Z
2022-03-29T14:39:59.000Z
crossinstallers/m_freebsd64_to_freebsd32.pas
djwisdom/fpcupdeluxe
07a9ab12480f4c619e968d7f899ca2e13dade32b
[ "zlib-acknowledgement" ]
55
2018-11-20T12:03:11.000Z
2022-03-28T06:34:08.000Z
unit m_freebsd64_to_freebsd32; { Cross compiles from FreeBSD x64 to FreeBSD x86 Needed ports/packages: - to do: default available with pc bsd; need to find out for freebsd perhaps something like cd /usr/src && make build32 install32 && ldconfig -v -m -R /usr/lib32 } {$mode objfpc}{$H+} interface uses Classes, SysU...
26.532847
140
0.751857
6a56910384f762d5a8fd15d1ef0792e31dd4e1e9
5,619
pas
Pascal
windows/src/ext/jedi/jvcl/tests/restructured/source/JVCLMiscal.pas
bravogeorge/keyman
c0797e36292de903d7313214d1f765e3d9a2bf4d
[ "MIT" ]
219
2017-06-21T03:37:03.000Z
2022-03-27T12:09:28.000Z
windows/src/ext/jedi/jvcl/tests/restructured/source/JVCLMiscal.pas
bravogeorge/keyman
c0797e36292de903d7313214d1f765e3d9a2bf4d
[ "MIT" ]
4,451
2017-05-29T02:52:06.000Z
2022-03-31T23:53:23.000Z
windows/src/ext/jedi/jvcl/tests/restructured/source/JVCLMiscal.pas
bravogeorge/keyman
c0797e36292de903d7313214d1f765e3d9a2bf4d
[ "MIT" ]
72
2017-05-26T04:08:37.000Z
2022-03-03T10:26:20.000Z
{----------------------------------------------------------------------------- The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/MPL-1.1.html...
22.841463
99
0.72326
85280e54571a3023b3359b5f64c08eb4cf3ee4a0
136,836
pas
Pascal
iscbase/database/dbc/ZDbcOracleStatement.pas
isyscore/isc-fpbase
ce2469c977eba901005982dc7f89fee2d0718f76
[ "MIT" ]
3
2021-06-10T12:33:29.000Z
2021-12-13T06:59:48.000Z
iscbase/database/dbc/ZDbcOracleStatement.pas
isyscore/isc-fpbase
ce2469c977eba901005982dc7f89fee2d0718f76
[ "MIT" ]
null
null
null
iscbase/database/dbc/ZDbcOracleStatement.pas
isyscore/isc-fpbase
ce2469c977eba901005982dc7f89fee2d0718f76
[ "MIT" ]
null
null
null
{*********************************************************} { } { Zeos Database Objects } { Oracle Database Connectivity Classes } { } { Origin...
44.673849
172
0.670715
6ae4ffc69322b5b3ba99dc2521f41e97981b57f2
2,066
pas
Pascal
Components/JVCL/run/JvgQPrintSetupForm.pas
sabatex/Delphi
0efbe6eb38bf8aa2bf269d1866741266e90b9cbf
[ "MIT" ]
null
null
null
Components/JVCL/run/JvgQPrintSetupForm.pas
sabatex/Delphi
0efbe6eb38bf8aa2bf269d1866741266e90b9cbf
[ "MIT" ]
null
null
null
Components/JVCL/run/JvgQPrintSetupForm.pas
sabatex/Delphi
0efbe6eb38bf8aa2bf269d1866741266e90b9cbf
[ "MIT" ]
1
2019-12-24T08:39:18.000Z
2019-12-24T08:39:18.000Z
{----------------------------------------------------------------------------- The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/MPL-1.1.html...
26.487179
92
0.693611
616b3f58e3512fc79f897b26c70fa9338c9416fc
343
lpr
Pascal
lab2/lab2.hw/lab2.lpr
klx3300/digital-electronics-lab
852f4b1ad90edd699d000cd6fb574bc01187141b
[ "MIT" ]
12
2016-04-09T15:43:02.000Z
2022-03-22T01:58:25.000Z
lab2/lab2.hw/lab2.lpr
klx3300/digital-electronics-lab
852f4b1ad90edd699d000cd6fb574bc01187141b
[ "MIT" ]
null
null
null
lab2/lab2.hw/lab2.lpr
klx3300/digital-electronics-lab
852f4b1ad90edd699d000cd6fb574bc01187141b
[ "MIT" ]
2
2018-08-23T07:34:59.000Z
2019-06-20T10:17:31.000Z
<?xml version="1.0" encoding="UTF-8"?> <!-- Product Version: Vivado v2015.2 (64-bit) --> <!-- --> <!-- Copyright 1986-2015 Xilinx, Inc. All Rights Reserved. --> <labtools version="1" minor="0"> <HWSession Dir="hw_1" File="h...
38.111111
70
0.446064
8541e42431abd3a7cd404acb2a08aaf95494e26d
1,907
pas
Pascal
src/servidor/Conversa.Principal.pas
conversa-projeto/conversa-api
d143b72960c8bddc377a4b86b6bf6fe2d5472088
[ "MIT" ]
1
2020-07-16T01:45:44.000Z
2020-07-16T01:45:44.000Z
src/servidor/Conversa.Principal.pas
conversa-projeto/conversa-api
d143b72960c8bddc377a4b86b6bf6fe2d5472088
[ "MIT" ]
null
null
null
src/servidor/Conversa.Principal.pas
conversa-projeto/conversa-api
d143b72960c8bddc377a4b86b6bf6fe2d5472088
[ "MIT" ]
null
null
null
// Eduardo - 12/07/2020 unit Conversa.Principal; interface uses System.SysUtils, System.JSON, IdContext, IdCustomHTTPServer, Conversa.WebSocket, Conversa.Comando, Conversa.Configuracoes; procedure IniciarConversa; implementation uses Conversa.Dados; procedure IniciarConversa; var console: St...
23.256098
94
0.645517
cdc18e98762779afa58c5f86ec46938dc0451983
311
pas
Pascal
MAF_Tutorials/Tutorial_2/Modules/TestModule/dmTestModule.pas
HelgeLange/MAF
405f34c132fa5c391ee2c3a056bacc0de0aa721f
[ "Apache-2.0" ]
4
2018-06-20T08:41:00.000Z
2018-11-01T19:47:41.000Z
MAF_Tutorials/Tutorial_2/Modules/TestModule/dmTestModule.pas
AdriaanBoshoff/MAF
405f34c132fa5c391ee2c3a056bacc0de0aa721f
[ "Apache-2.0" ]
null
null
null
MAF_Tutorials/Tutorial_2/Modules/TestModule/dmTestModule.pas
AdriaanBoshoff/MAF
405f34c132fa5c391ee2c3a056bacc0de0aa721f
[ "Apache-2.0" ]
2
2018-06-20T13:46:12.000Z
2019-08-26T00:29:03.000Z
unit dmTestModule; interface uses SysUtils, Classes, uMAF_Core, uMAF_ModuleController; type TDMTM = class(TDataModule) mafModuleController1: TmafModuleController; private { Private declarations } public { Public declarations } end; var DMTM: TDMTM; implementation {$R *.dfm} end.
12.44
54
0.723473
852edfbe163690e447ce513ba371d031a94ef35f
3,058
dfm
Pascal
Capitulo7/1.2.DB/Form.Cadastro.Usuario.dfm
diondcm/exemplos-delphi
16b4d195981e5f3161d0a2c62f778bec5ba9f3d4
[ "MIT" ]
10
2017-08-02T00:44:41.000Z
2021-10-13T21:11:28.000Z
Capitulo7/1.2.DB/Form.Cadastro.Usuario.dfm
diondcm/exemplos-delphi
16b4d195981e5f3161d0a2c62f778bec5ba9f3d4
[ "MIT" ]
10
2019-12-30T04:09:37.000Z
2022-03-02T06:06:19.000Z
Capitulo7/1.2.DB/Form.Cadastro.Usuario.dfm
diondcm/exemplos-delphi
16b4d195981e5f3161d0a2c62f778bec5ba9f3d4
[ "MIT" ]
9
2017-04-29T16:12:21.000Z
2020-11-11T22:16:32.000Z
object frmUsuario: TfrmUsuario Left = 0 Top = 0 Caption = 'Cadastro de usu'#225'rio' ClientHeight = 524 ClientWidth = 600 Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color = clWindowText Font.Height = -11 Font.Name = 'Tahoma' Font.Style = [] OldCreateOrder = False Position = poScreen...
22.485294
49
0.576194
6ababee96853d3223f320f83d63f324165bdf755
91,179
pas
Pascal
Image32/Clipper/Clipper.pas
crazzzypeter/SmoothCircles
656619590f3637605c45ffbb1425ba02ba068840
[ "BSL-1.0" ]
1
2021-07-17T06:36:15.000Z
2021-07-17T06:36:15.000Z
Image32/Clipper/Clipper.pas
crazzzypeter/SmoothCircles
656619590f3637605c45ffbb1425ba02ba068840
[ "BSL-1.0" ]
null
null
null
Image32/Clipper/Clipper.pas
crazzzypeter/SmoothCircles
656619590f3637605c45ffbb1425ba02ba068840
[ "BSL-1.0" ]
3
2021-07-17T06:36:16.000Z
2021-12-24T03:14:17.000Z
unit Clipper; (******************************************************************************* * Author : Angus Johnson * * Version : 10.0 (beta) * * Date : 6 November 2020 ...
30.720687
88
0.541539
85470f23340d5e322f71ae3d3706f714e91e004c
280
pas
Pascal
Course1/Contest1/prime.pas
Morgan-iv/Main-source-folder
fa1ff9a2ba1654058e4a9bc81150fbe777cabfcd
[ "Unlicense" ]
1
2017-10-31T00:58:14.000Z
2017-10-31T00:58:14.000Z
Course1/Contest1/prime.pas
Morgan-iv/Main-source-folder
fa1ff9a2ba1654058e4a9bc81150fbe777cabfcd
[ "Unlicense" ]
null
null
null
Course1/Contest1/prime.pas
Morgan-iv/Main-source-folder
fa1ff9a2ba1654058e4a9bc81150fbe777cabfcd
[ "Unlicense" ]
null
null
null
program prime; var n, a, s: longint; begin read(n); if n=1 then begin writeln('NO'); exit end; if n<4 then begin writeln('YES'); exit end; s:=trunc(sqrt(n))+1; a:=2; while a<=s do begin if n mod a = 0 then begin writeln('NO'); exit end; a:=a+1; end; writeln('YES') end.
17.5
55
0.621429
854f5e70b9ada4154e4514c5f61d41c481829b18
139,420
pas
Pascal
library/cda/cda_narrative.pas
atkins126/fhirserver
b6c2527f449ba76ce7c06d6b1c03be86cf4235aa
[ "BSD-3-Clause" ]
null
null
null
library/cda/cda_narrative.pas
atkins126/fhirserver
b6c2527f449ba76ce7c06d6b1c03be86cf4235aa
[ "BSD-3-Clause" ]
null
null
null
library/cda/cda_narrative.pas
atkins126/fhirserver
b6c2527f449ba76ce7c06d6b1c03be86cf4235aa
[ "BSD-3-Clause" ]
null
null
null
Unit cda_narrative; { Copyright (c) 2011+, Health Intersections Pty Ltd (http://www.healthintersections.com.au) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source c...
27.219836
195
0.710372
613e9940d4063e317b4f6044b130ddf00a585f1f
315
pas
Pascal
core/utils/ParserConfig.pas
Fergus-repo/CPI_XsdParser
45c8c0e72d88834ec2e72b05c4da7eaa1958aad4
[ "MIT" ]
null
null
null
core/utils/ParserConfig.pas
Fergus-repo/CPI_XsdParser
45c8c0e72d88834ec2e72b05c4da7eaa1958aad4
[ "MIT" ]
null
null
null
core/utils/ParserConfig.pas
Fergus-repo/CPI_XsdParser
45c8c0e72d88834ec2e72b05c4da7eaa1958aad4
[ "MIT" ]
2
2019-09-20T15:23:01.000Z
2021-03-26T13:05:56.000Z
namespace proholz.xsdparser; interface type ParseMappersDictionary = Dictionary<String, BiFunction<XsdParserCore,XmlElement,ReferenceBase>>; ParserConfig = public interface method getXsdTypesToCodeGen: Dictionary<String,String>; method getParseMappers: ParseMappersDictionary; end; implementation end.
18.529412
97
0.825397
6a513d0db26d876dac3b33a9062f9cc4e33713e3
1,943
dfm
Pascal
Utils2/Source/ToPas/fScopeView.dfm
joecare99/Public
9eee060fbdd32bab33cf65044602976ac83f4b83
[ "MIT" ]
11
2017-06-17T05:13:45.000Z
2021-07-11T13:18:48.000Z
Utils2/Source/ToPas/fScopeView.dfm
joecare99/Public
9eee060fbdd32bab33cf65044602976ac83f4b83
[ "MIT" ]
2
2019-03-05T12:52:40.000Z
2021-12-03T12:34:26.000Z
Utils2/Source/ToPas/fScopeView.dfm
joecare99/Public
9eee060fbdd32bab33cf65044602976ac83f4b83
[ "MIT" ]
6
2017-09-07T09:10:09.000Z
2022-02-19T20:19:58.000Z
object ScopeView: TScopeView Left = 342 Top = 116 Caption = 'Scope Viewer' ClientHeight = 426 ClientWidth = 562 Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color = clWindowText Font.Height = -11 Font.Name = 'MS Sans Serif' Font.Style = [] OldCreateOrder = False OnActivat...
20.239583
41
0.553268
17132bb6e5fca74219a21bce71c2b8190a69a792
97,474
dfm
Pascal
src/_fmSelectRegion.dfm
ryujt/ecam
5f4bd8e22a15a939d40766fcad282b6116965436
[ "MIT" ]
1
2020-08-03T18:44:19.000Z
2020-08-03T18:44:19.000Z
src/_fmSelectRegion.dfm
ryujt/ecam
5f4bd8e22a15a939d40766fcad282b6116965436
[ "MIT" ]
null
null
null
src/_fmSelectRegion.dfm
ryujt/ecam
5f4bd8e22a15a939d40766fcad282b6116965436
[ "MIT" ]
3
2020-07-17T14:27:10.000Z
2020-09-12T01:09:31.000Z
object fmSelectRegion: TfmSelectRegion Left = 0 Top = 0 AlphaBlend = True AlphaBlendValue = 200 BorderStyle = bsNone Caption = 'fmSelectRegion' ClientHeight = 730 ClientWidth = 1290 Color = clBlack Constraints.MinHeight = 320 Constraints.MinWidth = 240 Font.Charset = DEFAULT_CHARSET Font.Color...
68.402807
70
0.897193
cd8cefbd35bb18cb44037b2c78934a24b429022f
6,927
pas
Pascal
iscbase/lazutils/ttcalc.pas
isyscore/isc-fpbase
ce2469c977eba901005982dc7f89fee2d0718f76
[ "MIT" ]
3
2021-06-10T12:33:29.000Z
2021-12-13T06:59:48.000Z
iscbase/lazutils/ttcalc.pas
isyscore/isc-fpbase
ce2469c977eba901005982dc7f89fee2d0718f76
[ "MIT" ]
null
null
null
iscbase/lazutils/ttcalc.pas
isyscore/isc-fpbase
ce2469c977eba901005982dc7f89fee2d0718f76
[ "MIT" ]
null
null
null
(******************************************************************* * * TTCalc.Pas 1.2 * * Arithmetic and Vectorial Computations (specification) * * Copyright 1996 David Turner, Robert Wilhelm and Werner Lemberg * * This file is part of the FreeType projec...
27.058594
77
0.445792
61ffd08fd1a9f7d48368cdaf8be0a078e6786bb1
16,414
pas
Pascal
libraries/zlib/contrib/delphi/ZLib.pas
tomberek/RaySAR
b8f885e1b640662b67a568cf8c41b8dcfc9a9c8d
[ "Zlib" ]
1
2021-07-29T01:38:56.000Z
2021-07-29T01:38:56.000Z
libraries/zlib/contrib/delphi/ZLib.pas
tomberek/RaySAR
b8f885e1b640662b67a568cf8c41b8dcfc9a9c8d
[ "Zlib" ]
null
null
null
libraries/zlib/contrib/delphi/ZLib.pas
tomberek/RaySAR
b8f885e1b640662b67a568cf8c41b8dcfc9a9c8d
[ "Zlib" ]
1
2021-08-05T17:43:15.000Z
2021-08-05T17:43:15.000Z
{*******************************************************} { } { Borland Delphi Supplemental Components } { ZLIB Data Compression Interface Unit } { } { Copyright (c) 1997,99 ...
29.415771
88
0.689046
6abab44f875f87840147a73fa63c3ee27c7be6d9
2,657
dfm
Pascal
Capitulo5/Prep.Console/Form.Principal.dfm
diondcm/exemplos-delphi
16b4d195981e5f3161d0a2c62f778bec5ba9f3d4
[ "MIT" ]
10
2017-08-02T00:44:41.000Z
2021-10-13T21:11:28.000Z
Capitulo5/Prep.Console/Form.Principal.dfm
diondcm/exemplos-delphi
16b4d195981e5f3161d0a2c62f778bec5ba9f3d4
[ "MIT" ]
10
2019-12-30T04:09:37.000Z
2022-03-02T06:06:19.000Z
Capitulo5/Prep.Console/Form.Principal.dfm
diondcm/exemplos-delphi
16b4d195981e5f3161d0a2c62f778bec5ba9f3d4
[ "MIT" ]
9
2017-04-29T16:12:21.000Z
2020-11-11T22:16:32.000Z
object Form1: TForm1 Left = 0 Top = 0 Caption = 'Form1' ClientHeight = 299 ClientWidth = 635 Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color = clWindowText Font.Height = -11 Font.Name = 'Tahoma' Font.Style = [] OldCreateOrder = False OnCreate = FormCreate PixelsPerInch = 96 Tex...
19.977444
40
0.622883
6a8f22189eab409dda023878cfaeed0ec02d4443
8,283
pas
Pascal
additional/bass/RT_BASSWMA.pas
Tallefer/kspnew
57c69ac319c19e61ceb23e5a02759b98c9e4f8cd
[ "BSD-3-Clause" ]
1
2018-10-06T02:12:58.000Z
2018-10-06T02:12:58.000Z
additional/bass/RT_BASSWMA.pas
Tallefer/kspnew
57c69ac319c19e61ceb23e5a02759b98c9e4f8cd
[ "BSD-3-Clause" ]
null
null
null
additional/bass/RT_BASSWMA.pas
Tallefer/kspnew
57c69ac319c19e61ceb23e5a02759b98c9e4f8cd
[ "BSD-3-Clause" ]
1
2018-10-06T02:13:13.000Z
2018-10-06T02:13:13.000Z
{ Original Source : BASSWMA.PAS by Ian Luck BASSWMA 2.4 Delphi API, copyright (c) 2002-2006 Ian Luck. Requires BASS 2.4 - available from www.un4seen.com See the BASSWMA.CHM file for more complete documentation } // Modified for dynamic loading by Silhwan Hyun Unit RT_BASSWMA; interface uses {$IFDEF WINDOWS}...
43.594737
134
0.747072