代码搜索:ADs 有哪些应用?
找到约 10,000 项符合「ADs 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/366702/2872464
ads ifaces.ads
package Ifaces is
type Iface_1 is interface;
procedure op1(this : Iface_1) is abstract;
--
type Iface_2 is interface;
procedure op2 (this : Iface_2) is abstract;
--
type Root is n
www.eeworm.com/read/366702/2872535
ads graphic.ads
with Ada.Streams;
with Ada.Tags;
package Graphic is
use Ada;
--
type Object is abstract tagged null record;
function XML_Input (S : access Streams.Root_Stream_Type'Class)
return Object'Clas
www.eeworm.com/read/366702/2872571
ads self.ads
with System;
package Self is
type Lim is limited private;
type Lim_Ref is access all Lim;
function G (X : Integer) return lim;
procedure Change (X : in out Lim; Incr : Integer);
function
www.eeworm.com/read/366702/2872583
ads gnati.ads
-- { dg-do compile }
-- { dg-options "-gnatI" }
package gnati is
type j is range 1 .. 50;
for j'size use 1;
type n is new integer;
for n'alignment use -99;
type e is (a, b);
for e
www.eeworm.com/read/366702/2872589
ads with_containers.ads
-- { dg-do compile }
pragma Warnings (Off);
with Ada.Containers.Doubly_Linked_Lists;
with Ada.Containers.Hashed_Maps;
with Ada.Containers.Hashed_Sets;
with Ada.Containers.Indefinite_Doubly_Linked_Li
www.eeworm.com/read/366702/2872592
ads constructor.ads
-- { dg-do compile }
package constructor is
type R (Name_Length : Natural) is record
Name : Wide_String (1..Name_Length);
Multiple : Boolean;
end record;
Null_Params : co
www.eeworm.com/read/366702/2872599
ads preelab.ads
-- { dg-do compile }
with Ada.Finalization;
package preelab is
type T is limited private;
pragma Preelaborable_Initialization (T);
private
type T is new Ada.Finalization.Limited_Controll
www.eeworm.com/read/366702/2872601
ads private_with.ads
-- { dg-do compile }
private with Ada.Containers.Ordered_Maps;
with Ada.Containers.Ordered_Sets;
with Ada.Unchecked_Deallocation;
package private_with is
type String_Access is access String;