annotate gcc/ada/libgnat/a-wtflio.ads @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 ------------------------------------------------------------------------------
kono
parents:
diff changeset
2 -- --
kono
parents:
diff changeset
3 -- GNAT RUN-TIME COMPONENTS --
kono
parents:
diff changeset
4 -- --
kono
parents:
diff changeset
5 -- A D A . W I D E _ T E X T _ I O . F L O A T _ I O --
kono
parents:
diff changeset
6 -- --
kono
parents:
diff changeset
7 -- S p e c --
kono
parents:
diff changeset
8 -- --
kono
parents:
diff changeset
9 -- This specification is derived from the Ada Reference Manual for use with --
kono
parents:
diff changeset
10 -- GNAT. In accordance with the copyright of that document, you can freely --
kono
parents:
diff changeset
11 -- copy and modify this specification, provided that if you redistribute a --
kono
parents:
diff changeset
12 -- modified version, any changes that you have made are clearly indicated. --
kono
parents:
diff changeset
13 -- --
kono
parents:
diff changeset
14 ------------------------------------------------------------------------------
kono
parents:
diff changeset
15
kono
parents:
diff changeset
16 -- In Ada 95, the package Ada.Wide_Text_IO.Float_IO is a subpackage of
kono
parents:
diff changeset
17 -- Wide_Text_IO. In GNAT we make it a child package to avoid loading
kono
parents:
diff changeset
18 -- the necessary code if Float_IO is not instantiated. See the routine
kono
parents:
diff changeset
19 -- Rtsfind.Check_Text_IO_Special_Unit for a description of how we patch up
kono
parents:
diff changeset
20 -- the difference in semantics so that it is invisible to the Ada programmer.
kono
parents:
diff changeset
21
kono
parents:
diff changeset
22 private generic
kono
parents:
diff changeset
23 type Num is digits <>;
kono
parents:
diff changeset
24
kono
parents:
diff changeset
25 package Ada.Wide_Text_IO.Float_IO is
kono
parents:
diff changeset
26
kono
parents:
diff changeset
27 Default_Fore : Field := 2;
kono
parents:
diff changeset
28 Default_Aft : Field := Num'Digits - 1;
kono
parents:
diff changeset
29 Default_Exp : Field := 3;
kono
parents:
diff changeset
30
kono
parents:
diff changeset
31 procedure Get
kono
parents:
diff changeset
32 (File : File_Type;
kono
parents:
diff changeset
33 Item : out Num;
kono
parents:
diff changeset
34 Width : Field := 0);
kono
parents:
diff changeset
35
kono
parents:
diff changeset
36 procedure Get
kono
parents:
diff changeset
37 (Item : out Num;
kono
parents:
diff changeset
38 Width : Field := 0);
kono
parents:
diff changeset
39
kono
parents:
diff changeset
40 procedure Put
kono
parents:
diff changeset
41 (File : File_Type;
kono
parents:
diff changeset
42 Item : Num;
kono
parents:
diff changeset
43 Fore : Field := Default_Fore;
kono
parents:
diff changeset
44 Aft : Field := Default_Aft;
kono
parents:
diff changeset
45 Exp : Field := Default_Exp);
kono
parents:
diff changeset
46
kono
parents:
diff changeset
47 procedure Put
kono
parents:
diff changeset
48 (Item : Num;
kono
parents:
diff changeset
49 Fore : Field := Default_Fore;
kono
parents:
diff changeset
50 Aft : Field := Default_Aft;
kono
parents:
diff changeset
51 Exp : Field := Default_Exp);
kono
parents:
diff changeset
52
kono
parents:
diff changeset
53 procedure Get
kono
parents:
diff changeset
54 (From : Wide_String;
kono
parents:
diff changeset
55 Item : out Num;
kono
parents:
diff changeset
56 Last : out Positive);
kono
parents:
diff changeset
57
kono
parents:
diff changeset
58 procedure Put
kono
parents:
diff changeset
59 (To : out Wide_String;
kono
parents:
diff changeset
60 Item : Num;
kono
parents:
diff changeset
61 Aft : Field := Default_Aft;
kono
parents:
diff changeset
62 Exp : Field := Default_Exp);
kono
parents:
diff changeset
63
kono
parents:
diff changeset
64 end Ada.Wide_Text_IO.Float_IO;