| 1 |
294 |
jeremybenn |
-- CB40A020.A
|
| 2 |
|
|
--
|
| 3 |
|
|
-- Grant of Unlimited Rights
|
| 4 |
|
|
--
|
| 5 |
|
|
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
|
| 6 |
|
|
-- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
|
| 7 |
|
|
-- unlimited rights in the software and documentation contained herein.
|
| 8 |
|
|
-- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making
|
| 9 |
|
|
-- this public release, the Government intends to confer upon all
|
| 10 |
|
|
-- recipients unlimited rights equal to those held by the Government.
|
| 11 |
|
|
-- These rights include rights to use, duplicate, release or disclose the
|
| 12 |
|
|
-- released technical data and computer software in whole or in part, in
|
| 13 |
|
|
-- any manner and for any purpose whatsoever, and to have or permit others
|
| 14 |
|
|
-- to do so.
|
| 15 |
|
|
--
|
| 16 |
|
|
-- DISCLAIMER
|
| 17 |
|
|
--
|
| 18 |
|
|
-- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
|
| 19 |
|
|
-- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
|
| 20 |
|
|
-- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
|
| 21 |
|
|
-- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
|
| 22 |
|
|
-- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
|
| 23 |
|
|
-- PARTICULAR PURPOSE OF SAID MATERIAL.
|
| 24 |
|
|
--*
|
| 25 |
|
|
--
|
| 26 |
|
|
-- OBJECTIVE:
|
| 27 |
|
|
-- See CB40A021.AM.
|
| 28 |
|
|
--
|
| 29 |
|
|
-- TEST DESCRIPTION:
|
| 30 |
|
|
-- See CB40A021.AM.
|
| 31 |
|
|
--
|
| 32 |
|
|
-- TEST FILES:
|
| 33 |
|
|
-- This test consists of the following files:
|
| 34 |
|
|
--
|
| 35 |
|
|
-- FB40A00.A
|
| 36 |
|
|
-- => CB40A020.A
|
| 37 |
|
|
-- CB40A021.AM
|
| 38 |
|
|
--
|
| 39 |
|
|
--
|
| 40 |
|
|
-- CHANGE HISTORY:
|
| 41 |
|
|
-- 06 Dec 94 SAIC ACVC 2.0
|
| 42 |
|
|
-- 02 Nov 96 SAIC ACVC 2.1: Modified prologue.
|
| 43 |
|
|
--
|
| 44 |
|
|
--!
|
| 45 |
|
|
|
| 46 |
|
|
|
| 47 |
|
|
package FB40A00.CB40A020_0 is -- package Text_Parser.Processing
|
| 48 |
|
|
|
| 49 |
|
|
function Count_AlphaNumerics (Text : in String) return Natural;
|
| 50 |
|
|
|
| 51 |
|
|
end FB40A00.CB40A020_0;
|
| 52 |
|
|
|
| 53 |
|
|
|
| 54 |
|
|
--=================================================================--
|
| 55 |
|
|
|
| 56 |
|
|
|
| 57 |
|
|
-- Text_Parser.Processing.Process_Text
|
| 58 |
|
|
with Report;
|
| 59 |
|
|
private procedure FB40A00.CB40A020_0.CB40A020_1 (Text : in String);
|
| 60 |
|
|
|
| 61 |
|
|
procedure FB40A00.CB40A020_0.CB40A020_1 (Text : in String) is
|
| 62 |
|
|
Pos : Natural := Text'First - 1;
|
| 63 |
|
|
begin
|
| 64 |
|
|
loop -- Process string, raise exception upon completion.
|
| 65 |
|
|
Pos := Pos + 1;
|
| 66 |
|
|
if Pos > Text'Last then
|
| 67 |
|
|
raise Completed_Text_Processing;
|
| 68 |
|
|
elsif (Text (Pos) in 'A' .. 'Z') or
|
| 69 |
|
|
(Text (Pos) in 'a' .. 'z') or
|
| 70 |
|
|
(Text (Pos) in '0' .. '9') then
|
| 71 |
|
|
Increment_AlphaNumeric_Count;
|
| 72 |
|
|
else
|
| 73 |
|
|
Increment_Non_AlphaNumeric_Count;
|
| 74 |
|
|
end if;
|
| 75 |
|
|
end loop;
|
| 76 |
|
|
-- No exception handler here, exception propagates.
|
| 77 |
|
|
Report.Failed ("No exception raised in child package subprogram");
|
| 78 |
|
|
end FB40A00.CB40A020_0.CB40A020_1;
|
| 79 |
|
|
|
| 80 |
|
|
|
| 81 |
|
|
--=================================================================--
|
| 82 |
|
|
|
| 83 |
|
|
|
| 84 |
|
|
with FB40A00.CB40A020_0.CB40A020_1; -- "with" of private child subprogram
|
| 85 |
|
|
-- Text_Parser.Processing.Process_Text
|
| 86 |
|
|
package body FB40A00.CB40A020_0 is
|
| 87 |
|
|
|
| 88 |
|
|
function Count_AlphaNumerics (Text : in String) return Natural is
|
| 89 |
|
|
begin
|
| 90 |
|
|
FB40A00.CB40A020_0.CB40A020_1 (Text); -- Call prvt child proc.
|
| 91 |
|
|
return (AlphaNumeric_Count); -- Global maintained in parent.
|
| 92 |
|
|
-- No exception handler here, exception propagates.
|
| 93 |
|
|
end Count_AlphaNumerics;
|
| 94 |
|
|
|
| 95 |
|
|
end FB40A00.CB40A020_0;
|