代码搜索:OUT

找到约 10,000 项符合「OUT」的源代码

代码结果 10,000
www.eeworm.com/read/320003/3550988

out testcaseifformat.out

unit testcaseifformat; interface type trecord = record bar1: integer; bar2: integer; end; implementation uses SysUtils; function foo1(const pi: integer): boolean; begin
www.eeworm.com/read/320003/3550991

out testlongstrings.out

unit testlongstrings; interface var gsgoose: string = 'Quote''Quote''My quote'; gsgander: string = ''''''''; const therightway = 'Fnord Fnord Fnord Fnord Fnord Fnord Fnord ' +
www.eeworm.com/read/320003/3550998

out testgenericarray.out

program testgenericarray;{$APPTYPE CONSOLE} uses SysUtils; type genarray1dim = array of t; genarray2dim = array of genarray1dim; arrint1dim = genarray1dim;
www.eeworm.com/read/320003/3551000

out testabsolute.out

unit testabsolute; interface implementation uses Classes; function methodpointertodouble(pmmethod: TNotifyEvent): double; var lmmethod: TNotifyEvent; ldcast: double absolute pmmet
www.eeworm.com/read/320003/3551001

out testforward.out

unit testforward; interface implementation procedure haggis; forward; function fred(b1, b2: boolean): boolean; forward; var liwonk: integer; procedure jim; var b: boolean; begi
www.eeworm.com/read/320003/3551006

out fformtest.out

unit fformtest; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons; type tformtest = class(TForm) bbclose: tbitbtn; mnotic
www.eeworm.com/read/320003/3551014

out testmixedmodecaps.out

unit testmixedmodecaps; interface type tmixedmode = class(TObject) private fisafecall: integer; public property safecall: integer Read fisafecall Write fisafecall; proced
www.eeworm.com/read/320003/3551017

out testgenericconstraints.out

program testgenericconstraints;{$APPTYPE CONSOLE} uses SysUtils, Classes; type couleurs = (rouge, noir, vert); imoninterface = interface procedure faitqqchose; end; tc
www.eeworm.com/read/320003/3551018

out testinheritedexpr.out

unit testinheritedexpr; interface type tcitycounter = class(TObject) public function countrats(const pscity: string): integer; virtual; function countcheaptaxis: integer; virtual
www.eeworm.com/read/320003/3551020

out testexports.out

unit testexports; interface procedure test; exports test; implementation procedure test; begin end; end.