home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / a-stwise.ads < prev    next >
Text File  |  1996-09-28  |  4KB  |  84 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --              A D A . S T R I N G S . W I D E _ S E A R C H               --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.4 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
  22. --                                                                          --
  23. ------------------------------------------------------------------------------
  24.  
  25. --  This package contains the search functions from Ada.Strings.Wide_Fixed.
  26. --  They are separated out because they are shared by Ada.Strings.Wide_Bounded
  27. --  and Ada.Strings.Wide_Unbounded, and we don't want to drag other irrelevant
  28. --  stuff from Ada.Strings.Wide_Fixed when using the other two packages. We
  29. --  make this a private package, since user programs should access these
  30. --  subprograms via one of the standard string packages.
  31.  
  32.  
  33. with Ada.Strings.Wide_Maps;
  34.  
  35. private package Ada.Strings.Wide_Search is
  36. pragma Preelaborate (Wide_Search);
  37.  
  38.    function Index (Source   : in Wide_String;
  39.                    Pattern  : in Wide_String;
  40.                    Going    : in Direction := Forward;
  41.                    Mapping  : in Wide_Maps.Wide_Character_Mapping :=
  42.                                           Wide_Maps.Identity)
  43.       return Natural;
  44.  
  45.    function Index (Source   : in Wide_String;
  46.                    Pattern  : in Wide_String;
  47.                    Going    : in Direction := Forward;
  48.                    Mapping  : in Wide_Maps.Wide_Character_Mapping_Function)
  49.       return Natural;
  50.  
  51.    function Index (Source : in Wide_String;
  52.                    Set    : in Wide_Maps.Wide_Character_Set;
  53.                    Test   : in Membership := Inside;
  54.                    Going  : in Direction  := Forward)
  55.       return Natural;
  56.  
  57.    function Index_Non_Blank (Source : in Wide_String;
  58.                              Going  : in Direction := Forward)
  59.       return Natural;
  60.  
  61.    function Count (Source   : in Wide_String;
  62.                    Pattern  : in Wide_String;
  63.                    Mapping  : in Wide_Maps.Wide_Character_Mapping :=
  64.                                           Wide_Maps.Identity)
  65.       return Natural;
  66.  
  67.    function Count (Source   : in Wide_String;
  68.                    Pattern  : in Wide_String;
  69.                    Mapping  : in Wide_Maps.Wide_Character_Mapping_Function)
  70.       return Natural;
  71.  
  72.    function Count (Source   : in Wide_String;
  73.                    Set      : in Wide_Maps.Wide_Character_Set)
  74.       return Natural;
  75.  
  76.  
  77.    procedure Find_Token (Source : in Wide_String;
  78.                          Set    : in Wide_Maps.Wide_Character_Set;
  79.                          Test   : in Membership;
  80.                          First  : out Positive;
  81.                          Last   : out Natural);
  82.  
  83. end Ada.Strings.Wide_Search;
  84.