gccxml_gem 0.9-x86-linux

Sign up to get free protection for your applications and to get access to all the features.
Files changed (126) hide show
  1. data/Rakefile +75 -0
  2. data/bin/gccxml +0 -0
  3. data/bin/gccxml_cc1plus +0 -0
  4. data/gccxml.rb +50 -0
  5. data/share/doc/gccxml-0.9/Copyright.txt +55 -0
  6. data/share/doc/gccxml-0.9/gccxml.html +168 -0
  7. data/share/doc/gccxml-0.9/gccxml.txt +293 -0
  8. data/share/gccxml-0.9/GCC/2.95/algorithm +76 -0
  9. data/share/gccxml-0.9/GCC/2.95/bitset +17 -0
  10. data/share/gccxml-0.9/GCC/2.95/cctype +24 -0
  11. data/share/gccxml-0.9/GCC/2.95/clocale +14 -0
  12. data/share/gccxml-0.9/GCC/2.95/cmath +33 -0
  13. data/share/gccxml-0.9/GCC/2.95/complex +38 -0
  14. data/share/gccxml-0.9/GCC/2.95/csetjmp +13 -0
  15. data/share/gccxml-0.9/GCC/2.95/csignal +14 -0
  16. data/share/gccxml-0.9/GCC/2.95/cstdarg +12 -0
  17. data/share/gccxml-0.9/GCC/2.95/cstddef +13 -0
  18. data/share/gccxml-0.9/GCC/2.95/cstdio +55 -0
  19. data/share/gccxml-0.9/GCC/2.95/cstdlib +66 -0
  20. data/share/gccxml-0.9/GCC/2.95/cstring +34 -0
  21. data/share/gccxml-0.9/GCC/2.95/ctime +24 -0
  22. data/share/gccxml-0.9/GCC/2.95/cwchar +65 -0
  23. data/share/gccxml-0.9/GCC/2.95/cwctype +31 -0
  24. data/share/gccxml-0.9/GCC/2.95/deque +19 -0
  25. data/share/gccxml-0.9/GCC/2.95/exception +20 -0
  26. data/share/gccxml-0.9/GCC/2.95/fstream +23 -0
  27. data/share/gccxml-0.9/GCC/2.95/functional +64 -0
  28. data/share/gccxml-0.9/GCC/2.95/gccxml_bitset +1066 -0
  29. data/share/gccxml-0.9/GCC/2.95/iomanip +20 -0
  30. data/share/gccxml-0.9/GCC/2.95/iosfwd +20 -0
  31. data/share/gccxml-0.9/GCC/2.95/iostream +27 -0
  32. data/share/gccxml-0.9/GCC/2.95/iterator +39 -0
  33. data/share/gccxml-0.9/GCC/2.95/list +19 -0
  34. data/share/gccxml-0.9/GCC/2.95/map +20 -0
  35. data/share/gccxml-0.9/GCC/2.95/memory +21 -0
  36. data/share/gccxml-0.9/GCC/2.95/new +13 -0
  37. data/share/gccxml-0.9/GCC/2.95/numeric +15 -0
  38. data/share/gccxml-0.9/GCC/2.95/pthread.h +16 -0
  39. data/share/gccxml-0.9/GCC/2.95/queue +20 -0
  40. data/share/gccxml-0.9/GCC/2.95/set +20 -0
  41. data/share/gccxml-0.9/GCC/2.95/sstream +24 -0
  42. data/share/gccxml-0.9/GCC/2.95/stack +19 -0
  43. data/share/gccxml-0.9/GCC/2.95/std/bastring.cc +524 -0
  44. data/share/gccxml-0.9/GCC/2.95/std/complext.h +397 -0
  45. data/share/gccxml-0.9/GCC/2.95/std/dcomplex.h +92 -0
  46. data/share/gccxml-0.9/GCC/2.95/std/fcomplex.h +88 -0
  47. data/share/gccxml-0.9/GCC/2.95/std/gslice_array.h +170 -0
  48. data/share/gccxml-0.9/GCC/2.95/std/indirect_array.h +157 -0
  49. data/share/gccxml-0.9/GCC/2.95/std/ldcomplex.h +96 -0
  50. data/share/gccxml-0.9/GCC/2.95/std/mask_array.h +154 -0
  51. data/share/gccxml-0.9/GCC/2.95/std/slice_array.h +156 -0
  52. data/share/gccxml-0.9/GCC/2.95/std/std_valarray.h +728 -0
  53. data/share/gccxml-0.9/GCC/2.95/std/straits.h +162 -0
  54. data/share/gccxml-0.9/GCC/2.95/std/valarray_meta.h +1035 -0
  55. data/share/gccxml-0.9/GCC/2.95/stdexcept +17 -0
  56. data/share/gccxml-0.9/GCC/2.95/stl_alloc.h +1057 -0
  57. data/share/gccxml-0.9/GCC/2.95/stl_bvector.h +836 -0
  58. data/share/gccxml-0.9/GCC/2.95/stl_deque.h +1699 -0
  59. data/share/gccxml-0.9/GCC/2.95/stl_list.h +843 -0
  60. data/share/gccxml-0.9/GCC/2.95/stl_tree.h +1331 -0
  61. data/share/gccxml-0.9/GCC/2.95/stl_vector.h +828 -0
  62. data/share/gccxml-0.9/GCC/2.95/string +26 -0
  63. data/share/gccxml-0.9/GCC/2.95/strstream +23 -0
  64. data/share/gccxml-0.9/GCC/2.95/typeinfo +11 -0
  65. data/share/gccxml-0.9/GCC/2.95/utility +25 -0
  66. data/share/gccxml-0.9/GCC/2.95/valarray +52 -0
  67. data/share/gccxml-0.9/GCC/2.95/vector +19 -0
  68. data/share/gccxml-0.9/GCC/2.96/sstream +305 -0
  69. data/share/gccxml-0.9/GCC/3.0/pthread.h +16 -0
  70. data/share/gccxml-0.9/GCC/3.1/pthread.h +16 -0
  71. data/share/gccxml-0.9/GCC/3.2/bits/fstream.tcc +500 -0
  72. data/share/gccxml-0.9/GCC/3.2/bits/istream.tcc +1207 -0
  73. data/share/gccxml-0.9/GCC/3.2/bits/locale_facets.h +1810 -0
  74. data/share/gccxml-0.9/GCC/3.2/bits/locale_facets.tcc +2397 -0
  75. data/share/gccxml-0.9/GCC/3.2/bits/messages_members.h +108 -0
  76. data/share/gccxml-0.9/GCC/3.2/bits/ostream.tcc +713 -0
  77. data/share/gccxml-0.9/GCC/3.2/bits/sstream.tcc +241 -0
  78. data/share/gccxml-0.9/GCC/3.2/bits/stl_deque.h +1682 -0
  79. data/share/gccxml-0.9/GCC/3.2/bits/stl_list.h +989 -0
  80. data/share/gccxml-0.9/GCC/3.2/bits/stl_tree.h +1462 -0
  81. data/share/gccxml-0.9/GCC/3.2/bits/stl_vector.h +1085 -0
  82. data/share/gccxml-0.9/GCC/3.2/bits/valarray_meta.h +1063 -0
  83. data/share/gccxml-0.9/GCC/3.2/fstream +579 -0
  84. data/share/gccxml-0.9/GCC/3.2/pthread.h +16 -0
  85. data/share/gccxml-0.9/GCC/3.2/sstream +384 -0
  86. data/share/gccxml-0.9/GCC/3.3/bits/fstream.tcc +530 -0
  87. data/share/gccxml-0.9/GCC/3.3/bits/list.tcc +378 -0
  88. data/share/gccxml-0.9/GCC/3.3/bits/locale_facets.h +2050 -0
  89. data/share/gccxml-0.9/GCC/3.3/bits/messages_members.h +108 -0
  90. data/share/gccxml-0.9/GCC/3.3/bits/sstream.tcc +243 -0
  91. data/share/gccxml-0.9/GCC/3.3/bits/stl_deque.h +1603 -0
  92. data/share/gccxml-0.9/GCC/3.3/bits/stl_list.h +1167 -0
  93. data/share/gccxml-0.9/GCC/3.3/bits/stl_tree.h +1462 -0
  94. data/share/gccxml-0.9/GCC/3.3/bits/stl_vector.h +992 -0
  95. data/share/gccxml-0.9/GCC/3.3/bits/valarray_meta.h +1135 -0
  96. data/share/gccxml-0.9/GCC/3.3/fstream +842 -0
  97. data/share/gccxml-0.9/GCC/3.3/gccxml_builtins.h +22 -0
  98. data/share/gccxml-0.9/GCC/3.3/sstream +638 -0
  99. data/share/gccxml-0.9/GCC/3.4/gccxml_builtins.h +91 -0
  100. data/share/gccxml-0.9/GCC/4.0/gccxml_builtins.h +128 -0
  101. data/share/gccxml-0.9/GCC/4.1/bits/gthr-default.h +618 -0
  102. data/share/gccxml-0.9/GCC/4.1/gccxml_builtins.h +131 -0
  103. data/share/gccxml-0.9/GCC/4.2/gccxml_builtins.h +131 -0
  104. data/share/gccxml-0.9/GCC/find_flags +105 -0
  105. data/share/gccxml-0.9/Intel/find_flags +56 -0
  106. data/share/gccxml-0.9/Intel/pthread.h +16 -0
  107. data/share/gccxml-0.9/MIPSpro/7.3/exception +9 -0
  108. data/share/gccxml-0.9/MIPSpro/7.3/gccxml_mpro_internals.h +21 -0
  109. data/share/gccxml-0.9/MIPSpro/7.3/iomanip +161 -0
  110. data/share/gccxml-0.9/MIPSpro/7.3/ostream +9 -0
  111. data/share/gccxml-0.9/MIPSpro/7.3/stddef.h +9 -0
  112. data/share/gccxml-0.9/MIPSpro/7.3/stl_config.h +9 -0
  113. data/share/gccxml-0.9/MIPSpro/7.3/stl_locale.h +17 -0
  114. data/share/gccxml-0.9/MIPSpro/7.3/stl_monetary.h +14 -0
  115. data/share/gccxml-0.9/MIPSpro/7.3/stl_numeric_facets.h +13 -0
  116. data/share/gccxml-0.9/MIPSpro/7.3/stl_threads.h +11 -0
  117. data/share/gccxml-0.9/MIPSpro/7.3/string +18 -0
  118. data/share/gccxml-0.9/MIPSpro/find_flags +137 -0
  119. data/share/gccxml-0.9/Sun/5.8/adaptation.patch +168 -0
  120. data/share/gccxml-0.9/Sun/README +8 -0
  121. data/share/gccxml-0.9/Sun/adapt_headers.sh +24 -0
  122. data/share/gccxml-0.9/Sun/find_flags +69 -0
  123. data/share/gccxml-0.9/gccxml_config +2 -0
  124. data/share/gccxml-0.9/gccxml_find_flags +93 -0
  125. data/share/man/man1/gccxml.1 +246 -0
  126. metadata +204 -0
@@ -0,0 +1,241 @@
1
+ // String based streams -*- C++ -*-
2
+
3
+ // Copyright (C) 1997, 1998, 1999, 2001, 2002
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 2, 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
+ // You should have received a copy of the GNU General Public License along
18
+ // with this library; see the file COPYING. If not, write to the Free
19
+ // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
20
+ // USA.
21
+
22
+ // As a special exception, you may use this file as part of a free software
23
+ // library without restriction. Specifically, if other files instantiate
24
+ // templates or use macros or inline functions from this file, or you compile
25
+ // this file and link it with other files to produce an executable, this
26
+ // file does not by itself cause the resulting executable to be covered by
27
+ // the GNU General Public License. This exception does not however
28
+ // invalidate any other reasons why the executable file might be covered by
29
+ // the GNU General Public License.
30
+
31
+ //
32
+ // ISO C++ 14882: 27.7 String-based streams
33
+ //
34
+
35
+ #ifndef _CPP_BITS_SSTREAM_TCC
36
+ #define _CPP_BITS_SSTREAM_TCC 1
37
+
38
+ #pragma GCC system_header
39
+
40
+ #include <sstream>
41
+
42
+ namespace std
43
+ {
44
+ template <class _CharT, class _Traits, class _Alloc>
45
+ typename basic_stringbuf<_CharT, _Traits, _Alloc>::int_type
46
+ basic_stringbuf<_CharT, _Traits, _Alloc>::
47
+ pbackfail(int_type __c)
48
+ {
49
+ int_type __ret = traits_type::eof();
50
+ bool __testeof = traits_type::eq_int_type(__c, traits_type::eof());
51
+ bool __testpos = _M_in_cur && _M_in_beg < _M_in_cur;
52
+
53
+ // Try to put back __c into input sequence in one of three ways.
54
+ // Order these tests done in is unspecified by the standard.
55
+ if (__testpos)
56
+ {
57
+ if (traits_type::eq(traits_type::to_char_type(__c), this->gptr()[-1])
58
+ && !__testeof)
59
+ {
60
+ --_M_in_cur;
61
+ __ret = __c;
62
+ }
63
+ else if (!__testeof)
64
+ {
65
+ --_M_in_cur;
66
+ *_M_in_cur = traits_type::to_char_type(__c);
67
+ __ret = __c;
68
+ }
69
+ else if (__testeof)
70
+ {
71
+ --_M_in_cur;
72
+ __ret = traits_type::not_eof(__c);
73
+ }
74
+ }
75
+ return __ret;
76
+ }
77
+
78
+ template <class _CharT, class _Traits, class _Alloc>
79
+ typename basic_stringbuf<_CharT, _Traits, _Alloc>::int_type
80
+ basic_stringbuf<_CharT, _Traits, _Alloc>::
81
+ overflow(int_type __c)
82
+ {
83
+ int_type __ret = traits_type::eof();
84
+ bool __testeof = traits_type::eq_int_type(__c, __ret);
85
+ bool __testwrite = _M_out_cur < _M_buf + _M_buf_size;
86
+ bool __testout = _M_mode & ios_base::out;
87
+
88
+ // Try to append __c into output sequence in one of two ways.
89
+ // Order these tests done in is unspecified by the standard.
90
+ if (__testout)
91
+ {
92
+ if (!__testeof)
93
+ {
94
+ __size_type __len = max(_M_buf_size, _M_buf_size_opt);
95
+ __len *= 2;
96
+
97
+ if (__testwrite)
98
+ __ret = this->sputc(traits_type::to_char_type(__c));
99
+ else if (__len <= _M_string.max_size())
100
+ {
101
+ // Force-allocate, re-sync.
102
+ _M_string = this->str();
103
+ _M_string.reserve(__len);
104
+ _M_buf_size = __len;
105
+ _M_really_sync(_M_in_cur - _M_in_beg,
106
+ _M_out_cur - _M_out_beg);
107
+ *_M_out_cur = traits_type::to_char_type(__c);
108
+ _M_out_cur_move(1);
109
+ __ret = __c;
110
+ }
111
+ }
112
+ else
113
+ __ret = traits_type::not_eof(__c);
114
+ }
115
+ return __ret;
116
+ }
117
+
118
+ template <class _CharT, class _Traits, class _Alloc>
119
+ typename basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type
120
+ basic_stringbuf<_CharT, _Traits, _Alloc>::
121
+ seekoff(off_type __off, ios_base::seekdir __way, ios_base::openmode __mode)
122
+ {
123
+ pos_type __ret = pos_type(off_type(-1));
124
+ bool __testin = (ios_base::in & _M_mode & __mode) != 0;
125
+ bool __testout = (ios_base::out & _M_mode & __mode) != 0;
126
+ bool __testboth = __testin && __testout && __way != ios_base::cur;
127
+ __testin &= !(__mode & ios_base::out);
128
+ __testout &= !(__mode & ios_base::in);
129
+
130
+ if (_M_buf_size && (__testin || __testout || __testboth))
131
+ {
132
+ char_type* __beg = _M_buf;
133
+ char_type* __curi = NULL;
134
+ char_type* __curo = NULL;
135
+ char_type* __endi = NULL;
136
+ char_type* __endo = NULL;
137
+
138
+ if (__testin || __testboth)
139
+ {
140
+ __curi = this->gptr();
141
+ __endi = this->egptr();
142
+ }
143
+ if (__testout || __testboth)
144
+ {
145
+ __curo = this->pptr();
146
+ __endo = this->epptr();
147
+ }
148
+
149
+ off_type __newoffi = 0;
150
+ off_type __newoffo = 0;
151
+ if (__way == ios_base::cur)
152
+ {
153
+ __newoffi = __curi - __beg;
154
+ __newoffo = __curo - __beg;
155
+ }
156
+ else if (__way == ios_base::end)
157
+ {
158
+ __newoffi = __endi - __beg;
159
+ __newoffo = __endo - __beg;
160
+ }
161
+
162
+ if ((__testin || __testboth)
163
+ && __newoffi + __off >= 0 && __endi - __beg >= __newoffi + __off)
164
+ {
165
+ _M_in_cur = __beg + __newoffi + __off;
166
+ __ret = pos_type(__newoffi);
167
+ }
168
+ if ((__testout || __testboth)
169
+ && __newoffo + __off >= 0 && __endo - __beg >= __newoffo + __off)
170
+ {
171
+ _M_out_cur_move(__newoffo + __off - (_M_out_cur - __beg));
172
+ __ret = pos_type(__newoffo);
173
+ }
174
+ }
175
+ return __ret;
176
+ }
177
+
178
+ template <class _CharT, class _Traits, class _Alloc>
179
+ typename basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type
180
+ basic_stringbuf<_CharT, _Traits, _Alloc>::
181
+ seekpos(pos_type __sp, ios_base::openmode __mode)
182
+ {
183
+ pos_type __ret = pos_type(off_type(-1));
184
+
185
+ if (_M_buf_size)
186
+ {
187
+ off_type __pos = __sp; // Use streamoff operator to do conversion.
188
+ char_type* __beg = NULL;
189
+ char_type* __end = NULL;
190
+ bool __testin = (ios_base::in & _M_mode & __mode) != 0;
191
+ bool __testout = (ios_base::out & _M_mode & __mode) != 0;
192
+ bool __testboth = __testin && __testout;
193
+ __testin &= !(__mode & ios_base::out);
194
+ __testout &= !(__mode & ios_base::in);
195
+
196
+ // NB: Ordered.
197
+ bool __testposi = false;
198
+ bool __testposo = false;
199
+ if (__testin || __testboth)
200
+ {
201
+ __beg = this->eback();
202
+ __end = this->egptr();
203
+ if (0 <= __pos && __pos <= __end - __beg)
204
+ __testposi = true;
205
+ }
206
+ if (__testout || __testboth)
207
+ {
208
+ __beg = this->pbase();
209
+ __end = _M_buf + _M_buf_size;
210
+ if (0 <= __pos && __pos <= __end - __beg)
211
+ __testposo = true;
212
+ }
213
+ if (__testposi || __testposo)
214
+ {
215
+ if (__testposi)
216
+ _M_in_cur = _M_in_beg + __pos;
217
+ if (__testposo)
218
+ _M_out_cur_move((__pos) - (_M_out_cur - __beg));
219
+ __ret = pos_type(off_type(__pos));
220
+ }
221
+ }
222
+ return __ret;
223
+ }
224
+
225
+ // Inhibit implicit instantiations for required instantiations,
226
+ // which are defined via explicit instantiations elsewhere.
227
+ // NB: This syntax is a GNU extension.
228
+ extern template class basic_stringbuf<char>;
229
+ extern template class basic_istringstream<char>;
230
+ extern template class basic_ostringstream<char>;
231
+ extern template class basic_stringstream<char>;
232
+
233
+ #ifdef _GLIBCPP_USE_WCHAR_T
234
+ extern template class basic_stringbuf<wchar_t>;
235
+ extern template class basic_istringstream<wchar_t>;
236
+ extern template class basic_ostringstream<wchar_t>;
237
+ extern template class basic_stringstream<wchar_t>;
238
+ #endif
239
+ } // namespace std
240
+
241
+ #endif