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,20 @@
1
+ #ifndef GCCXML_IOMANIP
2
+ #define GCCXML_IOMANIP
3
+
4
+ #include_next <iomanip>
5
+
6
+ // GCC 2.95 does not conform.
7
+ namespace std
8
+ {
9
+ using ::dec;
10
+ using ::hex;
11
+ using ::oct;
12
+ using ::setw;
13
+ using ::setfill;
14
+ using ::setprecision;
15
+ using ::setbase;
16
+ using ::setiosflags;
17
+ using ::resetiosflags;
18
+ }
19
+
20
+ #endif
@@ -0,0 +1,20 @@
1
+ #ifndef GCCXML_IOSFWD
2
+ #define GCCXML_IOSFWD
3
+
4
+ #include_next <iosfwd>
5
+
6
+ // GCC 2.95 does not conform.
7
+ namespace std
8
+ {
9
+ using ::ios;
10
+ using ::streambuf;
11
+ using ::istream;
12
+ using ::ostream;
13
+ using ::iostream;
14
+ using ::filebuf;
15
+ using ::ifstream;
16
+ using ::ofstream;
17
+ using ::fstream;
18
+ }
19
+
20
+ #endif
@@ -0,0 +1,27 @@
1
+ #ifndef GCCXML_IOSTREAM
2
+ #define GCCXML_IOSTREAM
3
+
4
+ #include_next <iostream>
5
+
6
+ // GCC 2.95 does not conform.
7
+ namespace std
8
+ {
9
+ using ::ios;
10
+ using ::streamoff;
11
+ using ::streampos;
12
+ using ::streamsize;
13
+ using ::streambuf;
14
+ using ::istream;
15
+ using ::ostream;
16
+ using ::iostream;
17
+ using ::dec;
18
+ using ::hex;
19
+ using ::oct;
20
+ using ::cin;
21
+ using ::cout;
22
+ using ::cerr;
23
+ using ::clog;
24
+ using ::endl;
25
+ }
26
+
27
+ #endif
@@ -0,0 +1,39 @@
1
+ #ifndef GCCXML_ITERATOR
2
+ #define GCCXML_ITERATOR
3
+
4
+ #include_next <iterator>
5
+
6
+ // 24.2
7
+ namespace std
8
+ {
9
+ using ::iterator_traits;
10
+ //using ::iterator;
11
+ using ::input_iterator_tag;
12
+ using ::output_iterator_tag;
13
+ using ::forward_iterator_tag;
14
+ using ::bidirectional_iterator_tag;
15
+ using ::random_access_iterator_tag;
16
+ using ::advance;
17
+ using ::distance;
18
+ using ::reverse_iterator;
19
+ using ::operator==;
20
+ using ::operator!=;
21
+ using ::operator<;
22
+ using ::operator>;
23
+ using ::operator<=;
24
+ using ::operator>=;
25
+ using ::operator+;
26
+ using ::operator-;
27
+ using ::back_insert_iterator;
28
+ using ::back_inserter;
29
+ using ::front_insert_iterator;
30
+ using ::front_inserter;
31
+ using ::insert_iterator;
32
+ using ::inserter;
33
+ using ::istream_iterator;
34
+ using ::ostream_iterator;
35
+ //using ::istreambuf_iterator;
36
+ //using ::ostreambuf_iterator;
37
+ }
38
+
39
+ #endif
@@ -0,0 +1,19 @@
1
+ #ifndef GCCXML_LIST
2
+ #define GCCXML_LIST
3
+
4
+ #include_next <list>
5
+
6
+ // 23.2
7
+ namespace std
8
+ {
9
+ using ::list;
10
+ using ::operator==;
11
+ using ::operator!=;
12
+ using ::operator<;
13
+ using ::operator>;
14
+ using ::operator<=;
15
+ using ::operator>=;
16
+ using ::swap;
17
+ }
18
+
19
+ #endif
@@ -0,0 +1,20 @@
1
+ #ifndef GCCXML_MAP
2
+ #define GCCXML_MAP
3
+
4
+ #include_next <map>
5
+
6
+ // 23.3/1
7
+ namespace std
8
+ {
9
+ using ::map;
10
+ using ::operator==;
11
+ using ::operator!=;
12
+ using ::operator<;
13
+ using ::operator>;
14
+ using ::operator<=;
15
+ using ::operator>=;
16
+ using ::swap;
17
+ using ::multimap;
18
+ }
19
+
20
+ #endif
@@ -0,0 +1,21 @@
1
+ #ifndef GCCXML_MEMORY
2
+ #define GCCXML_MEMORY
3
+
4
+ #include_next <memory>
5
+
6
+ // 20.4
7
+ namespace std
8
+ {
9
+ using ::allocator;
10
+ using ::operator==;
11
+ using ::operator!=;
12
+ using ::raw_storage_iterator;
13
+ using ::get_temporary_buffer;
14
+ using ::return_temporary_buffer;
15
+ using ::uninitialized_copy;
16
+ using ::uninitialized_fill;
17
+ using ::uninitialized_fill_n;
18
+ using ::auto_ptr;
19
+ }
20
+
21
+ #endif
@@ -0,0 +1,13 @@
1
+ #ifndef GCCXML_NEW
2
+ #define GCCXML_NEW
3
+
4
+ #include_next <new>
5
+
6
+ // 18.4
7
+ using std::bad_alloc;
8
+ using std::nothrow_t;
9
+ using std::nothrow;
10
+ using std::new_handler;
11
+ using std::set_new_handler;
12
+
13
+ #endif
@@ -0,0 +1,15 @@
1
+ #ifndef GCCXML_NUMERIC
2
+ #define GCCXML_NUMERIC
3
+
4
+ #include_next <numeric>
5
+
6
+ // 26.4
7
+ namespace std
8
+ {
9
+ using ::accumulate;
10
+ using ::inner_product;
11
+ using ::partial_sum;
12
+ using ::adjacent_difference;
13
+ }
14
+
15
+ #endif
@@ -0,0 +1,16 @@
1
+ #ifndef GCCXML_PTHREAD_H
2
+ #define GCCXML_PTHREAD_H
3
+
4
+ /* Some pthread.h files use __thread, which is a keyword for GCC 3.3.
5
+ Change the name for the duration of including pthread.h. */
6
+ #ifndef __thread
7
+ # define __thread gccxml__thread
8
+ # define gccxml__thread gccxml__thread
9
+ #endif
10
+ #include_next <pthread.h>
11
+ #ifdef gccxml__thread
12
+ # undef gccxml__thread
13
+ # undef __thread
14
+ #endif
15
+
16
+ #endif
@@ -0,0 +1,20 @@
1
+ #ifndef GCCXML_QUEUE
2
+ #define GCCXML_QUEUE
3
+
4
+ #include_next <queue>
5
+
6
+ // 23.2
7
+ namespace std
8
+ {
9
+ using ::queue;
10
+ using ::operator==;
11
+ using ::operator!=;
12
+ using ::operator<;
13
+ using ::operator>;
14
+ using ::operator<=;
15
+ using ::operator>=;
16
+ using ::swap;
17
+ using ::priority_queue;
18
+ }
19
+
20
+ #endif
@@ -0,0 +1,20 @@
1
+ #ifndef GCCXML_SET
2
+ #define GCCXML_SET
3
+
4
+ #include_next <set>
5
+
6
+ // 23.3/1
7
+ namespace std
8
+ {
9
+ using ::set;
10
+ using ::operator==;
11
+ using ::operator!=;
12
+ using ::operator<;
13
+ using ::operator>;
14
+ using ::operator<=;
15
+ using ::operator>=;
16
+ using ::swap;
17
+ using ::multiset;
18
+ }
19
+
20
+ #endif
@@ -0,0 +1,24 @@
1
+ #ifndef GCCXML_SSTREAM
2
+ #define GCCXML_SSTREAM
3
+
4
+ #include_next <sstream>
5
+
6
+ // GCC 2.95 does not conform.
7
+ namespace std
8
+ {
9
+ using ::ios;
10
+ using ::streamoff;
11
+ using ::streampos;
12
+ using ::streamsize;
13
+ using ::streambuf;
14
+ using ::istream;
15
+ using ::ostream;
16
+ using ::iostream;
17
+ }
18
+
19
+ using std::stringbuf;
20
+ using std::istringstream;
21
+ using std::ostringstream;
22
+ using std::stringstream;
23
+
24
+ #endif
@@ -0,0 +1,19 @@
1
+ #ifndef GCCXML_STACK
2
+ #define GCCXML_STACK
3
+
4
+ #include_next <stack>
5
+
6
+ // 23.2
7
+ namespace std
8
+ {
9
+ using ::stack;
10
+ using ::operator==;
11
+ using ::operator!=;
12
+ using ::operator<;
13
+ using ::operator>;
14
+ using ::operator<=;
15
+ using ::operator>=;
16
+ using ::swap;
17
+ }
18
+
19
+ #endif