jieba-rb 5.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (117) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +18 -0
  3. data/.gitmodules +3 -0
  4. data/.travis.yml +19 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +85 -0
  8. data/Rakefile +15 -0
  9. data/ext/cppjieba/.gitignore +17 -0
  10. data/ext/cppjieba/.travis.yml +22 -0
  11. data/ext/cppjieba/CMakeLists.txt +28 -0
  12. data/ext/cppjieba/ChangeLog.md +236 -0
  13. data/ext/cppjieba/README.md +285 -0
  14. data/ext/cppjieba/README_EN.md +111 -0
  15. data/ext/cppjieba/appveyor.yml +32 -0
  16. data/ext/cppjieba/deps/CMakeLists.txt +1 -0
  17. data/ext/cppjieba/deps/gtest/CMakeLists.txt +5 -0
  18. data/ext/cppjieba/deps/gtest/include/gtest/gtest-death-test.h +283 -0
  19. data/ext/cppjieba/deps/gtest/include/gtest/gtest-message.h +230 -0
  20. data/ext/cppjieba/deps/gtest/include/gtest/gtest-param-test.h +1421 -0
  21. data/ext/cppjieba/deps/gtest/include/gtest/gtest-param-test.h.pump +487 -0
  22. data/ext/cppjieba/deps/gtest/include/gtest/gtest-printers.h +796 -0
  23. data/ext/cppjieba/deps/gtest/include/gtest/gtest-spi.h +232 -0
  24. data/ext/cppjieba/deps/gtest/include/gtest/gtest-test-part.h +176 -0
  25. data/ext/cppjieba/deps/gtest/include/gtest/gtest-typed-test.h +259 -0
  26. data/ext/cppjieba/deps/gtest/include/gtest/gtest.h +2155 -0
  27. data/ext/cppjieba/deps/gtest/include/gtest/gtest_pred_impl.h +358 -0
  28. data/ext/cppjieba/deps/gtest/include/gtest/gtest_prod.h +58 -0
  29. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-death-test-internal.h +308 -0
  30. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-filepath.h +210 -0
  31. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-internal.h +1226 -0
  32. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-linked_ptr.h +233 -0
  33. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-param-util-generated.h +4822 -0
  34. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-param-util-generated.h.pump +301 -0
  35. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-param-util.h +619 -0
  36. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-port.h +1788 -0
  37. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-string.h +350 -0
  38. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-tuple.h +968 -0
  39. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-tuple.h.pump +336 -0
  40. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-type-util.h +3330 -0
  41. data/ext/cppjieba/deps/gtest/include/gtest/internal/gtest-type-util.h.pump +296 -0
  42. data/ext/cppjieba/deps/gtest/src/.deps/.dirstamp +0 -0
  43. data/ext/cppjieba/deps/gtest/src/.deps/gtest-all.Plo +681 -0
  44. data/ext/cppjieba/deps/gtest/src/.deps/gtest_main.Plo +509 -0
  45. data/ext/cppjieba/deps/gtest/src/.dirstamp +0 -0
  46. data/ext/cppjieba/deps/gtest/src/gtest-all.cc +48 -0
  47. data/ext/cppjieba/deps/gtest/src/gtest-death-test.cc +1234 -0
  48. data/ext/cppjieba/deps/gtest/src/gtest-filepath.cc +380 -0
  49. data/ext/cppjieba/deps/gtest/src/gtest-internal-inl.h +1038 -0
  50. data/ext/cppjieba/deps/gtest/src/gtest-port.cc +746 -0
  51. data/ext/cppjieba/deps/gtest/src/gtest-printers.cc +356 -0
  52. data/ext/cppjieba/deps/gtest/src/gtest-test-part.cc +110 -0
  53. data/ext/cppjieba/deps/gtest/src/gtest-typed-test.cc +110 -0
  54. data/ext/cppjieba/deps/gtest/src/gtest.cc +4898 -0
  55. data/ext/cppjieba/deps/gtest/src/gtest_main.cc +39 -0
  56. data/ext/cppjieba/deps/limonp/ArgvContext.hpp +70 -0
  57. data/ext/cppjieba/deps/limonp/BlockingQueue.hpp +49 -0
  58. data/ext/cppjieba/deps/limonp/BoundedBlockingQueue.hpp +67 -0
  59. data/ext/cppjieba/deps/limonp/BoundedQueue.hpp +65 -0
  60. data/ext/cppjieba/deps/limonp/Closure.hpp +206 -0
  61. data/ext/cppjieba/deps/limonp/Colors.hpp +31 -0
  62. data/ext/cppjieba/deps/limonp/Condition.hpp +38 -0
  63. data/ext/cppjieba/deps/limonp/Config.hpp +103 -0
  64. data/ext/cppjieba/deps/limonp/FileLock.hpp +74 -0
  65. data/ext/cppjieba/deps/limonp/ForcePublic.hpp +7 -0
  66. data/ext/cppjieba/deps/limonp/LocalVector.hpp +139 -0
  67. data/ext/cppjieba/deps/limonp/Logging.hpp +76 -0
  68. data/ext/cppjieba/deps/limonp/Md5.hpp +411 -0
  69. data/ext/cppjieba/deps/limonp/MutexLock.hpp +51 -0
  70. data/ext/cppjieba/deps/limonp/NonCopyable.hpp +21 -0
  71. data/ext/cppjieba/deps/limonp/StdExtension.hpp +159 -0
  72. data/ext/cppjieba/deps/limonp/StringUtil.hpp +365 -0
  73. data/ext/cppjieba/deps/limonp/Thread.hpp +44 -0
  74. data/ext/cppjieba/deps/limonp/ThreadPool.hpp +86 -0
  75. data/ext/cppjieba/dict/README.md +31 -0
  76. data/ext/cppjieba/dict/hmm_model.utf8 +34 -0
  77. data/ext/cppjieba/dict/idf.utf8 +258826 -0
  78. data/ext/cppjieba/dict/jieba.dict.utf8 +348982 -0
  79. data/ext/cppjieba/dict/pos_dict/char_state_tab.utf8 +6653 -0
  80. data/ext/cppjieba/dict/pos_dict/prob_emit.utf8 +166 -0
  81. data/ext/cppjieba/dict/pos_dict/prob_start.utf8 +259 -0
  82. data/ext/cppjieba/dict/pos_dict/prob_trans.utf8 +5222 -0
  83. data/ext/cppjieba/dict/stop_words.utf8 +1534 -0
  84. data/ext/cppjieba/dict/user.dict.utf8 +4 -0
  85. data/ext/cppjieba/include/cppjieba/DictTrie.hpp +227 -0
  86. data/ext/cppjieba/include/cppjieba/FullSegment.hpp +93 -0
  87. data/ext/cppjieba/include/cppjieba/HMMModel.hpp +129 -0
  88. data/ext/cppjieba/include/cppjieba/HMMSegment.hpp +190 -0
  89. data/ext/cppjieba/include/cppjieba/Jieba.hpp +108 -0
  90. data/ext/cppjieba/include/cppjieba/KeywordExtractor.hpp +153 -0
  91. data/ext/cppjieba/include/cppjieba/MPSegment.hpp +137 -0
  92. data/ext/cppjieba/include/cppjieba/MixSegment.hpp +109 -0
  93. data/ext/cppjieba/include/cppjieba/PosTagger.hpp +77 -0
  94. data/ext/cppjieba/include/cppjieba/PreFilter.hpp +54 -0
  95. data/ext/cppjieba/include/cppjieba/QuerySegment.hpp +90 -0
  96. data/ext/cppjieba/include/cppjieba/SegmentBase.hpp +46 -0
  97. data/ext/cppjieba/include/cppjieba/SegmentTagged.hpp +24 -0
  98. data/ext/cppjieba/include/cppjieba/TextRankExtractor.hpp +190 -0
  99. data/ext/cppjieba/include/cppjieba/Trie.hpp +174 -0
  100. data/ext/cppjieba/include/cppjieba/Unicode.hpp +215 -0
  101. data/ext/jieba/extconf.rb +28 -0
  102. data/ext/jieba/jieba.c +11 -0
  103. data/ext/jieba/jieba.h +11 -0
  104. data/ext/jieba/keyword.cc +92 -0
  105. data/ext/jieba/keyword.h +17 -0
  106. data/ext/jieba/segment.cc +107 -0
  107. data/ext/jieba/segment.h +17 -0
  108. data/ext/jieba/tagging.cc +76 -0
  109. data/ext/jieba/tagging.h +17 -0
  110. data/jieba_rb.gemspec +51 -0
  111. data/lib/jieba-rb.rb +66 -0
  112. data/lib/jieba_rb/version.rb +3 -0
  113. data/test/test_keyword.rb +17 -0
  114. data/test/test_segment.rb +32 -0
  115. data/test/test_tagging.rb +22 -0
  116. data/test/user.dict.utf8 +23 -0
  117. metadata +219 -0
