gcc50/csu: Skip depends step to avoid possible race
[dragonfly.git] / contrib / gcc-4.4 / libstdc++-v3 / config / os / bsd / dragonfly / ctype_inline.h
1 // Locale support -*- C++ -*-
2
3 // Copyright (C) 2000, 2003, 2004, 2005, 2009, 2010
4 // Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library.  This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 3, or (at your option)
10 // any later version.
11
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16
17 // Under Section 7 of GPL version 3, you are granted additional
18 // permissions described in the GCC Runtime Library Exception, version
19 // 3.1, as published by the Free Software Foundation.
20
21 // You should have received a copy of the GNU General Public License and
22 // a copy of the GCC Runtime Library Exception along with this program;
23 // see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
24 // <http://www.gnu.org/licenses/>.
25
26 /** @file bits/ctype_inline.h
27  *  This is an internal header file, included by other library headers.
28  *  Do not attempt to use it directly. @headername{locale}
29  */
30
31 //
32 // ISO C++ 14882: 22.1  Locales
33 //
34
35 // ctype bits to be inlined go here. Non-inlinable (ie virtual do_*)
36 // functions go in ctype.cc
37
38 _GLIBCXX_BEGIN_NAMESPACE(std)
39
40   bool
41   ctype<char>::
42   is(mask __m, char __c) const
43   { return _M_table[(unsigned char)(__c)] & __m; }
44
45   const char*
46   ctype<char>::
47   is(const char* __low, const char* __high, mask* __vec) const
48   {
49     while (__low < __high)
50       *__vec++ = _M_table[*__low++];
51     return __high;
52   }
53
54   const char*
55   ctype<char>::
56   scan_is(mask __m, const char* __low, const char* __high) const
57   {
58     while (__low < __high && !this->is(__m, *__low))
59       ++__low;
60     return __low;
61   }
62
63   const char*
64   ctype<char>::
65   scan_not(mask __m, const char* __low, const char* __high) const
66   {
67     while (__low < __high && this->is(__m, *__low) != 0)
68       ++__low;
69     return __low;
70   }
71
72 #ifdef _GLIBCXX_USE_WCHAR_T
73   inline bool
74   ctype<wchar_t>::
75   do_is(mask __m, wchar_t __c) const
76   {
77 #ifdef _CTYPE_S
78     return __istype (__c, __m);
79 #else
80     return __libc_ctype_ [__c + 1] & __m;
81 #endif
82   }
83
84   inline const wchar_t*
85   ctype<wchar_t>::
86   do_is(const wchar_t* __lo, const wchar_t* __hi, mask* __vec) const
87   {
88     for (; __lo < __hi; ++__vec, ++__lo)
89 #ifdef _CTYPE_S
90       *__vec = __maskrune (*__lo, upper | lower | alpha | digit | xdigit
91                            | space | print | graph | cntrl | punct | alnum);
92 #else
93     {
94       mask __m = 0;
95       if (isupper (*__lo)) __m |= _CTYPEMASK_U;
96       if (islower (*__lo)) __m |= _CTYPEMASK_L;
97       if (isdigit (*__lo)) __m |= _CTYPEMASK_D;
98       if (isspace (*__lo)) __m |= _CTYPEMASK_S;
99       if (ispunct (*__lo)) __m |= _CTYPEMASK_P;
100       if (isblank (*__lo)) __m |= _CTYPEMASK_B;
101       if (iscntrl (*__lo)) __m |= _CTYPEMASK_C;
102       if (isalpha (*__lo)) __m |= _CTYPEMASK_A;
103       if (isgraph (*__lo)) __m |= _CTYPEMASK_G;
104       if (isprint (*__lo)) __m |= _CTYPEMASK_R;
105       if (isxdigit(*__lo)) __m |= _CTYPEMASK_X;
106       /* alnum already covered = alpha | digit */
107
108       *__vec = __m;
109     }
110 #endif
111     return __hi;
112   }
113
114   inline const wchar_t*
115   ctype<wchar_t>::
116   do_scan_is(mask __m, const wchar_t* __lo, const wchar_t* __hi) const
117   {
118 #ifdef _CTYPE_S
119     while (__lo < __hi && ! __istype (*__lo, __m))
120 #else
121     while (__lo < __hi && !(__libc_ctype_ [*__lo + 1] & __m))
122 #endif
123       ++__lo;
124     return __lo;
125   }
126
127   inline const wchar_t*
128   ctype<wchar_t>::
129   do_scan_not(mask __m, const char_type* __lo, const char_type* __hi) const
130   {
131 #ifdef _CTYPE_S
132     while (__lo < __hi && __istype (*__lo, __m))
133 #else
134     while (__lo < __hi && (__libc_ctype_ [*__lo + 1] & __m))
135 #endif
136       ++__lo;
137     return __lo;
138   }
139 #endif
140
141 _GLIBCXX_END_NAMESPACE