gccxml_gem 0.9.3-x86-darwin-11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +84 -0
- data/bin/gccxml +0 -0
- data/bin/gccxml_cc1plus +0 -0
- data/gccxml.rb +57 -0
- data/share/doc/gccxml-0.9/Copyright.txt +55 -0
- data/share/doc/gccxml-0.9/gccxml.html +168 -0
- data/share/doc/gccxml-0.9/gccxml.txt +293 -0
- data/share/gccxml-0.9/GCC/2.95/algorithm +76 -0
- data/share/gccxml-0.9/GCC/2.95/bitset +17 -0
- data/share/gccxml-0.9/GCC/2.95/cctype +24 -0
- data/share/gccxml-0.9/GCC/2.95/clocale +14 -0
- data/share/gccxml-0.9/GCC/2.95/cmath +33 -0
- data/share/gccxml-0.9/GCC/2.95/complex +38 -0
- data/share/gccxml-0.9/GCC/2.95/csetjmp +13 -0
- data/share/gccxml-0.9/GCC/2.95/csignal +14 -0
- data/share/gccxml-0.9/GCC/2.95/cstdarg +12 -0
- data/share/gccxml-0.9/GCC/2.95/cstddef +13 -0
- data/share/gccxml-0.9/GCC/2.95/cstdio +55 -0
- data/share/gccxml-0.9/GCC/2.95/cstdlib +66 -0
- data/share/gccxml-0.9/GCC/2.95/cstring +34 -0
- data/share/gccxml-0.9/GCC/2.95/ctime +24 -0
- data/share/gccxml-0.9/GCC/2.95/cwchar +65 -0
- data/share/gccxml-0.9/GCC/2.95/cwctype +31 -0
- data/share/gccxml-0.9/GCC/2.95/deque +19 -0
- data/share/gccxml-0.9/GCC/2.95/exception +20 -0
- data/share/gccxml-0.9/GCC/2.95/fstream +23 -0
- data/share/gccxml-0.9/GCC/2.95/functional +64 -0
- data/share/gccxml-0.9/GCC/2.95/gccxml_bitset +1066 -0
- data/share/gccxml-0.9/GCC/2.95/iomanip +20 -0
- data/share/gccxml-0.9/GCC/2.95/iosfwd +20 -0
- data/share/gccxml-0.9/GCC/2.95/iostream +27 -0
- data/share/gccxml-0.9/GCC/2.95/iterator +39 -0
- data/share/gccxml-0.9/GCC/2.95/list +19 -0
- data/share/gccxml-0.9/GCC/2.95/map +20 -0
- data/share/gccxml-0.9/GCC/2.95/memory +21 -0
- data/share/gccxml-0.9/GCC/2.95/new +13 -0
- data/share/gccxml-0.9/GCC/2.95/numeric +15 -0
- data/share/gccxml-0.9/GCC/2.95/pthread.h +16 -0
- data/share/gccxml-0.9/GCC/2.95/queue +20 -0
- data/share/gccxml-0.9/GCC/2.95/set +20 -0
- data/share/gccxml-0.9/GCC/2.95/sstream +24 -0
- data/share/gccxml-0.9/GCC/2.95/stack +19 -0
- data/share/gccxml-0.9/GCC/2.95/std/bastring.cc +524 -0
- data/share/gccxml-0.9/GCC/2.95/std/complext.h +397 -0
- data/share/gccxml-0.9/GCC/2.95/std/dcomplex.h +92 -0
- data/share/gccxml-0.9/GCC/2.95/std/fcomplex.h +88 -0
- data/share/gccxml-0.9/GCC/2.95/std/gslice_array.h +170 -0
- data/share/gccxml-0.9/GCC/2.95/std/indirect_array.h +157 -0
- data/share/gccxml-0.9/GCC/2.95/std/ldcomplex.h +96 -0
- data/share/gccxml-0.9/GCC/2.95/std/mask_array.h +154 -0
- data/share/gccxml-0.9/GCC/2.95/std/slice_array.h +156 -0
- data/share/gccxml-0.9/GCC/2.95/std/std_valarray.h +728 -0
- data/share/gccxml-0.9/GCC/2.95/std/straits.h +162 -0
- data/share/gccxml-0.9/GCC/2.95/std/valarray_meta.h +1035 -0
- data/share/gccxml-0.9/GCC/2.95/stdexcept +17 -0
- data/share/gccxml-0.9/GCC/2.95/stl_alloc.h +1057 -0
- data/share/gccxml-0.9/GCC/2.95/stl_bvector.h +836 -0
- data/share/gccxml-0.9/GCC/2.95/stl_deque.h +1699 -0
- data/share/gccxml-0.9/GCC/2.95/stl_list.h +843 -0
- data/share/gccxml-0.9/GCC/2.95/stl_tree.h +1331 -0
- data/share/gccxml-0.9/GCC/2.95/stl_vector.h +828 -0
- data/share/gccxml-0.9/GCC/2.95/string +26 -0
- data/share/gccxml-0.9/GCC/2.95/strstream +23 -0
- data/share/gccxml-0.9/GCC/2.95/typeinfo +11 -0
- data/share/gccxml-0.9/GCC/2.95/utility +25 -0
- data/share/gccxml-0.9/GCC/2.95/valarray +52 -0
- data/share/gccxml-0.9/GCC/2.95/vector +19 -0
- data/share/gccxml-0.9/GCC/2.96/sstream +305 -0
- data/share/gccxml-0.9/GCC/3.0/pthread.h +16 -0
- data/share/gccxml-0.9/GCC/3.1/pthread.h +16 -0
- data/share/gccxml-0.9/GCC/3.2/bits/fstream.tcc +500 -0
- data/share/gccxml-0.9/GCC/3.2/bits/gthr-default.h +585 -0
- data/share/gccxml-0.9/GCC/3.2/bits/istream.tcc +1207 -0
- data/share/gccxml-0.9/GCC/3.2/bits/locale_facets.h +1810 -0
- data/share/gccxml-0.9/GCC/3.2/bits/locale_facets.tcc +2397 -0
- data/share/gccxml-0.9/GCC/3.2/bits/messages_members.h +108 -0
- data/share/gccxml-0.9/GCC/3.2/bits/ostream.tcc +713 -0
- data/share/gccxml-0.9/GCC/3.2/bits/sstream.tcc +241 -0
- data/share/gccxml-0.9/GCC/3.2/bits/stl_deque.h +1682 -0
- data/share/gccxml-0.9/GCC/3.2/bits/stl_list.h +989 -0
- data/share/gccxml-0.9/GCC/3.2/bits/stl_tree.h +1462 -0
- data/share/gccxml-0.9/GCC/3.2/bits/stl_vector.h +1085 -0
- data/share/gccxml-0.9/GCC/3.2/bits/valarray_meta.h +1063 -0
- data/share/gccxml-0.9/GCC/3.2/fstream +579 -0
- data/share/gccxml-0.9/GCC/3.2/pthread.h +16 -0
- data/share/gccxml-0.9/GCC/3.2/sstream +384 -0
- data/share/gccxml-0.9/GCC/3.3/bits/fstream.tcc +530 -0
- data/share/gccxml-0.9/GCC/3.3/bits/list.tcc +378 -0
- data/share/gccxml-0.9/GCC/3.3/bits/locale_facets.h +2050 -0
- data/share/gccxml-0.9/GCC/3.3/bits/messages_members.h +108 -0
- data/share/gccxml-0.9/GCC/3.3/bits/sstream.tcc +243 -0
- data/share/gccxml-0.9/GCC/3.3/bits/stl_deque.h +1603 -0
- data/share/gccxml-0.9/GCC/3.3/bits/stl_list.h +1167 -0
- data/share/gccxml-0.9/GCC/3.3/bits/stl_tree.h +1462 -0
- data/share/gccxml-0.9/GCC/3.3/bits/stl_vector.h +992 -0
- data/share/gccxml-0.9/GCC/3.3/bits/valarray_meta.h +1135 -0
- data/share/gccxml-0.9/GCC/3.3/fstream +842 -0
- data/share/gccxml-0.9/GCC/3.3/gccxml_builtins.h +22 -0
- data/share/gccxml-0.9/GCC/3.3/sstream +638 -0
- data/share/gccxml-0.9/GCC/3.4/bits/gthr-default.h +669 -0
- data/share/gccxml-0.9/GCC/3.4/gccxml_builtins.h +91 -0
- data/share/gccxml-0.9/GCC/4.0/emmintrin.h +5 -0
- data/share/gccxml-0.9/GCC/4.0/gccxml_apple_emmintrin.h +1037 -0
- data/share/gccxml-0.9/GCC/4.0/gccxml_apple_mmintrin.h +669 -0
- data/share/gccxml-0.9/GCC/4.0/gccxml_apple_xmmintrin.h +870 -0
- data/share/gccxml-0.9/GCC/4.0/gccxml_builtins.h +128 -0
- data/share/gccxml-0.9/GCC/4.0/gccxml_gnu_emmintrin.h +977 -0
- data/share/gccxml-0.9/GCC/4.0/gccxml_gnu_mmintrin.h +636 -0
- data/share/gccxml-0.9/GCC/4.0/gccxml_gnu_xmmintrin.h +833 -0
- data/share/gccxml-0.9/GCC/4.0/mmintrin.h +5 -0
- data/share/gccxml-0.9/GCC/4.0/xmmintrin.h +5 -0
- data/share/gccxml-0.9/GCC/4.1/bits/gthr-default.h +622 -0
- data/share/gccxml-0.9/GCC/4.1/emmintrin.h +5 -0
- data/share/gccxml-0.9/GCC/4.1/gccxml_apple_emmintrin.h +1509 -0
- data/share/gccxml-0.9/GCC/4.1/gccxml_apple_mmintrin.h +942 -0
- data/share/gccxml-0.9/GCC/4.1/gccxml_apple_xmmintrin.h +1192 -0
- data/share/gccxml-0.9/GCC/4.1/gccxml_builtins.h +131 -0
- data/share/gccxml-0.9/GCC/4.1/gccxml_gnu_emmintrin.h +1004 -0
- data/share/gccxml-0.9/GCC/4.1/gccxml_gnu_mmintrin.h +637 -0
- data/share/gccxml-0.9/GCC/4.1/gccxml_gnu_xmmintrin.h +834 -0
- data/share/gccxml-0.9/GCC/4.1/mmintrin.h +5 -0
- data/share/gccxml-0.9/GCC/4.1/xmmintrin.h +5 -0
- data/share/gccxml-0.9/GCC/4.2/emmintrin.h +5 -0
- data/share/gccxml-0.9/GCC/4.2/gccxml_apple_emmintrin.h +1509 -0
- data/share/gccxml-0.9/GCC/4.2/gccxml_apple_mmintrin.h +942 -0
- data/share/gccxml-0.9/GCC/4.2/gccxml_apple_xmmintrin.h +1192 -0
- data/share/gccxml-0.9/GCC/4.2/gccxml_builtins.h +131 -0
- data/share/gccxml-0.9/GCC/4.2/gccxml_gnu_emmintrin.h +1013 -0
- data/share/gccxml-0.9/GCC/4.2/gccxml_gnu_mmintrin.h +663 -0
- data/share/gccxml-0.9/GCC/4.2/gccxml_gnu_xmmintrin.h +860 -0
- data/share/gccxml-0.9/GCC/4.2/mmintrin.h +5 -0
- data/share/gccxml-0.9/GCC/4.2/xmmintrin.h +5 -0
- data/share/gccxml-0.9/GCC/4.3/emmintrin.h +1043 -0
- data/share/gccxml-0.9/GCC/4.3/gccxml_builtins.h +183 -0
- data/share/gccxml-0.9/GCC/4.3/mmintrin.h +663 -0
- data/share/gccxml-0.9/GCC/4.3/xmmintrin.h +867 -0
- data/share/gccxml-0.9/GCC/4.4/bits/c++config.h +1431 -0
- data/share/gccxml-0.9/GCC/4.4/emmintrin.h +1041 -0
- data/share/gccxml-0.9/GCC/4.4/gccxml_builtins.h +153 -0
- data/share/gccxml-0.9/GCC/4.4/mmintrin.h +662 -0
- data/share/gccxml-0.9/GCC/4.4/xmmintrin.h +864 -0
- data/share/gccxml-0.9/GCC/4.5/gccxml_builtins.h +154 -0
- data/share/gccxml-0.9/GCC/4.5/iomanip +349 -0
- data/share/gccxml-0.9/GCC/COPYING.RUNTIME +73 -0
- data/share/gccxml-0.9/GCC/COPYING3 +674 -0
- data/share/gccxml-0.9/IBM/8.0/adapt_headers.sh +34 -0
- data/share/gccxml-0.9/IBM/8.0/stdlib.h.patch +27 -0
- data/share/gccxml-0.9/IBM/8.0/xstring.patch +19 -0
- data/share/gccxml-0.9/IBM/README +8 -0
- data/share/gccxml-0.9/IBM/find_flags +51 -0
- data/share/gccxml-0.9/IBM/find_flags_common +48 -0
- data/share/gccxml-0.9/Intel/find_flags +56 -0
- data/share/gccxml-0.9/Intel/pthread.h +16 -0
- data/share/gccxml-0.9/MIPSpro/7.3/exception +9 -0
- data/share/gccxml-0.9/MIPSpro/7.3/gccxml_mpro_internals.h +21 -0
- data/share/gccxml-0.9/MIPSpro/7.3/iomanip +161 -0
- data/share/gccxml-0.9/MIPSpro/7.3/ostream +9 -0
- data/share/gccxml-0.9/MIPSpro/7.3/stddef.h +9 -0
- data/share/gccxml-0.9/MIPSpro/7.3/stl_config.h +9 -0
- data/share/gccxml-0.9/MIPSpro/7.3/stl_locale.h +17 -0
- data/share/gccxml-0.9/MIPSpro/7.3/stl_monetary.h +14 -0
- data/share/gccxml-0.9/MIPSpro/7.3/stl_numeric_facets.h +13 -0
- data/share/gccxml-0.9/MIPSpro/7.3/stl_threads.h +11 -0
- data/share/gccxml-0.9/MIPSpro/7.3/string +18 -0
- data/share/gccxml-0.9/MIPSpro/find_flags +70 -0
- data/share/gccxml-0.9/MIPSpro/mipspro_defs.cxx +63 -0
- data/share/gccxml-0.9/Sun/5.8/Cstd.patch +156 -0
- data/share/gccxml-0.9/Sun/5.8/adapt_headers.sh +32 -0
- data/share/gccxml-0.9/Sun/5.8/std-5.10.patch +22 -0
- data/share/gccxml-0.9/Sun/README +8 -0
- data/share/gccxml-0.9/Sun/find_flags +51 -0
- data/share/gccxml-0.9/Sun/find_flags_common +42 -0
- data/share/gccxml-0.9/gccxml_config +2 -0
- data/share/gccxml-0.9/gccxml_identify_compiler.cc +13 -0
- data/share/man/man1/gccxml.1 +246 -0
- metadata +243 -0
@@ -0,0 +1,162 @@
|
|
1
|
+
// Character traits template for the -*- C++ -*- string classes.
|
2
|
+
// Copyright (C) 1994 Free Software Foundation
|
3
|
+
|
4
|
+
// This file is part of the GNU ANSI C++ Library. This library is free
|
5
|
+
// software; you can redistribute it and/or modify it under the
|
6
|
+
// terms of the GNU General Public License as published by the
|
7
|
+
// Free Software Foundation; either version 2, or (at your option)
|
8
|
+
// any later version.
|
9
|
+
|
10
|
+
// This library is distributed in the hope that it will be useful,
|
11
|
+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13
|
+
// GNU General Public License for more details.
|
14
|
+
|
15
|
+
// You should have received a copy of the GNU General Public License
|
16
|
+
// along with this library; see the file COPYING. If not, write to the Free
|
17
|
+
// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
18
|
+
|
19
|
+
// As a special exception, if you link this library with files
|
20
|
+
// compiled with a GNU compiler to produce an executable, this does not cause
|
21
|
+
// the resulting executable to be covered by the GNU General Public License.
|
22
|
+
// This exception does not however invalidate any other reasons why
|
23
|
+
// the executable file might be covered by the GNU General Public License.
|
24
|
+
|
25
|
+
// Written by Jason Merrill based upon the specification by Takanori Adachi
|
26
|
+
// in ANSI X3J16/94-0013R2.
|
27
|
+
|
28
|
+
#ifndef __STRING_CHAR_TRAITS__
|
29
|
+
#define __STRING_CHAR_TRAITS__
|
30
|
+
|
31
|
+
#ifdef __GNUG__
|
32
|
+
// For string_char_traits <char>
|
33
|
+
#pragma interface "std/straits.h"
|
34
|
+
#endif
|
35
|
+
|
36
|
+
#include <cstddef>
|
37
|
+
|
38
|
+
extern "C++" {
|
39
|
+
template <class charT>
|
40
|
+
struct string_char_traits {
|
41
|
+
typedef charT char_type; // for users to acquire the basic character type
|
42
|
+
|
43
|
+
// constraints
|
44
|
+
|
45
|
+
static void assign (char_type& c1, const char_type& c2)
|
46
|
+
{ c1 = c2; }
|
47
|
+
static bool eq (const char_type& c1, const char_type& c2)
|
48
|
+
{ return (c1 == c2); }
|
49
|
+
static bool ne (const char_type& c1, const char_type& c2)
|
50
|
+
{ return !(c1 == c2); }
|
51
|
+
static bool lt (const char_type& c1, const char_type& c2)
|
52
|
+
{ return (c1 < c2); }
|
53
|
+
static char_type eos () { return char_type(); } // the null character
|
54
|
+
static bool is_del(char_type a) { return 0; }
|
55
|
+
// characteristic function for delimiters of charT
|
56
|
+
|
57
|
+
// speed-up functions
|
58
|
+
|
59
|
+
static int compare (const char_type* s1, const char_type* s2, size_t n)
|
60
|
+
{
|
61
|
+
size_t i;
|
62
|
+
for (i = 0; i < n; ++i)
|
63
|
+
if (ne (s1[i], s2[i]))
|
64
|
+
return lt (s1[i], s2[i]) ? -1 : 1;
|
65
|
+
|
66
|
+
return 0;
|
67
|
+
}
|
68
|
+
|
69
|
+
static size_t length (const char_type* s)
|
70
|
+
{
|
71
|
+
size_t l = 0;
|
72
|
+
while (ne (*s++, eos ()))
|
73
|
+
++l;
|
74
|
+
return l;
|
75
|
+
}
|
76
|
+
|
77
|
+
static char_type* copy (char_type* s1, const char_type* s2, size_t n)
|
78
|
+
{
|
79
|
+
for (; n--; )
|
80
|
+
assign (s1[n], s2[n]);
|
81
|
+
return s1;
|
82
|
+
}
|
83
|
+
|
84
|
+
static char_type* move (char_type* s1, const char_type* s2, size_t n)
|
85
|
+
{
|
86
|
+
char_type a[n];
|
87
|
+
size_t i;
|
88
|
+
for (i = 0; i < n; ++i)
|
89
|
+
assign (a[i], s2[i]);
|
90
|
+
for (i = 0; i < n; ++i)
|
91
|
+
assign (s1[i], a[i]);
|
92
|
+
return s1;
|
93
|
+
}
|
94
|
+
|
95
|
+
static char_type* set (char_type* s1, const char_type& c, size_t n)
|
96
|
+
{
|
97
|
+
for (; n--; )
|
98
|
+
assign (s1[n], c);
|
99
|
+
return s1;
|
100
|
+
}
|
101
|
+
};
|
102
|
+
|
103
|
+
class istream;
|
104
|
+
class ostream;
|
105
|
+
#include <cctype>
|
106
|
+
#include <cstring>
|
107
|
+
|
108
|
+
template <>
|
109
|
+
struct string_char_traits <char> {
|
110
|
+
typedef char char_type;
|
111
|
+
|
112
|
+
static void assign (char_type& c1, const char_type& c2)
|
113
|
+
{ c1 = c2; }
|
114
|
+
static bool eq (const char_type & c1, const char_type& c2)
|
115
|
+
{ return (c1 == c2); }
|
116
|
+
static bool ne (const char_type& c1, const char_type& c2)
|
117
|
+
{ return (c1 != c2); }
|
118
|
+
static bool lt (const char_type& c1, const char_type& c2)
|
119
|
+
{ return (c1 < c2); }
|
120
|
+
static char_type eos () { return 0; }
|
121
|
+
static bool is_del(char_type a) { return isspace(a); }
|
122
|
+
|
123
|
+
static int compare (const char_type* s1, const char_type* s2, size_t n)
|
124
|
+
{ return memcmp (s1, s2, n); }
|
125
|
+
static size_t length (const char_type* s)
|
126
|
+
{ return strlen (s); }
|
127
|
+
static char_type* copy (char_type* s1, const char_type* s2, size_t n)
|
128
|
+
{ return (char_type*) memcpy (s1, s2, n); }
|
129
|
+
static char_type* move (char_type* s1, const char_type* s2, size_t n)
|
130
|
+
{ return (char_type*) memmove (s1, s2, n); }
|
131
|
+
static char_type* set (char_type* s1, const char_type& c, size_t n)
|
132
|
+
{ return (char_type*) memset (s1, c, n); }
|
133
|
+
};
|
134
|
+
|
135
|
+
#if 0
|
136
|
+
#include <cwctype>
|
137
|
+
struct string_char_traits <wchar_t> {
|
138
|
+
typedef wchar_t char_type;
|
139
|
+
|
140
|
+
static void assign (char_type& c1, const char_type& c2)
|
141
|
+
{ c1 = c2; }
|
142
|
+
static bool eq (const char_type & c1, const char_type& c2)
|
143
|
+
{ return (c1 == c2); }
|
144
|
+
static bool ne (const char_type& c1, const char_type& c2)
|
145
|
+
{ return (c1 != c2); }
|
146
|
+
static bool lt (const char_type& c1, const char_type& c2)
|
147
|
+
{ return (c1 < c2); }
|
148
|
+
static char_type eos () { return 0; }
|
149
|
+
static bool is_del(char_type a) { return iswspace(a); }
|
150
|
+
|
151
|
+
static int compare (const char_type* s1, const char_type* s2, size_t n)
|
152
|
+
{ return wmemcmp (s1, s2, n); }
|
153
|
+
static size_t length (const char_type* s)
|
154
|
+
{ return wcslen (s); }
|
155
|
+
static char_type* copy (char_type* s1, const char_type* s2, size_t n)
|
156
|
+
{ return wmemcpy (s1, s2, n); }
|
157
|
+
static char_type* set (char_type* s1, const char_type& c, size_t n)
|
158
|
+
{ return wmemset (s1, c, n); }
|
159
|
+
};
|
160
|
+
#endif
|
161
|
+
} // extern "C++"
|
162
|
+
#endif
|