代码搜索:controlled
找到约 10,000 项符合「controlled」的源代码
代码结果 10,000
www.eeworm.com/read/423101/10587479
pdf controlled.pdf
www.eeworm.com/read/136989/5835609
mpc application_controlled.mpc
// -*- MPC -*-
// Application_Controlled.mpc,v 1.2 2003/12/23 21:04:24 dhinton Exp
project(*server): orbsvcsexe, portablegroup, loadbalancing, naming, svc_utils {
Source_Files {
server.cpp
www.eeworm.com/read/136989/5835613
dsw application_controlled.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/136989/5835629
dsw infrastructure_controlled.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/366702/2872468
ads controlled1.ads
with Ada.Finalization; use Ada.Finalization;
package controlled1 is
type Test is new Controlled with null record;
procedure Add_Test (T : access Test'Class);
type Test_Case1 is new Test
www.eeworm.com/read/366702/2872519
adb controlled2.adb
-- { dg-do compile }
with controlled1; use controlled1;
package body controlled2 is
procedure Test_Suite is
begin
Add_Test
(new Test_Case'(Test_Case1 with Link_Under_Test => 300)
www.eeworm.com/read/366702/2872561
adb controlled_record.adb
-- { dg-do compile }
-- { dg-options "-O2" }
with Ada.Text_IO; use Ada.Text_IO;
with Assert;
package body Controlled_Record is
procedure Assert_Invariants (PA : Point_T) is
PB : Point_T;
www.eeworm.com/read/366702/2872674
ads controlled4.ads
with controlled3; use controlled3;
package controlled4 is
procedure Test_Suite;
end;
www.eeworm.com/read/366702/2872705
ads controlled2.ads
with controlled1; use controlled1;
package controlled2 is
procedure Test_Suite;
end controlled2;
www.eeworm.com/read/366702/2872719
ads controlled_record.ads
with Ada.Finalization;
package Controlled_Record is
type Point_T is limited private;
procedure Assert_Invariants (PA : Point_T);
private
type Coords_T is array (1 .. 2) of Natural;
ty