@@ -0,0 +1,296 @@
1
+ $$ -*- mode: c++; -*-
2
+ $var n = 50 $$ Maximum length of type lists we want to support.
3
+ // Copyright 2008 Google Inc.
4
+ // All Rights Reserved.
5
+ //
6
+ // Redistribution and use in source and binary forms, with or without
7
+ // modification, are permitted provided that the following conditions are
8
+ // met:
9
+ //
10
+ // * Redistributions of source code must retain the above copyright
11
+ // notice, this list of conditions and the following disclaimer.
12
+ // * Redistributions in binary form must reproduce the above
13
+ // copyright notice, this list of conditions and the following disclaimer
14
+ // in the documentation and/or other materials provided with the
15
+ // distribution.
16
+ // * Neither the name of Google Inc. nor the names of its
17
+ // contributors may be used to endorse or promote products derived from
18
+ // this software without specific prior written permission.
19
+ //
20
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
+ //
32
+ // Author: wan@google.com (Zhanyong Wan)
33
+
34
+ // Type utilities needed for implementing typed and type-parameterized
35
+ // tests. This file is generated by a SCRIPT. DO NOT EDIT BY HAND!
36
+ //
37
+ // Currently we support at most $n types in a list, and at most $n
38
+ // type-parameterized tests in one type-parameterized test case.
39
+ // Please contact googletestframework@googlegroups.com if you need
40
+ // more.
41
+
42
+ #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_
43
+ #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_
44
+
45
+ #include "gtest/internal/gtest-port.h"
46
+ #include "gtest/internal/gtest-string.h"
47
+
48
+ // #ifdef __GNUC__ is too general here. It is possible to use gcc without using
49
+ // libstdc++ (which is where cxxabi.h comes from).
50
+ # ifdef __GLIBCXX__
51
+ # include <cxxabi.h>
52
+ # elif defined(__HP_aCC)
53
+ # include <acxx_demangle.h>
54
+ # endif // __GLIBCXX__
55
+
56
+ namespace testing {
57
+ namespace internal {
58
+
59
+ // GetTypeName<T>() returns a human-readable name of type T.
60
+ // NB: This function is also used in Google Mock, so don't move it inside of
61
+ // the typed-test-only section below.
62
+ template <typename T>
63
+ String GetTypeName() {
64
+ # if GTEST_HAS_RTTI
65
+
66
+ const char* const name = typeid(T).name();
67
+ # if defined(__GLIBCXX__) || defined(__HP_aCC)
68
+ int status = 0;
69
+ // gcc's implementation of typeid(T).name() mangles the type name,
70
+ // so we have to demangle it.
71
+ # ifdef __GLIBCXX__
72
+ using abi::__cxa_demangle;
73
+ # endif // __GLIBCXX__
74
+ char* const readable_name = __cxa_demangle(name, 0, 0, &status);
75
+ const String name_str(status == 0 ? readable_name : name);
76
+ free(readable_name);
77
+ return name_str;
78
+ # else
79
+ return name;
80
+ # endif // __GLIBCXX__ || __HP_aCC
81
+
82
+ # else
83
+
84
+ return "<type>";
85
+
86
+ # endif // GTEST_HAS_RTTI
87
+ }
88
+
89
+ #if GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P
90
+
91
+ // AssertyTypeEq<T1, T2>::type is defined iff T1 and T2 are the same
92
+ // type. This can be used as a compile-time assertion to ensure that
93
+ // two types are equal.
94
+
95
+ template <typename T1, typename T2>
96
+ struct AssertTypeEq;
97
+
98
+ template <typename T>
99
+ struct AssertTypeEq<T, T> {
100
+ typedef bool type;
101
+ };
102
+
103
+ // A unique type used as the default value for the arguments of class
104
+ // template Types. This allows us to simulate variadic templates
105
+ // (e.g. Types<int>, Type<int, double>, and etc), which C++ doesn't
106
+ // support directly.
107
+ struct None {};
108
+
109
+ // The following family of struct and struct templates are used to
110
+ // represent type lists. In particular, TypesN<T1, T2, ..., TN>
111
+ // represents a type list with N types (T1, T2, ..., and TN) in it.
112
+ // Except for Types0, every struct in the family has two member types:
113
+ // Head for the first type in the list, and Tail for the rest of the
114
+ // list.
115
+
116
+ // The empty type list.
117
+ struct Types0 {};
118
+
119
+ // Type lists of length 1, 2, 3, and so on.
120
+
121
+ template <typename T1>
122
+ struct Types1 {
123
+ typedef T1 Head;
124
+ typedef Types0 Tail;
125
+ };
126
+
127
+ $range i 2..n
128
+
129
+ $for i [[
130
+ $range j 1..i
131
+ $range k 2..i
132
+ template <$for j, [[typename T$j]]>
133
+ struct Types$i {
134
+ typedef T1 Head;
135
+ typedef Types$(i-1)<$for k, [[T$k]]> Tail;
136
+ };
137
+
138
+
139
+ ]]
140
+
141
+ } // namespace internal
142
+
143
+ // We don't want to require the users to write TypesN<...> directly,
144
+ // as that would require them to count the length. Types<...> is much
145
+ // easier to write, but generates horrible messages when there is a
146
+ // compiler error, as gcc insists on printing out each template
147
+ // argument, even if it has the default value (this means Types<int>
148
+ // will appear as Types<int, None, None, ..., None> in the compiler
149
+ // errors).
150
+ //
151
+ // Our solution is to combine the best part of the two approaches: a
152
+ // user would write Types<T1, ..., TN>, and Google Test will translate
153
+ // that to TypesN<T1, ..., TN> internally to make error messages
154
+ // readable. The translation is done by the 'type' member of the
155
+ // Types template.
156
+
157
+ $range i 1..n
158
+ template <$for i, [[typename T$i = internal::None]]>
159
+ struct Types {
160
+ typedef internal::Types$n<$for i, [[T$i]]> type;
161
+ };
162
+
163
+ template <>
164
+ struct Types<$for i, [[internal::None]]> {
165
+ typedef internal::Types0 type;
166
+ };
167
+
168
+ $range i 1..n-1
169
+ $for i [[
170
+ $range j 1..i
171
+ $range k i+1..n
172
+ template <$for j, [[typename T$j]]>
173
+ struct Types<$for j, [[T$j]]$for k[[, internal::None]]> {
174
+ typedef internal::Types$i<$for j, [[T$j]]> type;
175
+ };
176
+
177
+ ]]
178
+
179
+ namespace internal {
180
+
181
+ # define GTEST_TEMPLATE_ template <typename T> class
182
+
183
+ // The template "selector" struct TemplateSel<Tmpl> is used to
184
+ // represent Tmpl, which must be a class template with one type
185
+ // parameter, as a type. TemplateSel<Tmpl>::Bind<T>::type is defined
186
+ // as the type Tmpl<T>. This allows us to actually instantiate the
187
+ // template "selected" by TemplateSel<Tmpl>.
188
+ //
189
+ // This trick is necessary for simulating typedef for class templates,
190
+ // which C++ doesn't support directly.
191
+ template <GTEST_TEMPLATE_ Tmpl>
192
+ struct TemplateSel {
193
+ template <typename T>
194
+ struct Bind {
195
+ typedef Tmpl<T> type;
196
+ };
197
+ };
198
+
199
+ # define GTEST_BIND_(TmplSel, T) \
200
+ TmplSel::template Bind<T>::type
201
+
202
+ // A unique struct template used as the default value for the
203
+ // arguments of class template Templates. This allows us to simulate
204
+ // variadic templates (e.g. Templates<int>, Templates<int, double>,
205
+ // and etc), which C++ doesn't support directly.
206
+ template <typename T>
207
+ struct NoneT {};
208
+
209
+ // The following family of struct and struct templates are used to
210
+ // represent template lists. In particular, TemplatesN<T1, T2, ...,
211
+ // TN> represents a list of N templates (T1, T2, ..., and TN). Except
212
+ // for Templates0, every struct in the family has two member types:
213
+ // Head for the selector of the first template in the list, and Tail
214
+ // for the rest of the list.
215
+
216
+ // The empty template list.
217
+ struct Templates0 {};
218
+
219
+ // Template lists of length 1, 2, 3, and so on.
220
+
221
+ template <GTEST_TEMPLATE_ T1>
222
+ struct Templates1 {
223
+ typedef TemplateSel<T1> Head;
224
+ typedef Templates0 Tail;
225
+ };
226
+
227
+ $range i 2..n
228
+
229
+ $for i [[
230
+ $range j 1..i
231
+ $range k 2..i
232
+ template <$for j, [[GTEST_TEMPLATE_ T$j]]>
233
+ struct Templates$i {
234
+ typedef TemplateSel<T1> Head;
235
+ typedef Templates$(i-1)<$for k, [[T$k]]> Tail;
236
+ };
237
+
238
+
239
+ ]]
240
+
241
+ // We don't want to require the users to write TemplatesN<...> directly,
242
+ // as that would require them to count the length. Templates<...> is much
243
+ // easier to write, but generates horrible messages when there is a
244
+ // compiler error, as gcc insists on printing out each template
245
+ // argument, even if it has the default value (this means Templates<list>
246
+ // will appear as Templates<list, NoneT, NoneT, ..., NoneT> in the compiler
247
+ // errors).
248
+ //
249
+ // Our solution is to combine the best part of the two approaches: a
250
+ // user would write Templates<T1, ..., TN>, and Google Test will translate
251
+ // that to TemplatesN<T1, ..., TN> internally to make error messages
252
+ // readable. The translation is done by the 'type' member of the
253
+ // Templates template.
254
+
255
+ $range i 1..n
256
+ template <$for i, [[GTEST_TEMPLATE_ T$i = NoneT]]>
257
+ struct Templates {
258
+ typedef Templates$n<$for i, [[T$i]]> type;
259
+ };
260
+
261
+ template <>
262
+ struct Templates<$for i, [[NoneT]]> {
263
+ typedef Templates0 type;
264
+ };
265
+
266
+ $range i 1..n-1
267
+ $for i [[
268
+ $range j 1..i
269
+ $range k i+1..n
270
+ template <$for j, [[GTEST_TEMPLATE_ T$j]]>
271
+ struct Templates<$for j, [[T$j]]$for k[[, NoneT]]> {
272
+ typedef Templates$i<$for j, [[T$j]]> type;
273
+ };
274
+
275
+ ]]
276
+
277
+ // The TypeList template makes it possible to use either a single type
278
+ // or a Types<...> list in TYPED_TEST_CASE() and
279
+ // INSTANTIATE_TYPED_TEST_CASE_P().
280
+
281
+ template <typename T>
282
+ struct TypeList { typedef Types1<T> type; };
283
+
284
+
285
+ $range i 1..n
286
+ template <$for i, [[typename T$i]]>
287
+ struct TypeList<Types<$for i, [[T$i]]> > {
288
+ typedef typename Types<$for i, [[T$i]]>::type type;
289
+ };
290
+
291
+ #endif // GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P
292
+
293
+ } // namespace internal
294
+ } // namespace testing
295
+
296
+ #endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_
@@ -0,0 +1,681 @@
1
+ src/gtest-all.lo: src/gtest-all.cc include/gtest/gtest.h \
2
+ /usr/include/c++/4.6/limits \
3
+ /usr/include/c++/4.6/i686-linux-gnu/./bits/c++config.h \
4
+ /usr/include/c++/4.6/i686-linux-gnu/./bits/os_defines.h \
5
+ /usr/include/features.h /usr/include/i386-linux-gnu/bits/predefs.h \
6
+ /usr/include/i386-linux-gnu/sys/cdefs.h \
7
+ /usr/include/i386-linux-gnu/bits/wordsize.h \
8
+ /usr/include/i386-linux-gnu/gnu/stubs.h \
9
+ /usr/include/i386-linux-gnu/gnu/stubs-32.h \
10
+ /usr/include/c++/4.6/i686-linux-gnu/./bits/cpu_defines.h \
11
+ /usr/include/c++/4.6/vector /usr/include/c++/4.6/bits/stl_algobase.h \
12
+ /usr/include/c++/4.6/bits/functexcept.h \
13
+ /usr/include/c++/4.6/bits/exception_defines.h \
14
+ /usr/include/c++/4.6/bits/cpp_type_traits.h \
15
+ /usr/include/c++/4.6/ext/type_traits.h \
16
+ /usr/include/c++/4.6/ext/numeric_traits.h \
17
+ /usr/include/c++/4.6/bits/stl_pair.h /usr/include/c++/4.6/bits/move.h \
18
+ /usr/include/c++/4.6/bits/concept_check.h \
19
+ /usr/include/c++/4.6/bits/stl_iterator_base_types.h \
20
+ /usr/include/c++/4.6/bits/stl_iterator_base_funcs.h \
21
+ /usr/include/c++/4.6/bits/stl_iterator.h \
22
+ /usr/include/c++/4.6/debug/debug.h /usr/include/c++/4.6/bits/allocator.h \
23
+ /usr/include/c++/4.6/i686-linux-gnu/./bits/c++allocator.h \
24
+ /usr/include/c++/4.6/ext/new_allocator.h /usr/include/c++/4.6/new \
25
+ /usr/include/c++/4.6/exception /usr/include/c++/4.6/bits/stl_construct.h \
26
+ /usr/include/c++/4.6/bits/stl_uninitialized.h \
27
+ /usr/include/c++/4.6/bits/stl_vector.h \
28
+ /usr/include/c++/4.6/initializer_list \
29
+ /usr/include/c++/4.6/bits/stl_bvector.h \
30
+ /usr/include/c++/4.6/bits/range_access.h \
31
+ /usr/include/c++/4.6/bits/vector.tcc \
32
+ include/gtest/internal/gtest-internal.h \
33
+ include/gtest/internal/gtest-port.h /usr/include/ctype.h \
34
+ /usr/include/i386-linux-gnu/bits/types.h \
35
+ /usr/include/i386-linux-gnu/bits/typesizes.h /usr/include/endian.h \
36
+ /usr/include/i386-linux-gnu/bits/endian.h \
37
+ /usr/include/i386-linux-gnu/bits/byteswap.h /usr/include/xlocale.h \
38
+ /usr/lib/gcc/i686-linux-gnu/4.6/include/stddef.h /usr/include/stdlib.h \
39
+ /usr/include/i386-linux-gnu/bits/waitflags.h \
40
+ /usr/include/i386-linux-gnu/bits/waitstatus.h \
41
+ /usr/include/i386-linux-gnu/sys/types.h /usr/include/time.h \
42
+ /usr/include/i386-linux-gnu/sys/select.h \
43
+ /usr/include/i386-linux-gnu/bits/select.h \
44
+ /usr/include/i386-linux-gnu/bits/sigset.h \
45
+ /usr/include/i386-linux-gnu/bits/time.h \
46
+ /usr/include/i386-linux-gnu/bits/select2.h \
47
+ /usr/include/i386-linux-gnu/sys/sysmacros.h \
48
+ /usr/include/i386-linux-gnu/bits/pthreadtypes.h /usr/include/alloca.h \
49
+ /usr/include/i386-linux-gnu/bits/stdlib.h /usr/include/stdio.h \
50
+ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
51
+ /usr/lib/gcc/i686-linux-gnu/4.6/include/stdarg.h \
52
+ /usr/include/i386-linux-gnu/bits/stdio_lim.h \
53
+ /usr/include/i386-linux-gnu/bits/sys_errlist.h \
54
+ /usr/include/i386-linux-gnu/bits/stdio.h \
55
+ /usr/include/i386-linux-gnu/bits/stdio2.h /usr/include/string.h \
56
+ /usr/include/i386-linux-gnu/bits/string3.h \
57
+ /usr/include/i386-linux-gnu/sys/stat.h \
58
+ /usr/include/i386-linux-gnu/bits/stat.h /usr/include/c++/4.6/iostream \
59
+ /usr/include/c++/4.6/ostream /usr/include/c++/4.6/ios \
60
+ /usr/include/c++/4.6/iosfwd /usr/include/c++/4.6/bits/stringfwd.h \
61
+ /usr/include/c++/4.6/bits/postypes.h /usr/include/c++/4.6/cwchar \
62
+ /usr/include/i386-linux-gnu/bits/wchar.h \
63
+ /usr/include/i386-linux-gnu/bits/wchar2.h \
64
+ /usr/include/c++/4.6/bits/char_traits.h \
65
+ /usr/include/c++/4.6/bits/localefwd.h \
66
+ /usr/include/c++/4.6/i686-linux-gnu/./bits/c++locale.h \
67
+ /usr/include/c++/4.6/clocale /usr/include/locale.h \
68
+ /usr/include/i386-linux-gnu/bits/locale.h /usr/include/c++/4.6/cctype \
69
+ /usr/include/c++/4.6/bits/ios_base.h \
70
+ /usr/include/c++/4.6/ext/atomicity.h \
71
+ /usr/include/c++/4.6/i686-linux-gnu/./bits/gthr.h \
72
+ /usr/include/c++/4.6/i686-linux-gnu/./bits/gthr-default.h \
73
+ /usr/include/pthread.h /usr/include/sched.h \
74
+ /usr/include/i386-linux-gnu/bits/sched.h \
75
+ /usr/include/i386-linux-gnu/bits/timex.h \
76
+ /usr/include/i386-linux-gnu/bits/setjmp.h /usr/include/unistd.h \
77
+ /usr/include/i386-linux-gnu/bits/posix_opt.h \
78
+ /usr/include/i386-linux-gnu/bits/environments.h \
79
+ /usr/include/i386-linux-gnu/bits/confname.h /usr/include/getopt.h \
80
+ /usr/include/i386-linux-gnu/bits/unistd.h \
81
+ /usr/include/c++/4.6/i686-linux-gnu/./bits/atomic_word.h \
82
+ /usr/include/c++/4.6/bits/locale_classes.h /usr/include/c++/4.6/string \
83
+ /usr/include/c++/4.6/bits/ostream_insert.h \
84
+ /usr/include/c++/4.6/bits/cxxabi_forced.h \
85
+ /usr/include/c++/4.6/bits/stl_function.h \
86
+ /usr/include/c++/4.6/backward/binders.h \
87
+ /usr/include/c++/4.6/bits/basic_string.h \
88
+ /usr/include/c++/4.6/bits/basic_string.tcc \
89
+ /usr/include/c++/4.6/bits/locale_classes.tcc \
90
+ /usr/include/c++/4.6/streambuf /usr/include/c++/4.6/bits/streambuf.tcc \
91
+ /usr/include/c++/4.6/bits/basic_ios.h \
92
+ /usr/include/c++/4.6/bits/locale_facets.h /usr/include/c++/4.6/cwctype \
93
+ /usr/include/wctype.h \
94
+ /usr/include/c++/4.6/i686-linux-gnu/./bits/ctype_base.h \
95
+ /usr/include/c++/4.6/bits/streambuf_iterator.h \
96
+ /usr/include/c++/4.6/i686-linux-gnu/./bits/ctype_inline.h \
97
+ /usr/include/c++/4.6/bits/locale_facets.tcc \
98
+ /usr/include/c++/4.6/bits/basic_ios.tcc \
99
+ /usr/include/c++/4.6/bits/ostream.tcc /usr/include/c++/4.6/istream \
100
+ /usr/include/c++/4.6/bits/istream.tcc /usr/include/c++/4.6/sstream \
101
+ /usr/include/c++/4.6/bits/sstream.tcc /usr/include/strings.h \
102
+ /usr/include/regex.h /usr/include/i386-linux-gnu/gnu/option-groups.h \
103
+ /usr/include/c++/4.6/typeinfo /usr/include/c++/4.6/tr1/tuple \
104
+ /usr/include/c++/4.6/utility /usr/include/c++/4.6/bits/stl_relops.h \
105
+ /usr/include/i386-linux-gnu/sys/wait.h /usr/include/signal.h \
106
+ /usr/include/i386-linux-gnu/bits/signum.h \
107
+ /usr/include/i386-linux-gnu/bits/siginfo.h \
108
+ /usr/include/i386-linux-gnu/bits/sigaction.h \
109
+ /usr/include/i386-linux-gnu/bits/sigcontext.h \
110
+ /usr/include/i386-linux-gnu/asm/sigcontext.h /usr/include/linux/types.h \
111
+ /usr/include/i386-linux-gnu/asm/types.h /usr/include/asm-generic/types.h \
112
+ /usr/include/asm-generic/int-ll64.h \
113
+ /usr/include/i386-linux-gnu/asm/bitsperlong.h \
114
+ /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
115
+ /usr/include/linux/stddef.h \
116
+ /usr/include/i386-linux-gnu/asm/posix_types.h \
117
+ /usr/include/i386-linux-gnu/asm/posix_types_32.h \
118
+ /usr/include/i386-linux-gnu/bits/sigstack.h \
119
+ /usr/include/i386-linux-gnu/sys/ucontext.h \
120
+ /usr/include/i386-linux-gnu/bits/sigthread.h \
121
+ /usr/include/i386-linux-gnu/sys/resource.h \
122
+ /usr/include/i386-linux-gnu/bits/resource.h /usr/include/c++/4.6/iomanip \
123
+ /usr/include/c++/4.6/set /usr/include/c++/4.6/bits/stl_tree.h \
124
+ /usr/include/c++/4.6/bits/stl_set.h \
125
+ /usr/include/c++/4.6/bits/stl_multiset.h \
126
+ include/gtest/internal/gtest-string.h \
127
+ include/gtest/internal/gtest-filepath.h \
128
+ include/gtest/internal/gtest-type-util.h /usr/include/c++/4.6/cxxabi.h \
129
+ /usr/include/c++/4.6/i686-linux-gnu/./bits/cxxabi_tweaks.h \
130
+ include/gtest/gtest-death-test.h \
131
+ include/gtest/internal/gtest-death-test-internal.h \
132
+ include/gtest/gtest-message.h include/gtest/gtest-param-test.h \
133
+ include/gtest/internal/gtest-param-util.h /usr/include/c++/4.6/iterator \
134
+ /usr/include/c++/4.6/bits/stream_iterator.h \
135
+ include/gtest/internal/gtest-linked_ptr.h /usr/include/assert.h \
136
+ include/gtest/gtest-printers.h \
137
+ include/gtest/internal/gtest-param-util-generated.h \
138
+ include/gtest/gtest_prod.h include/gtest/gtest-test-part.h \
139
+ include/gtest/gtest-typed-test.h include/gtest/gtest_pred_impl.h \
140
+ src/gtest.cc include/gtest/gtest-spi.h /usr/include/math.h \
141
+ /usr/include/i386-linux-gnu/bits/huge_val.h \
142
+ /usr/include/i386-linux-gnu/bits/huge_valf.h \
143
+ /usr/include/i386-linux-gnu/bits/huge_vall.h \
144
+ /usr/include/i386-linux-gnu/bits/inf.h \
145
+ /usr/include/i386-linux-gnu/bits/nan.h \
146
+ /usr/include/i386-linux-gnu/bits/mathdef.h \
147
+ /usr/include/i386-linux-gnu/bits/mathcalls.h \
148
+ /usr/include/i386-linux-gnu/bits/mathinline.h \
149
+ /usr/include/c++/4.6/algorithm /usr/include/c++/4.6/bits/stl_algo.h \
150
+ /usr/include/c++/4.6/cstdlib /usr/include/c++/4.6/bits/algorithmfwd.h \
151
+ /usr/include/c++/4.6/bits/stl_heap.h \
152
+ /usr/include/c++/4.6/bits/stl_tempbuf.h /usr/include/fcntl.h \
153
+ /usr/include/i386-linux-gnu/bits/fcntl.h \
154
+ /usr/include/i386-linux-gnu/bits/uio.h \
155
+ /usr/include/i386-linux-gnu/bits/fcntl2.h \
156
+ /usr/lib/gcc/i686-linux-gnu/4.6/include-fixed/limits.h \
157
+ /usr/lib/gcc/i686-linux-gnu/4.6/include-fixed/syslimits.h \
158
+ /usr/include/limits.h /usr/include/i386-linux-gnu/bits/posix1_lim.h \
159
+ /usr/include/i386-linux-gnu/bits/local_lim.h /usr/include/linux/limits.h \
160
+ /usr/include/i386-linux-gnu/bits/posix2_lim.h \
161
+ /usr/include/i386-linux-gnu/bits/xopen_lim.h \
162
+ /usr/include/i386-linux-gnu/sys/mman.h \
163
+ /usr/include/i386-linux-gnu/bits/mman.h \
164
+ /usr/include/i386-linux-gnu/sys/time.h /usr/include/c++/4.6/stdexcept \
165
+ /usr/include/arpa/inet.h /usr/include/netinet/in.h \
166
+ /usr/lib/gcc/i686-linux-gnu/4.6/include/stdint.h /usr/include/stdint.h \
167
+ /usr/include/i386-linux-gnu/sys/socket.h \
168
+ /usr/include/i386-linux-gnu/sys/uio.h \
169
+ /usr/include/i386-linux-gnu/bits/socket.h \
170
+ /usr/include/i386-linux-gnu/bits/sockaddr.h \
171
+ /usr/include/i386-linux-gnu/asm/socket.h \
172
+ /usr/include/asm-generic/socket.h \
173
+ /usr/include/i386-linux-gnu/asm/sockios.h \
174
+ /usr/include/asm-generic/sockios.h \
175
+ /usr/include/i386-linux-gnu/bits/socket2.h \
176
+ /usr/include/i386-linux-gnu/bits/in.h /usr/include/netdb.h \
177
+ /usr/include/rpc/netdb.h /usr/include/i386-linux-gnu/bits/netdb.h \
178
+ src/gtest-internal-inl.h /usr/include/errno.h \
179
+ /usr/include/i386-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
180
+ /usr/include/i386-linux-gnu/asm/errno.h /usr/include/asm-generic/errno.h \
181
+ /usr/include/asm-generic/errno-base.h src/gtest-death-test.cc \
182
+ src/gtest-filepath.cc /usr/include/c++/4.6/climits src/gtest-port.cc \
183
+ src/gtest-printers.cc src/gtest-test-part.cc src/gtest-typed-test.cc
184
+
185
+ include/gtest/gtest.h:
186
+
187
+ /usr/include/c++/4.6/limits:
188
+
189
+ /usr/include/c++/4.6/i686-linux-gnu/./bits/c++config.h:
190
+
191
+ /usr/include/c++/4.6/i686-linux-gnu/./bits/os_defines.h:
192
+
193
+ /usr/include/features.h:
194
+
195
+ /usr/include/i386-linux-gnu/bits/predefs.h:
196
+
197
+ /usr/include/i386-linux-gnu/sys/cdefs.h:
198
+
199
+ /usr/include/i386-linux-gnu/bits/wordsize.h:
200
+
201
+ /usr/include/i386-linux-gnu/gnu/stubs.h:
202
+
203
+ /usr/include/i386-linux-gnu/gnu/stubs-32.h:
204
+
205
+ /usr/include/c++/4.6/i686-linux-gnu/./bits/cpu_defines.h:
206
+
207
+ /usr/include/c++/4.6/vector:
208
+
209
+ /usr/include/c++/4.6/bits/stl_algobase.h:
210
+
211
+ /usr/include/c++/4.6/bits/functexcept.h:
212
+
213
+ /usr/include/c++/4.6/bits/exception_defines.h:
214
+
215
+ /usr/include/c++/4.6/bits/cpp_type_traits.h:
216
+
217
+ /usr/include/c++/4.6/ext/type_traits.h:
218
+
219
+ /usr/include/c++/4.6/ext/numeric_traits.h:
220
+
221
+ /usr/include/c++/4.6/bits/stl_pair.h:
222
+
223
+ /usr/include/c++/4.6/bits/move.h:
224
+
225
+ /usr/include/c++/4.6/bits/concept_check.h:
226
+
227
+ /usr/include/c++/4.6/bits/stl_iterator_base_types.h:
228
+
229
+ /usr/include/c++/4.6/bits/stl_iterator_base_funcs.h:
230
+
231
+ /usr/include/c++/4.6/bits/stl_iterator.h:
232
+
233
+ /usr/include/c++/4.6/debug/debug.h:
234
+
235
+ /usr/include/c++/4.6/bits/allocator.h:
236
+
237
+ /usr/include/c++/4.6/i686-linux-gnu/./bits/c++allocator.h:
238
+
239
+ /usr/include/c++/4.6/ext/new_allocator.h:
240
+
241
+ /usr/include/c++/4.6/new:
242
+
243
+ /usr/include/c++/4.6/exception:
244
+
245
+ /usr/include/c++/4.6/bits/stl_construct.h:
246
+
247
+ /usr/include/c++/4.6/bits/stl_uninitialized.h:
248
+
249
+ /usr/include/c++/4.6/bits/stl_vector.h:
250
+
251
+ /usr/include/c++/4.6/initializer_list:
252
+
253
+ /usr/include/c++/4.6/bits/stl_bvector.h:
254
+
255
+ /usr/include/c++/4.6/bits/range_access.h:
256
+
257
+ /usr/include/c++/4.6/bits/vector.tcc:
258
+
259
+ include/gtest/internal/gtest-internal.h:
260
+
261
+ include/gtest/internal/gtest-port.h:
262
+
263
+ /usr/include/ctype.h:
264
+
265
+ /usr/include/i386-linux-gnu/bits/types.h:
266
+
267
+ /usr/include/i386-linux-gnu/bits/typesizes.h:
268
+
269
+ /usr/include/endian.h:
270
+
271
+ /usr/include/i386-linux-gnu/bits/endian.h:
272
+
273
+ /usr/include/i386-linux-gnu/bits/byteswap.h:
274
+
275
+ /usr/include/xlocale.h:
276
+
277
+ /usr/lib/gcc/i686-linux-gnu/4.6/include/stddef.h:
278
+
279
+ /usr/include/stdlib.h:
280
+
281
+ /usr/include/i386-linux-gnu/bits/waitflags.h:
282
+
283
+ /usr/include/i386-linux-gnu/bits/waitstatus.h:
284
+
285
+ /usr/include/i386-linux-gnu/sys/types.h:
286
+
287
+ /usr/include/time.h:
288
+
289
+ /usr/include/i386-linux-gnu/sys/select.h:
290
+
291
+ /usr/include/i386-linux-gnu/bits/select.h:
292
+
293
+ /usr/include/i386-linux-gnu/bits/sigset.h:
294
+
295
+ /usr/include/i386-linux-gnu/bits/time.h:
296
+
297
+ /usr/include/i386-linux-gnu/bits/select2.h:
298
+
299
+ /usr/include/i386-linux-gnu/sys/sysmacros.h:
300
+
301
+ /usr/include/i386-linux-gnu/bits/pthreadtypes.h:
302
+
303
+ /usr/include/alloca.h:
304
+
305
+ /usr/include/i386-linux-gnu/bits/stdlib.h:
306
+
307
+ /usr/include/stdio.h:
308
+
309
+ /usr/include/libio.h:
310
+
311
+ /usr/include/_G_config.h:
312
+
313
+ /usr/include/wchar.h:
314
+
315
+ /usr/lib/gcc/i686-linux-gnu/4.6/include/stdarg.h:
316
+
317
+ /usr/include/i386-linux-gnu/bits/stdio_lim.h:
318
+
319
+ /usr/include/i386-linux-gnu/bits/sys_errlist.h:
320
+
321
+ /usr/include/i386-linux-gnu/bits/stdio.h:
322
+
323
+ /usr/include/i386-linux-gnu/bits/stdio2.h:
324
+
325
+ /usr/include/string.h:
326
+
327
+ /usr/include/i386-linux-gnu/bits/string3.h:
328
+
329
+ /usr/include/i386-linux-gnu/sys/stat.h:
330
+
331
+ /usr/include/i386-linux-gnu/bits/stat.h:
332
+
333
+ /usr/include/c++/4.6/iostream:
334
+
335
+ /usr/include/c++/4.6/ostream:
336
+
337
+ /usr/include/c++/4.6/ios:
338
+
339
+ /usr/include/c++/4.6/iosfwd:
340
+
341
+ /usr/include/c++/4.6/bits/stringfwd.h:
342
+
343
+ /usr/include/c++/4.6/bits/postypes.h:
344
+
345
+ /usr/include/c++/4.6/cwchar:
346
+
347
+ /usr/include/i386-linux-gnu/bits/wchar.h:
348
+
349
+ /usr/include/i386-linux-gnu/bits/wchar2.h:
350
+
351
+ /usr/include/c++/4.6/bits/char_traits.h:
352
+
353
+ /usr/include/c++/4.6/bits/localefwd.h:
354
+
355
+ /usr/include/c++/4.6/i686-linux-gnu/./bits/c++locale.h:
356
+
357
+ /usr/include/c++/4.6/clocale:
358
+
359
+ /usr/include/locale.h:
360
+
361
+ /usr/include/i386-linux-gnu/bits/locale.h:
362
+
363
+ /usr/include/c++/4.6/cctype:
364
+
365
+ /usr/include/c++/4.6/bits/ios_base.h:
366
+
367
+ /usr/include/c++/4.6/ext/atomicity.h:
368
+
369
+ /usr/include/c++/4.6/i686-linux-gnu/./bits/gthr.h:
370
+
371
+ /usr/include/c++/4.6/i686-linux-gnu/./bits/gthr-default.h:
372
+
373
+ /usr/include/pthread.h:
374
+
375
+ /usr/include/sched.h:
376
+
377
+ /usr/include/i386-linux-gnu/bits/sched.h:
378
+
379
+ /usr/include/i386-linux-gnu/bits/timex.h:
380
+
381
+ /usr/include/i386-linux-gnu/bits/setjmp.h:
382
+
383
+ /usr/include/unistd.h:
384
+
385
+ /usr/include/i386-linux-gnu/bits/posix_opt.h:
386
+
387
+ /usr/include/i386-linux-gnu/bits/environments.h:
388
+
389
+ /usr/include/i386-linux-gnu/bits/confname.h:
390
+
391
+ /usr/include/getopt.h:
392
+
393
+ /usr/include/i386-linux-gnu/bits/unistd.h:
394
+
395
+ /usr/include/c++/4.6/i686-linux-gnu/./bits/atomic_word.h:
396
+
397
+ /usr/include/c++/4.6/bits/locale_classes.h:
398
+
399
+ /usr/include/c++/4.6/string:
400
+
401
+ /usr/include/c++/4.6/bits/ostream_insert.h:
402
+
403
+ /usr/include/c++/4.6/bits/cxxabi_forced.h:
404
+
405
+ /usr/include/c++/4.6/bits/stl_function.h:
406
+
407
+ /usr/include/c++/4.6/backward/binders.h:
408
+
409
+ /usr/include/c++/4.6/bits/basic_string.h:
410
+
411
+ /usr/include/c++/4.6/bits/basic_string.tcc:
412
+
413
+ /usr/include/c++/4.6/bits/locale_classes.tcc:
414
+
415
+ /usr/include/c++/4.6/streambuf:
416
+
417
+ /usr/include/c++/4.6/bits/streambuf.tcc:
418
+
419
+ /usr/include/c++/4.6/bits/basic_ios.h:
420
+
421
+ /usr/include/c++/4.6/bits/locale_facets.h:
422
+
423
+ /usr/include/c++/4.6/cwctype:
424
+
425
+ /usr/include/wctype.h:
426
+
427
+ /usr/include/c++/4.6/i686-linux-gnu/./bits/ctype_base.h:
428
+
429
+ /usr/include/c++/4.6/bits/streambuf_iterator.h:
430
+
431
+ /usr/include/c++/4.6/i686-linux-gnu/./bits/ctype_inline.h:
432
+
433
+ /usr/include/c++/4.6/bits/locale_facets.tcc:
434
+
435
+ /usr/include/c++/4.6/bits/basic_ios.tcc:
436
+
437
+ /usr/include/c++/4.6/bits/ostream.tcc:
438
+
439
+ /usr/include/c++/4.6/istream:
440
+
441
+ /usr/include/c++/4.6/bits/istream.tcc:
442
+
443
+ /usr/include/c++/4.6/sstream:
444
+
445
+ /usr/include/c++/4.6/bits/sstream.tcc:
446
+
447
+ /usr/include/strings.h:
448
+
449
+ /usr/include/regex.h:
450
+
451
+ /usr/include/i386-linux-gnu/gnu/option-groups.h:
452
+
453
+ /usr/include/c++/4.6/typeinfo:
454
+
455
+ /usr/include/c++/4.6/tr1/tuple:
456
+
457
+ /usr/include/c++/4.6/utility:
458
+
459
+ /usr/include/c++/4.6/bits/stl_relops.h:
460
+
461
+ /usr/include/i386-linux-gnu/sys/wait.h:
462
+
463
+ /usr/include/signal.h:
464
+
465
+ /usr/include/i386-linux-gnu/bits/signum.h:
466
+
467
+ /usr/include/i386-linux-gnu/bits/siginfo.h:
468
+
469
+ /usr/include/i386-linux-gnu/bits/sigaction.h:
470
+
471
+ /usr/include/i386-linux-gnu/bits/sigcontext.h:
472
+
473
+ /usr/include/i386-linux-gnu/asm/sigcontext.h:
474
+
475
+ /usr/include/linux/types.h:
476
+
477
+ /usr/include/i386-linux-gnu/asm/types.h:
478
+
479
+ /usr/include/asm-generic/types.h:
480
+
481
+ /usr/include/asm-generic/int-ll64.h:
482
+
483
+ /usr/include/i386-linux-gnu/asm/bitsperlong.h:
484
+
485
+ /usr/include/asm-generic/bitsperlong.h:
486
+
487
+ /usr/include/linux/posix_types.h:
488
+
489
+ /usr/include/linux/stddef.h:
490
+
491
+ /usr/include/i386-linux-gnu/asm/posix_types.h:
492
+
493
+ /usr/include/i386-linux-gnu/asm/posix_types_32.h:
494
+
495
+ /usr/include/i386-linux-gnu/bits/sigstack.h:
496
+
497
+ /usr/include/i386-linux-gnu/sys/ucontext.h:
498
+
499
+ /usr/include/i386-linux-gnu/bits/sigthread.h:
500
+
501
+ /usr/include/i386-linux-gnu/sys/resource.h:
502
+
503
+ /usr/include/i386-linux-gnu/bits/resource.h:
504
+
505
+ /usr/include/c++/4.6/iomanip:
506
+
507
+ /usr/include/c++/4.6/set:
508
+
509
+ /usr/include/c++/4.6/bits/stl_tree.h:
510
+
511
+ /usr/include/c++/4.6/bits/stl_set.h:
512
+
513
+ /usr/include/c++/4.6/bits/stl_multiset.h:
514
+
515
+ include/gtest/internal/gtest-string.h:
516
+
517
+ include/gtest/internal/gtest-filepath.h:
518
+
519
+ include/gtest/internal/gtest-type-util.h:
520
+
521
+ /usr/include/c++/4.6/cxxabi.h:
522
+
523
+ /usr/include/c++/4.6/i686-linux-gnu/./bits/cxxabi_tweaks.h:
524
+
525
+ include/gtest/gtest-death-test.h:
526
+
527
+ include/gtest/internal/gtest-death-test-internal.h:
528
+
529
+ include/gtest/gtest-message.h:
530
+
531
+ include/gtest/gtest-param-test.h:
532
+
533
+ include/gtest/internal/gtest-param-util.h:
534
+
535
+ /usr/include/c++/4.6/iterator:
536
+
537
+ /usr/include/c++/4.6/bits/stream_iterator.h:
538
+
539
+ include/gtest/internal/gtest-linked_ptr.h:
540
+
541
+ /usr/include/assert.h:
542
+
543
+ include/gtest/gtest-printers.h:
544
+
545
+ include/gtest/internal/gtest-param-util-generated.h:
546
+
547
+ include/gtest/gtest_prod.h:
548
+
549
+ include/gtest/gtest-test-part.h:
550
+
551
+ include/gtest/gtest-typed-test.h:
552
+
553
+ include/gtest/gtest_pred_impl.h:
554
+
555
+ src/gtest.cc:
556
+
557
+ include/gtest/gtest-spi.h:
558
+
559
+ /usr/include/math.h:
560
+
561
+ /usr/include/i386-linux-gnu/bits/huge_val.h:
562
+
563
+ /usr/include/i386-linux-gnu/bits/huge_valf.h:
564
+
565
+ /usr/include/i386-linux-gnu/bits/huge_vall.h:
566
+
567
+ /usr/include/i386-linux-gnu/bits/inf.h:
568
+
569
+ /usr/include/i386-linux-gnu/bits/nan.h:
570
+
571
+ /usr/include/i386-linux-gnu/bits/mathdef.h:
572
+
573
+ /usr/include/i386-linux-gnu/bits/mathcalls.h:
574
+
575
+ /usr/include/i386-linux-gnu/bits/mathinline.h:
576
+
577
+ /usr/include/c++/4.6/algorithm:
578
+
579
+ /usr/include/c++/4.6/bits/stl_algo.h:
580
+
581
+ /usr/include/c++/4.6/cstdlib:
582
+
583
+ /usr/include/c++/4.6/bits/algorithmfwd.h:
584
+
585
+ /usr/include/c++/4.6/bits/stl_heap.h:
586
+
587
+ /usr/include/c++/4.6/bits/stl_tempbuf.h:
588
+
589
+ /usr/include/fcntl.h:
590
+
591
+ /usr/include/i386-linux-gnu/bits/fcntl.h:
592
+
593
+ /usr/include/i386-linux-gnu/bits/uio.h:
594
+
595
+ /usr/include/i386-linux-gnu/bits/fcntl2.h:
596
+
597
+ /usr/lib/gcc/i686-linux-gnu/4.6/include-fixed/limits.h:
598
+
599
+ /usr/lib/gcc/i686-linux-gnu/4.6/include-fixed/syslimits.h:
600
+
601
+ /usr/include/limits.h:
602
+
603
+ /usr/include/i386-linux-gnu/bits/posix1_lim.h:
604
+
605
+ /usr/include/i386-linux-gnu/bits/local_lim.h:
606
+
607
+ /usr/include/linux/limits.h:
608
+
609
+ /usr/include/i386-linux-gnu/bits/posix2_lim.h:
610
+
611
+ /usr/include/i386-linux-gnu/bits/xopen_lim.h:
612
+
613
+ /usr/include/i386-linux-gnu/sys/mman.h:
614
+
615
+ /usr/include/i386-linux-gnu/bits/mman.h:
616
+
617
+ /usr/include/i386-linux-gnu/sys/time.h:
618
+
619
+ /usr/include/c++/4.6/stdexcept:
620
+
621
+ /usr/include/arpa/inet.h:
622
+
623
+ /usr/include/netinet/in.h:
624
+
625
+ /usr/lib/gcc/i686-linux-gnu/4.6/include/stdint.h:
626
+
627
+ /usr/include/stdint.h:
628
+
629
+ /usr/include/i386-linux-gnu/sys/socket.h:
630
+
631
+ /usr/include/i386-linux-gnu/sys/uio.h:
632
+
633
+ /usr/include/i386-linux-gnu/bits/socket.h:
634
+
635
+ /usr/include/i386-linux-gnu/bits/sockaddr.h:
636
+
637
+ /usr/include/i386-linux-gnu/asm/socket.h:
638
+
639
+ /usr/include/asm-generic/socket.h:
640
+
641
+ /usr/include/i386-linux-gnu/asm/sockios.h:
642
+
643
+ /usr/include/asm-generic/sockios.h:
644
+
645
+ /usr/include/i386-linux-gnu/bits/socket2.h:
646
+
647
+ /usr/include/i386-linux-gnu/bits/in.h:
648
+
649
+ /usr/include/netdb.h:
650
+
651
+ /usr/include/rpc/netdb.h:
652
+
653
+ /usr/include/i386-linux-gnu/bits/netdb.h:
654
+
655
+ src/gtest-internal-inl.h:
656
+
657
+ /usr/include/errno.h:
658
+
659
+ /usr/include/i386-linux-gnu/bits/errno.h:
660
+
661
+ /usr/include/linux/errno.h:
662
+
663
+ /usr/include/i386-linux-gnu/asm/errno.h:
664
+
665
+ /usr/include/asm-generic/errno.h:
666
+
667
+ /usr/include/asm-generic/errno-base.h:
668
+
669
+ src/gtest-death-test.cc:
670
+
671
+ src/gtest-filepath.cc:
672
+
673
+ /usr/include/c++/4.6/climits:
674
+
675
+ src/gtest-port.cc:
676
+
677
+ src/gtest-printers.cc:
678
+
679
+ src/gtest-test-part.cc:
680
+
681
+ src/gtest-typed-test.cc: