filenames.libcxx.gni 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091
  1. libcxx_headers = [
  2. "//third_party/libc++/src/include/CMakeLists.txt",
  3. "//third_party/libc++/src/include/__algorithm/adjacent_find.h",
  4. "//third_party/libc++/src/include/__algorithm/all_of.h",
  5. "//third_party/libc++/src/include/__algorithm/any_of.h",
  6. "//third_party/libc++/src/include/__algorithm/binary_search.h",
  7. "//third_party/libc++/src/include/__algorithm/clamp.h",
  8. "//third_party/libc++/src/include/__algorithm/comp.h",
  9. "//third_party/libc++/src/include/__algorithm/comp_ref_type.h",
  10. "//third_party/libc++/src/include/__algorithm/copy.h",
  11. "//third_party/libc++/src/include/__algorithm/copy_backward.h",
  12. "//third_party/libc++/src/include/__algorithm/copy_if.h",
  13. "//third_party/libc++/src/include/__algorithm/copy_move_common.h",
  14. "//third_party/libc++/src/include/__algorithm/copy_n.h",
  15. "//third_party/libc++/src/include/__algorithm/count.h",
  16. "//third_party/libc++/src/include/__algorithm/count_if.h",
  17. "//third_party/libc++/src/include/__algorithm/equal.h",
  18. "//third_party/libc++/src/include/__algorithm/equal_range.h",
  19. "//third_party/libc++/src/include/__algorithm/fill.h",
  20. "//third_party/libc++/src/include/__algorithm/fill_n.h",
  21. "//third_party/libc++/src/include/__algorithm/find.h",
  22. "//third_party/libc++/src/include/__algorithm/find_end.h",
  23. "//third_party/libc++/src/include/__algorithm/find_first_of.h",
  24. "//third_party/libc++/src/include/__algorithm/find_if.h",
  25. "//third_party/libc++/src/include/__algorithm/find_if_not.h",
  26. "//third_party/libc++/src/include/__algorithm/find_segment_if.h",
  27. "//third_party/libc++/src/include/__algorithm/for_each.h",
  28. "//third_party/libc++/src/include/__algorithm/for_each_n.h",
  29. "//third_party/libc++/src/include/__algorithm/for_each_segment.h",
  30. "//third_party/libc++/src/include/__algorithm/generate.h",
  31. "//third_party/libc++/src/include/__algorithm/generate_n.h",
  32. "//third_party/libc++/src/include/__algorithm/half_positive.h",
  33. "//third_party/libc++/src/include/__algorithm/in_found_result.h",
  34. "//third_party/libc++/src/include/__algorithm/in_fun_result.h",
  35. "//third_party/libc++/src/include/__algorithm/in_in_out_result.h",
  36. "//third_party/libc++/src/include/__algorithm/in_in_result.h",
  37. "//third_party/libc++/src/include/__algorithm/in_out_out_result.h",
  38. "//third_party/libc++/src/include/__algorithm/in_out_result.h",
  39. "//third_party/libc++/src/include/__algorithm/includes.h",
  40. "//third_party/libc++/src/include/__algorithm/inplace_merge.h",
  41. "//third_party/libc++/src/include/__algorithm/is_heap.h",
  42. "//third_party/libc++/src/include/__algorithm/is_heap_until.h",
  43. "//third_party/libc++/src/include/__algorithm/is_partitioned.h",
  44. "//third_party/libc++/src/include/__algorithm/is_permutation.h",
  45. "//third_party/libc++/src/include/__algorithm/is_sorted.h",
  46. "//third_party/libc++/src/include/__algorithm/is_sorted_until.h",
  47. "//third_party/libc++/src/include/__algorithm/iter_swap.h",
  48. "//third_party/libc++/src/include/__algorithm/iterator_operations.h",
  49. "//third_party/libc++/src/include/__algorithm/lexicographical_compare.h",
  50. "//third_party/libc++/src/include/__algorithm/lexicographical_compare_three_way.h",
  51. "//third_party/libc++/src/include/__algorithm/lower_bound.h",
  52. "//third_party/libc++/src/include/__algorithm/make_heap.h",
  53. "//third_party/libc++/src/include/__algorithm/make_projected.h",
  54. "//third_party/libc++/src/include/__algorithm/max.h",
  55. "//third_party/libc++/src/include/__algorithm/max_element.h",
  56. "//third_party/libc++/src/include/__algorithm/merge.h",
  57. "//third_party/libc++/src/include/__algorithm/min.h",
  58. "//third_party/libc++/src/include/__algorithm/min_element.h",
  59. "//third_party/libc++/src/include/__algorithm/min_max_result.h",
  60. "//third_party/libc++/src/include/__algorithm/minmax.h",
  61. "//third_party/libc++/src/include/__algorithm/minmax_element.h",
  62. "//third_party/libc++/src/include/__algorithm/mismatch.h",
  63. "//third_party/libc++/src/include/__algorithm/move.h",
  64. "//third_party/libc++/src/include/__algorithm/move_backward.h",
  65. "//third_party/libc++/src/include/__algorithm/next_permutation.h",
  66. "//third_party/libc++/src/include/__algorithm/none_of.h",
  67. "//third_party/libc++/src/include/__algorithm/nth_element.h",
  68. "//third_party/libc++/src/include/__algorithm/partial_sort.h",
  69. "//third_party/libc++/src/include/__algorithm/partial_sort_copy.h",
  70. "//third_party/libc++/src/include/__algorithm/partition.h",
  71. "//third_party/libc++/src/include/__algorithm/partition_copy.h",
  72. "//third_party/libc++/src/include/__algorithm/partition_point.h",
  73. "//third_party/libc++/src/include/__algorithm/pop_heap.h",
  74. "//third_party/libc++/src/include/__algorithm/prev_permutation.h",
  75. "//third_party/libc++/src/include/__algorithm/pstl.h",
  76. "//third_party/libc++/src/include/__algorithm/push_heap.h",
  77. "//third_party/libc++/src/include/__algorithm/radix_sort.h",
  78. "//third_party/libc++/src/include/__algorithm/ranges_adjacent_find.h",
  79. "//third_party/libc++/src/include/__algorithm/ranges_all_of.h",
  80. "//third_party/libc++/src/include/__algorithm/ranges_any_of.h",
  81. "//third_party/libc++/src/include/__algorithm/ranges_binary_search.h",
  82. "//third_party/libc++/src/include/__algorithm/ranges_clamp.h",
  83. "//third_party/libc++/src/include/__algorithm/ranges_contains.h",
  84. "//third_party/libc++/src/include/__algorithm/ranges_contains_subrange.h",
  85. "//third_party/libc++/src/include/__algorithm/ranges_copy.h",
  86. "//third_party/libc++/src/include/__algorithm/ranges_copy_backward.h",
  87. "//third_party/libc++/src/include/__algorithm/ranges_copy_if.h",
  88. "//third_party/libc++/src/include/__algorithm/ranges_copy_n.h",
  89. "//third_party/libc++/src/include/__algorithm/ranges_count.h",
  90. "//third_party/libc++/src/include/__algorithm/ranges_count_if.h",
  91. "//third_party/libc++/src/include/__algorithm/ranges_ends_with.h",
  92. "//third_party/libc++/src/include/__algorithm/ranges_equal.h",
  93. "//third_party/libc++/src/include/__algorithm/ranges_equal_range.h",
  94. "//third_party/libc++/src/include/__algorithm/ranges_fill.h",
  95. "//third_party/libc++/src/include/__algorithm/ranges_fill_n.h",
  96. "//third_party/libc++/src/include/__algorithm/ranges_find.h",
  97. "//third_party/libc++/src/include/__algorithm/ranges_find_end.h",
  98. "//third_party/libc++/src/include/__algorithm/ranges_find_first_of.h",
  99. "//third_party/libc++/src/include/__algorithm/ranges_find_if.h",
  100. "//third_party/libc++/src/include/__algorithm/ranges_find_if_not.h",
  101. "//third_party/libc++/src/include/__algorithm/ranges_find_last.h",
  102. "//third_party/libc++/src/include/__algorithm/ranges_fold.h",
  103. "//third_party/libc++/src/include/__algorithm/ranges_for_each.h",
  104. "//third_party/libc++/src/include/__algorithm/ranges_for_each_n.h",
  105. "//third_party/libc++/src/include/__algorithm/ranges_generate.h",
  106. "//third_party/libc++/src/include/__algorithm/ranges_generate_n.h",
  107. "//third_party/libc++/src/include/__algorithm/ranges_includes.h",
  108. "//third_party/libc++/src/include/__algorithm/ranges_inplace_merge.h",
  109. "//third_party/libc++/src/include/__algorithm/ranges_is_heap.h",
  110. "//third_party/libc++/src/include/__algorithm/ranges_is_heap_until.h",
  111. "//third_party/libc++/src/include/__algorithm/ranges_is_partitioned.h",
  112. "//third_party/libc++/src/include/__algorithm/ranges_is_permutation.h",
  113. "//third_party/libc++/src/include/__algorithm/ranges_is_sorted.h",
  114. "//third_party/libc++/src/include/__algorithm/ranges_is_sorted_until.h",
  115. "//third_party/libc++/src/include/__algorithm/ranges_iterator_concept.h",
  116. "//third_party/libc++/src/include/__algorithm/ranges_lexicographical_compare.h",
  117. "//third_party/libc++/src/include/__algorithm/ranges_lower_bound.h",
  118. "//third_party/libc++/src/include/__algorithm/ranges_make_heap.h",
  119. "//third_party/libc++/src/include/__algorithm/ranges_max.h",
  120. "//third_party/libc++/src/include/__algorithm/ranges_max_element.h",
  121. "//third_party/libc++/src/include/__algorithm/ranges_merge.h",
  122. "//third_party/libc++/src/include/__algorithm/ranges_min.h",
  123. "//third_party/libc++/src/include/__algorithm/ranges_min_element.h",
  124. "//third_party/libc++/src/include/__algorithm/ranges_minmax.h",
  125. "//third_party/libc++/src/include/__algorithm/ranges_minmax_element.h",
  126. "//third_party/libc++/src/include/__algorithm/ranges_mismatch.h",
  127. "//third_party/libc++/src/include/__algorithm/ranges_move.h",
  128. "//third_party/libc++/src/include/__algorithm/ranges_move_backward.h",
  129. "//third_party/libc++/src/include/__algorithm/ranges_next_permutation.h",
  130. "//third_party/libc++/src/include/__algorithm/ranges_none_of.h",
  131. "//third_party/libc++/src/include/__algorithm/ranges_nth_element.h",
  132. "//third_party/libc++/src/include/__algorithm/ranges_partial_sort.h",
  133. "//third_party/libc++/src/include/__algorithm/ranges_partial_sort_copy.h",
  134. "//third_party/libc++/src/include/__algorithm/ranges_partition.h",
  135. "//third_party/libc++/src/include/__algorithm/ranges_partition_copy.h",
  136. "//third_party/libc++/src/include/__algorithm/ranges_partition_point.h",
  137. "//third_party/libc++/src/include/__algorithm/ranges_pop_heap.h",
  138. "//third_party/libc++/src/include/__algorithm/ranges_prev_permutation.h",
  139. "//third_party/libc++/src/include/__algorithm/ranges_push_heap.h",
  140. "//third_party/libc++/src/include/__algorithm/ranges_remove.h",
  141. "//third_party/libc++/src/include/__algorithm/ranges_remove_copy.h",
  142. "//third_party/libc++/src/include/__algorithm/ranges_remove_copy_if.h",
  143. "//third_party/libc++/src/include/__algorithm/ranges_remove_if.h",
  144. "//third_party/libc++/src/include/__algorithm/ranges_replace.h",
  145. "//third_party/libc++/src/include/__algorithm/ranges_replace_copy.h",
  146. "//third_party/libc++/src/include/__algorithm/ranges_replace_copy_if.h",
  147. "//third_party/libc++/src/include/__algorithm/ranges_replace_if.h",
  148. "//third_party/libc++/src/include/__algorithm/ranges_reverse.h",
  149. "//third_party/libc++/src/include/__algorithm/ranges_reverse_copy.h",
  150. "//third_party/libc++/src/include/__algorithm/ranges_rotate.h",
  151. "//third_party/libc++/src/include/__algorithm/ranges_rotate_copy.h",
  152. "//third_party/libc++/src/include/__algorithm/ranges_sample.h",
  153. "//third_party/libc++/src/include/__algorithm/ranges_search.h",
  154. "//third_party/libc++/src/include/__algorithm/ranges_search_n.h",
  155. "//third_party/libc++/src/include/__algorithm/ranges_set_difference.h",
  156. "//third_party/libc++/src/include/__algorithm/ranges_set_intersection.h",
  157. "//third_party/libc++/src/include/__algorithm/ranges_set_symmetric_difference.h",
  158. "//third_party/libc++/src/include/__algorithm/ranges_set_union.h",
  159. "//third_party/libc++/src/include/__algorithm/ranges_shuffle.h",
  160. "//third_party/libc++/src/include/__algorithm/ranges_sort.h",
  161. "//third_party/libc++/src/include/__algorithm/ranges_sort_heap.h",
  162. "//third_party/libc++/src/include/__algorithm/ranges_stable_partition.h",
  163. "//third_party/libc++/src/include/__algorithm/ranges_stable_sort.h",
  164. "//third_party/libc++/src/include/__algorithm/ranges_starts_with.h",
  165. "//third_party/libc++/src/include/__algorithm/ranges_swap_ranges.h",
  166. "//third_party/libc++/src/include/__algorithm/ranges_transform.h",
  167. "//third_party/libc++/src/include/__algorithm/ranges_unique.h",
  168. "//third_party/libc++/src/include/__algorithm/ranges_unique_copy.h",
  169. "//third_party/libc++/src/include/__algorithm/ranges_upper_bound.h",
  170. "//third_party/libc++/src/include/__algorithm/remove.h",
  171. "//third_party/libc++/src/include/__algorithm/remove_copy.h",
  172. "//third_party/libc++/src/include/__algorithm/remove_copy_if.h",
  173. "//third_party/libc++/src/include/__algorithm/remove_if.h",
  174. "//third_party/libc++/src/include/__algorithm/replace.h",
  175. "//third_party/libc++/src/include/__algorithm/replace_copy.h",
  176. "//third_party/libc++/src/include/__algorithm/replace_copy_if.h",
  177. "//third_party/libc++/src/include/__algorithm/replace_if.h",
  178. "//third_party/libc++/src/include/__algorithm/reverse.h",
  179. "//third_party/libc++/src/include/__algorithm/reverse_copy.h",
  180. "//third_party/libc++/src/include/__algorithm/rotate.h",
  181. "//third_party/libc++/src/include/__algorithm/rotate_copy.h",
  182. "//third_party/libc++/src/include/__algorithm/sample.h",
  183. "//third_party/libc++/src/include/__algorithm/search.h",
  184. "//third_party/libc++/src/include/__algorithm/search_n.h",
  185. "//third_party/libc++/src/include/__algorithm/set_difference.h",
  186. "//third_party/libc++/src/include/__algorithm/set_intersection.h",
  187. "//third_party/libc++/src/include/__algorithm/set_symmetric_difference.h",
  188. "//third_party/libc++/src/include/__algorithm/set_union.h",
  189. "//third_party/libc++/src/include/__algorithm/shift_left.h",
  190. "//third_party/libc++/src/include/__algorithm/shift_right.h",
  191. "//third_party/libc++/src/include/__algorithm/shuffle.h",
  192. "//third_party/libc++/src/include/__algorithm/sift_down.h",
  193. "//third_party/libc++/src/include/__algorithm/simd_utils.h",
  194. "//third_party/libc++/src/include/__algorithm/sort.h",
  195. "//third_party/libc++/src/include/__algorithm/sort_heap.h",
  196. "//third_party/libc++/src/include/__algorithm/stable_partition.h",
  197. "//third_party/libc++/src/include/__algorithm/stable_sort.h",
  198. "//third_party/libc++/src/include/__algorithm/swap_ranges.h",
  199. "//third_party/libc++/src/include/__algorithm/three_way_comp_ref_type.h",
  200. "//third_party/libc++/src/include/__algorithm/transform.h",
  201. "//third_party/libc++/src/include/__algorithm/uniform_random_bit_generator_adaptor.h",
  202. "//third_party/libc++/src/include/__algorithm/unique.h",
  203. "//third_party/libc++/src/include/__algorithm/unique_copy.h",
  204. "//third_party/libc++/src/include/__algorithm/unwrap_iter.h",
  205. "//third_party/libc++/src/include/__algorithm/unwrap_range.h",
  206. "//third_party/libc++/src/include/__algorithm/upper_bound.h",
  207. "//third_party/libc++/src/include/__assert",
  208. "//third_party/libc++/src/include/__atomic/aliases.h",
  209. "//third_party/libc++/src/include/__atomic/atomic.h",
  210. "//third_party/libc++/src/include/__atomic/atomic_flag.h",
  211. "//third_party/libc++/src/include/__atomic/atomic_init.h",
  212. "//third_party/libc++/src/include/__atomic/atomic_lock_free.h",
  213. "//third_party/libc++/src/include/__atomic/atomic_ref.h",
  214. "//third_party/libc++/src/include/__atomic/atomic_sync.h",
  215. "//third_party/libc++/src/include/__atomic/check_memory_order.h",
  216. "//third_party/libc++/src/include/__atomic/contention_t.h",
  217. "//third_party/libc++/src/include/__atomic/fence.h",
  218. "//third_party/libc++/src/include/__atomic/is_always_lock_free.h",
  219. "//third_party/libc++/src/include/__atomic/kill_dependency.h",
  220. "//third_party/libc++/src/include/__atomic/memory_order.h",
  221. "//third_party/libc++/src/include/__atomic/support/c11.h",
  222. "//third_party/libc++/src/include/__atomic/support/gcc.h",
  223. "//third_party/libc++/src/include/__atomic/support.h",
  224. "//third_party/libc++/src/include/__atomic/to_gcc_order.h",
  225. "//third_party/libc++/src/include/__bit/bit_cast.h",
  226. "//third_party/libc++/src/include/__bit/bit_ceil.h",
  227. "//third_party/libc++/src/include/__bit/bit_floor.h",
  228. "//third_party/libc++/src/include/__bit/bit_log2.h",
  229. "//third_party/libc++/src/include/__bit/bit_width.h",
  230. "//third_party/libc++/src/include/__bit/blsr.h",
  231. "//third_party/libc++/src/include/__bit/byteswap.h",
  232. "//third_party/libc++/src/include/__bit/countl.h",
  233. "//third_party/libc++/src/include/__bit/countr.h",
  234. "//third_party/libc++/src/include/__bit/endian.h",
  235. "//third_party/libc++/src/include/__bit/has_single_bit.h",
  236. "//third_party/libc++/src/include/__bit/invert_if.h",
  237. "//third_party/libc++/src/include/__bit/popcount.h",
  238. "//third_party/libc++/src/include/__bit/rotate.h",
  239. "//third_party/libc++/src/include/__bit_reference",
  240. "//third_party/libc++/src/include/__charconv/chars_format.h",
  241. "//third_party/libc++/src/include/__charconv/from_chars_floating_point.h",
  242. "//third_party/libc++/src/include/__charconv/from_chars_integral.h",
  243. "//third_party/libc++/src/include/__charconv/from_chars_result.h",
  244. "//third_party/libc++/src/include/__charconv/tables.h",
  245. "//third_party/libc++/src/include/__charconv/to_chars.h",
  246. "//third_party/libc++/src/include/__charconv/to_chars_base_10.h",
  247. "//third_party/libc++/src/include/__charconv/to_chars_floating_point.h",
  248. "//third_party/libc++/src/include/__charconv/to_chars_integral.h",
  249. "//third_party/libc++/src/include/__charconv/to_chars_result.h",
  250. "//third_party/libc++/src/include/__charconv/traits.h",
  251. "//third_party/libc++/src/include/__chrono/calendar.h",
  252. "//third_party/libc++/src/include/__chrono/concepts.h",
  253. "//third_party/libc++/src/include/__chrono/convert_to_timespec.h",
  254. "//third_party/libc++/src/include/__chrono/convert_to_tm.h",
  255. "//third_party/libc++/src/include/__chrono/day.h",
  256. "//third_party/libc++/src/include/__chrono/duration.h",
  257. "//third_party/libc++/src/include/__chrono/exception.h",
  258. "//third_party/libc++/src/include/__chrono/file_clock.h",
  259. "//third_party/libc++/src/include/__chrono/formatter.h",
  260. "//third_party/libc++/src/include/__chrono/gps_clock.h",
  261. "//third_party/libc++/src/include/__chrono/hh_mm_ss.h",
  262. "//third_party/libc++/src/include/__chrono/high_resolution_clock.h",
  263. "//third_party/libc++/src/include/__chrono/leap_second.h",
  264. "//third_party/libc++/src/include/__chrono/literals.h",
  265. "//third_party/libc++/src/include/__chrono/local_info.h",
  266. "//third_party/libc++/src/include/__chrono/month.h",
  267. "//third_party/libc++/src/include/__chrono/month_weekday.h",
  268. "//third_party/libc++/src/include/__chrono/monthday.h",
  269. "//third_party/libc++/src/include/__chrono/ostream.h",
  270. "//third_party/libc++/src/include/__chrono/parser_std_format_spec.h",
  271. "//third_party/libc++/src/include/__chrono/statically_widen.h",
  272. "//third_party/libc++/src/include/__chrono/steady_clock.h",
  273. "//third_party/libc++/src/include/__chrono/sys_info.h",
  274. "//third_party/libc++/src/include/__chrono/system_clock.h",
  275. "//third_party/libc++/src/include/__chrono/tai_clock.h",
  276. "//third_party/libc++/src/include/__chrono/time_point.h",
  277. "//third_party/libc++/src/include/__chrono/time_zone.h",
  278. "//third_party/libc++/src/include/__chrono/time_zone_link.h",
  279. "//third_party/libc++/src/include/__chrono/tzdb.h",
  280. "//third_party/libc++/src/include/__chrono/tzdb_list.h",
  281. "//third_party/libc++/src/include/__chrono/utc_clock.h",
  282. "//third_party/libc++/src/include/__chrono/weekday.h",
  283. "//third_party/libc++/src/include/__chrono/year.h",
  284. "//third_party/libc++/src/include/__chrono/year_month.h",
  285. "//third_party/libc++/src/include/__chrono/year_month_day.h",
  286. "//third_party/libc++/src/include/__chrono/year_month_weekday.h",
  287. "//third_party/libc++/src/include/__chrono/zoned_time.h",
  288. "//third_party/libc++/src/include/__compare/common_comparison_category.h",
  289. "//third_party/libc++/src/include/__compare/compare_partial_order_fallback.h",
  290. "//third_party/libc++/src/include/__compare/compare_strong_order_fallback.h",
  291. "//third_party/libc++/src/include/__compare/compare_three_way.h",
  292. "//third_party/libc++/src/include/__compare/compare_three_way_result.h",
  293. "//third_party/libc++/src/include/__compare/compare_weak_order_fallback.h",
  294. "//third_party/libc++/src/include/__compare/is_eq.h",
  295. "//third_party/libc++/src/include/__compare/ordering.h",
  296. "//third_party/libc++/src/include/__compare/partial_order.h",
  297. "//third_party/libc++/src/include/__compare/strong_order.h",
  298. "//third_party/libc++/src/include/__compare/synth_three_way.h",
  299. "//third_party/libc++/src/include/__compare/three_way_comparable.h",
  300. "//third_party/libc++/src/include/__compare/weak_order.h",
  301. "//third_party/libc++/src/include/__concepts/arithmetic.h",
  302. "//third_party/libc++/src/include/__concepts/assignable.h",
  303. "//third_party/libc++/src/include/__concepts/boolean_testable.h",
  304. "//third_party/libc++/src/include/__concepts/class_or_enum.h",
  305. "//third_party/libc++/src/include/__concepts/common_reference_with.h",
  306. "//third_party/libc++/src/include/__concepts/common_with.h",
  307. "//third_party/libc++/src/include/__concepts/constructible.h",
  308. "//third_party/libc++/src/include/__concepts/convertible_to.h",
  309. "//third_party/libc++/src/include/__concepts/copyable.h",
  310. "//third_party/libc++/src/include/__concepts/derived_from.h",
  311. "//third_party/libc++/src/include/__concepts/destructible.h",
  312. "//third_party/libc++/src/include/__concepts/different_from.h",
  313. "//third_party/libc++/src/include/__concepts/equality_comparable.h",
  314. "//third_party/libc++/src/include/__concepts/invocable.h",
  315. "//third_party/libc++/src/include/__concepts/movable.h",
  316. "//third_party/libc++/src/include/__concepts/predicate.h",
  317. "//third_party/libc++/src/include/__concepts/regular.h",
  318. "//third_party/libc++/src/include/__concepts/relation.h",
  319. "//third_party/libc++/src/include/__concepts/same_as.h",
  320. "//third_party/libc++/src/include/__concepts/semiregular.h",
  321. "//third_party/libc++/src/include/__concepts/swappable.h",
  322. "//third_party/libc++/src/include/__concepts/totally_ordered.h",
  323. "//third_party/libc++/src/include/__condition_variable/condition_variable.h",
  324. "//third_party/libc++/src/include/__config",
  325. "//third_party/libc++/src/include/__config_site.in",
  326. "//third_party/libc++/src/include/__configuration/abi.h",
  327. "//third_party/libc++/src/include/__configuration/availability.h",
  328. "//third_party/libc++/src/include/__configuration/compiler.h",
  329. "//third_party/libc++/src/include/__configuration/language.h",
  330. "//third_party/libc++/src/include/__configuration/platform.h",
  331. "//third_party/libc++/src/include/__coroutine/coroutine_handle.h",
  332. "//third_party/libc++/src/include/__coroutine/coroutine_traits.h",
  333. "//third_party/libc++/src/include/__coroutine/noop_coroutine_handle.h",
  334. "//third_party/libc++/src/include/__coroutine/trivial_awaitables.h",
  335. "//third_party/libc++/src/include/__cstddef/byte.h",
  336. "//third_party/libc++/src/include/__cstddef/max_align_t.h",
  337. "//third_party/libc++/src/include/__cstddef/nullptr_t.h",
  338. "//third_party/libc++/src/include/__cstddef/ptrdiff_t.h",
  339. "//third_party/libc++/src/include/__cstddef/size_t.h",
  340. "//third_party/libc++/src/include/__cxx03/__algorithm/adjacent_find.h",
  341. "//third_party/libc++/src/include/__cxx03/__algorithm/all_of.h",
  342. "//third_party/libc++/src/include/__cxx03/__algorithm/any_of.h",
  343. "//third_party/libc++/src/include/__cxx03/__algorithm/binary_search.h",
  344. "//third_party/libc++/src/include/__cxx03/__algorithm/clamp.h",
  345. "//third_party/libc++/src/include/__cxx03/__algorithm/comp.h",
  346. "//third_party/libc++/src/include/__cxx03/__algorithm/comp_ref_type.h",
  347. "//third_party/libc++/src/include/__cxx03/__algorithm/copy.h",
  348. "//third_party/libc++/src/include/__cxx03/__algorithm/copy_backward.h",
  349. "//third_party/libc++/src/include/__cxx03/__algorithm/copy_if.h",
  350. "//third_party/libc++/src/include/__cxx03/__algorithm/copy_move_common.h",
  351. "//third_party/libc++/src/include/__cxx03/__algorithm/copy_n.h",
  352. "//third_party/libc++/src/include/__cxx03/__algorithm/count.h",
  353. "//third_party/libc++/src/include/__cxx03/__algorithm/count_if.h",
  354. "//third_party/libc++/src/include/__cxx03/__algorithm/equal.h",
  355. "//third_party/libc++/src/include/__cxx03/__algorithm/equal_range.h",
  356. "//third_party/libc++/src/include/__cxx03/__algorithm/fill.h",
  357. "//third_party/libc++/src/include/__cxx03/__algorithm/fill_n.h",
  358. "//third_party/libc++/src/include/__cxx03/__algorithm/find.h",
  359. "//third_party/libc++/src/include/__cxx03/__algorithm/find_end.h",
  360. "//third_party/libc++/src/include/__cxx03/__algorithm/find_first_of.h",
  361. "//third_party/libc++/src/include/__cxx03/__algorithm/find_if.h",
  362. "//third_party/libc++/src/include/__cxx03/__algorithm/find_if_not.h",
  363. "//third_party/libc++/src/include/__cxx03/__algorithm/find_segment_if.h",
  364. "//third_party/libc++/src/include/__cxx03/__algorithm/fold.h",
  365. "//third_party/libc++/src/include/__cxx03/__algorithm/for_each.h",
  366. "//third_party/libc++/src/include/__cxx03/__algorithm/for_each_n.h",
  367. "//third_party/libc++/src/include/__cxx03/__algorithm/for_each_segment.h",
  368. "//third_party/libc++/src/include/__cxx03/__algorithm/generate.h",
  369. "//third_party/libc++/src/include/__cxx03/__algorithm/generate_n.h",
  370. "//third_party/libc++/src/include/__cxx03/__algorithm/half_positive.h",
  371. "//third_party/libc++/src/include/__cxx03/__algorithm/in_found_result.h",
  372. "//third_party/libc++/src/include/__cxx03/__algorithm/in_fun_result.h",
  373. "//third_party/libc++/src/include/__cxx03/__algorithm/in_in_out_result.h",
  374. "//third_party/libc++/src/include/__cxx03/__algorithm/in_in_result.h",
  375. "//third_party/libc++/src/include/__cxx03/__algorithm/in_out_out_result.h",
  376. "//third_party/libc++/src/include/__cxx03/__algorithm/in_out_result.h",
  377. "//third_party/libc++/src/include/__cxx03/__algorithm/includes.h",
  378. "//third_party/libc++/src/include/__cxx03/__algorithm/inplace_merge.h",
  379. "//third_party/libc++/src/include/__cxx03/__algorithm/is_heap.h",
  380. "//third_party/libc++/src/include/__cxx03/__algorithm/is_heap_until.h",
  381. "//third_party/libc++/src/include/__cxx03/__algorithm/is_partitioned.h",
  382. "//third_party/libc++/src/include/__cxx03/__algorithm/is_permutation.h",
  383. "//third_party/libc++/src/include/__cxx03/__algorithm/is_sorted.h",
  384. "//third_party/libc++/src/include/__cxx03/__algorithm/is_sorted_until.h",
  385. "//third_party/libc++/src/include/__cxx03/__algorithm/iter_swap.h",
  386. "//third_party/libc++/src/include/__cxx03/__algorithm/iterator_operations.h",
  387. "//third_party/libc++/src/include/__cxx03/__algorithm/lexicographical_compare.h",
  388. "//third_party/libc++/src/include/__cxx03/__algorithm/lexicographical_compare_three_way.h",
  389. "//third_party/libc++/src/include/__cxx03/__algorithm/lower_bound.h",
  390. "//third_party/libc++/src/include/__cxx03/__algorithm/make_heap.h",
  391. "//third_party/libc++/src/include/__cxx03/__algorithm/make_projected.h",
  392. "//third_party/libc++/src/include/__cxx03/__algorithm/max.h",
  393. "//third_party/libc++/src/include/__cxx03/__algorithm/max_element.h",
  394. "//third_party/libc++/src/include/__cxx03/__algorithm/merge.h",
  395. "//third_party/libc++/src/include/__cxx03/__algorithm/min.h",
  396. "//third_party/libc++/src/include/__cxx03/__algorithm/min_element.h",
  397. "//third_party/libc++/src/include/__cxx03/__algorithm/min_max_result.h",
  398. "//third_party/libc++/src/include/__cxx03/__algorithm/minmax.h",
  399. "//third_party/libc++/src/include/__cxx03/__algorithm/minmax_element.h",
  400. "//third_party/libc++/src/include/__cxx03/__algorithm/mismatch.h",
  401. "//third_party/libc++/src/include/__cxx03/__algorithm/move.h",
  402. "//third_party/libc++/src/include/__cxx03/__algorithm/move_backward.h",
  403. "//third_party/libc++/src/include/__cxx03/__algorithm/next_permutation.h",
  404. "//third_party/libc++/src/include/__cxx03/__algorithm/none_of.h",
  405. "//third_party/libc++/src/include/__cxx03/__algorithm/nth_element.h",
  406. "//third_party/libc++/src/include/__cxx03/__algorithm/partial_sort.h",
  407. "//third_party/libc++/src/include/__cxx03/__algorithm/partial_sort_copy.h",
  408. "//third_party/libc++/src/include/__cxx03/__algorithm/partition.h",
  409. "//third_party/libc++/src/include/__cxx03/__algorithm/partition_copy.h",
  410. "//third_party/libc++/src/include/__cxx03/__algorithm/partition_point.h",
  411. "//third_party/libc++/src/include/__cxx03/__algorithm/pop_heap.h",
  412. "//third_party/libc++/src/include/__cxx03/__algorithm/prev_permutation.h",
  413. "//third_party/libc++/src/include/__cxx03/__algorithm/pstl.h",
  414. "//third_party/libc++/src/include/__cxx03/__algorithm/push_heap.h",
  415. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_adjacent_find.h",
  416. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_all_of.h",
  417. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_any_of.h",
  418. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_binary_search.h",
  419. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_clamp.h",
  420. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_contains.h",
  421. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_contains_subrange.h",
  422. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_copy.h",
  423. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_copy_backward.h",
  424. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_copy_if.h",
  425. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_copy_n.h",
  426. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_count.h",
  427. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_count_if.h",
  428. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_ends_with.h",
  429. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_equal.h",
  430. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_equal_range.h",
  431. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_fill.h",
  432. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_fill_n.h",
  433. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_find.h",
  434. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_find_end.h",
  435. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_find_first_of.h",
  436. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_find_if.h",
  437. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_find_if_not.h",
  438. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_find_last.h",
  439. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_for_each.h",
  440. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_for_each_n.h",
  441. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_generate.h",
  442. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_generate_n.h",
  443. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_includes.h",
  444. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_inplace_merge.h",
  445. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_is_heap.h",
  446. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_is_heap_until.h",
  447. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_is_partitioned.h",
  448. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_is_permutation.h",
  449. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_is_sorted.h",
  450. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_is_sorted_until.h",
  451. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_iterator_concept.h",
  452. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_lexicographical_compare.h",
  453. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_lower_bound.h",
  454. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_make_heap.h",
  455. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_max.h",
  456. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_max_element.h",
  457. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_merge.h",
  458. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_min.h",
  459. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_min_element.h",
  460. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_minmax.h",
  461. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_minmax_element.h",
  462. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_mismatch.h",
  463. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_move.h",
  464. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_move_backward.h",
  465. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_next_permutation.h",
  466. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_none_of.h",
  467. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_nth_element.h",
  468. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_partial_sort.h",
  469. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_partial_sort_copy.h",
  470. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_partition.h",
  471. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_partition_copy.h",
  472. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_partition_point.h",
  473. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_pop_heap.h",
  474. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_prev_permutation.h",
  475. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_push_heap.h",
  476. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_remove.h",
  477. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_remove_copy.h",
  478. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_remove_copy_if.h",
  479. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_remove_if.h",
  480. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_replace.h",
  481. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_replace_copy.h",
  482. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_replace_copy_if.h",
  483. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_replace_if.h",
  484. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_reverse.h",
  485. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_reverse_copy.h",
  486. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_rotate.h",
  487. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_rotate_copy.h",
  488. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_sample.h",
  489. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_search.h",
  490. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_search_n.h",
  491. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_set_difference.h",
  492. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_set_intersection.h",
  493. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_set_symmetric_difference.h",
  494. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_set_union.h",
  495. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_shuffle.h",
  496. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_sort.h",
  497. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_sort_heap.h",
  498. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_stable_partition.h",
  499. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_stable_sort.h",
  500. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_starts_with.h",
  501. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_swap_ranges.h",
  502. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_transform.h",
  503. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_unique.h",
  504. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_unique_copy.h",
  505. "//third_party/libc++/src/include/__cxx03/__algorithm/ranges_upper_bound.h",
  506. "//third_party/libc++/src/include/__cxx03/__algorithm/remove.h",
  507. "//third_party/libc++/src/include/__cxx03/__algorithm/remove_copy.h",
  508. "//third_party/libc++/src/include/__cxx03/__algorithm/remove_copy_if.h",
  509. "//third_party/libc++/src/include/__cxx03/__algorithm/remove_if.h",
  510. "//third_party/libc++/src/include/__cxx03/__algorithm/replace.h",
  511. "//third_party/libc++/src/include/__cxx03/__algorithm/replace_copy.h",
  512. "//third_party/libc++/src/include/__cxx03/__algorithm/replace_copy_if.h",
  513. "//third_party/libc++/src/include/__cxx03/__algorithm/replace_if.h",
  514. "//third_party/libc++/src/include/__cxx03/__algorithm/reverse.h",
  515. "//third_party/libc++/src/include/__cxx03/__algorithm/reverse_copy.h",
  516. "//third_party/libc++/src/include/__cxx03/__algorithm/rotate.h",
  517. "//third_party/libc++/src/include/__cxx03/__algorithm/rotate_copy.h",
  518. "//third_party/libc++/src/include/__cxx03/__algorithm/sample.h",
  519. "//third_party/libc++/src/include/__cxx03/__algorithm/search.h",
  520. "//third_party/libc++/src/include/__cxx03/__algorithm/search_n.h",
  521. "//third_party/libc++/src/include/__cxx03/__algorithm/set_difference.h",
  522. "//third_party/libc++/src/include/__cxx03/__algorithm/set_intersection.h",
  523. "//third_party/libc++/src/include/__cxx03/__algorithm/set_symmetric_difference.h",
  524. "//third_party/libc++/src/include/__cxx03/__algorithm/set_union.h",
  525. "//third_party/libc++/src/include/__cxx03/__algorithm/shift_left.h",
  526. "//third_party/libc++/src/include/__cxx03/__algorithm/shift_right.h",
  527. "//third_party/libc++/src/include/__cxx03/__algorithm/shuffle.h",
  528. "//third_party/libc++/src/include/__cxx03/__algorithm/sift_down.h",
  529. "//third_party/libc++/src/include/__cxx03/__algorithm/simd_utils.h",
  530. "//third_party/libc++/src/include/__cxx03/__algorithm/sort.h",
  531. "//third_party/libc++/src/include/__cxx03/__algorithm/sort_heap.h",
  532. "//third_party/libc++/src/include/__cxx03/__algorithm/stable_partition.h",
  533. "//third_party/libc++/src/include/__cxx03/__algorithm/stable_sort.h",
  534. "//third_party/libc++/src/include/__cxx03/__algorithm/swap_ranges.h",
  535. "//third_party/libc++/src/include/__cxx03/__algorithm/three_way_comp_ref_type.h",
  536. "//third_party/libc++/src/include/__cxx03/__algorithm/transform.h",
  537. "//third_party/libc++/src/include/__cxx03/__algorithm/uniform_random_bit_generator_adaptor.h",
  538. "//third_party/libc++/src/include/__cxx03/__algorithm/unique.h",
  539. "//third_party/libc++/src/include/__cxx03/__algorithm/unique_copy.h",
  540. "//third_party/libc++/src/include/__cxx03/__algorithm/unwrap_iter.h",
  541. "//third_party/libc++/src/include/__cxx03/__algorithm/unwrap_range.h",
  542. "//third_party/libc++/src/include/__cxx03/__algorithm/upper_bound.h",
  543. "//third_party/libc++/src/include/__cxx03/__assert",
  544. "//third_party/libc++/src/include/__cxx03/__atomic/aliases.h",
  545. "//third_party/libc++/src/include/__cxx03/__atomic/atomic.h",
  546. "//third_party/libc++/src/include/__cxx03/__atomic/atomic_base.h",
  547. "//third_party/libc++/src/include/__cxx03/__atomic/atomic_flag.h",
  548. "//third_party/libc++/src/include/__cxx03/__atomic/atomic_init.h",
  549. "//third_party/libc++/src/include/__cxx03/__atomic/atomic_lock_free.h",
  550. "//third_party/libc++/src/include/__cxx03/__atomic/atomic_ref.h",
  551. "//third_party/libc++/src/include/__cxx03/__atomic/atomic_sync.h",
  552. "//third_party/libc++/src/include/__cxx03/__atomic/check_memory_order.h",
  553. "//third_party/libc++/src/include/__cxx03/__atomic/contention_t.h",
  554. "//third_party/libc++/src/include/__cxx03/__atomic/cxx_atomic_impl.h",
  555. "//third_party/libc++/src/include/__cxx03/__atomic/fence.h",
  556. "//third_party/libc++/src/include/__cxx03/__atomic/is_always_lock_free.h",
  557. "//third_party/libc++/src/include/__cxx03/__atomic/kill_dependency.h",
  558. "//third_party/libc++/src/include/__cxx03/__atomic/memory_order.h",
  559. "//third_party/libc++/src/include/__cxx03/__atomic/to_gcc_order.h",
  560. "//third_party/libc++/src/include/__cxx03/__bit/bit_cast.h",
  561. "//third_party/libc++/src/include/__cxx03/__bit/bit_ceil.h",
  562. "//third_party/libc++/src/include/__cxx03/__bit/bit_floor.h",
  563. "//third_party/libc++/src/include/__cxx03/__bit/bit_log2.h",
  564. "//third_party/libc++/src/include/__cxx03/__bit/bit_width.h",
  565. "//third_party/libc++/src/include/__cxx03/__bit/blsr.h",
  566. "//third_party/libc++/src/include/__cxx03/__bit/byteswap.h",
  567. "//third_party/libc++/src/include/__cxx03/__bit/countl.h",
  568. "//third_party/libc++/src/include/__cxx03/__bit/countr.h",
  569. "//third_party/libc++/src/include/__cxx03/__bit/endian.h",
  570. "//third_party/libc++/src/include/__cxx03/__bit/has_single_bit.h",
  571. "//third_party/libc++/src/include/__cxx03/__bit/invert_if.h",
  572. "//third_party/libc++/src/include/__cxx03/__bit/popcount.h",
  573. "//third_party/libc++/src/include/__cxx03/__bit/rotate.h",
  574. "//third_party/libc++/src/include/__cxx03/__bit_reference",
  575. "//third_party/libc++/src/include/__cxx03/__charconv/chars_format.h",
  576. "//third_party/libc++/src/include/__cxx03/__charconv/from_chars_integral.h",
  577. "//third_party/libc++/src/include/__cxx03/__charconv/from_chars_result.h",
  578. "//third_party/libc++/src/include/__cxx03/__charconv/tables.h",
  579. "//third_party/libc++/src/include/__cxx03/__charconv/to_chars.h",
  580. "//third_party/libc++/src/include/__cxx03/__charconv/to_chars_base_10.h",
  581. "//third_party/libc++/src/include/__cxx03/__charconv/to_chars_floating_point.h",
  582. "//third_party/libc++/src/include/__cxx03/__charconv/to_chars_integral.h",
  583. "//third_party/libc++/src/include/__cxx03/__charconv/to_chars_result.h",
  584. "//third_party/libc++/src/include/__cxx03/__charconv/traits.h",
  585. "//third_party/libc++/src/include/__cxx03/__chrono/calendar.h",
  586. "//third_party/libc++/src/include/__cxx03/__chrono/concepts.h",
  587. "//third_party/libc++/src/include/__cxx03/__chrono/convert_to_timespec.h",
  588. "//third_party/libc++/src/include/__cxx03/__chrono/convert_to_tm.h",
  589. "//third_party/libc++/src/include/__cxx03/__chrono/day.h",
  590. "//third_party/libc++/src/include/__cxx03/__chrono/duration.h",
  591. "//third_party/libc++/src/include/__cxx03/__chrono/exception.h",
  592. "//third_party/libc++/src/include/__cxx03/__chrono/file_clock.h",
  593. "//third_party/libc++/src/include/__cxx03/__chrono/formatter.h",
  594. "//third_party/libc++/src/include/__cxx03/__chrono/hh_mm_ss.h",
  595. "//third_party/libc++/src/include/__cxx03/__chrono/high_resolution_clock.h",
  596. "//third_party/libc++/src/include/__cxx03/__chrono/leap_second.h",
  597. "//third_party/libc++/src/include/__cxx03/__chrono/literals.h",
  598. "//third_party/libc++/src/include/__cxx03/__chrono/local_info.h",
  599. "//third_party/libc++/src/include/__cxx03/__chrono/month.h",
  600. "//third_party/libc++/src/include/__cxx03/__chrono/month_weekday.h",
  601. "//third_party/libc++/src/include/__cxx03/__chrono/monthday.h",
  602. "//third_party/libc++/src/include/__cxx03/__chrono/ostream.h",
  603. "//third_party/libc++/src/include/__cxx03/__chrono/parser_std_format_spec.h",
  604. "//third_party/libc++/src/include/__cxx03/__chrono/statically_widen.h",
  605. "//third_party/libc++/src/include/__cxx03/__chrono/steady_clock.h",
  606. "//third_party/libc++/src/include/__cxx03/__chrono/sys_info.h",
  607. "//third_party/libc++/src/include/__cxx03/__chrono/system_clock.h",
  608. "//third_party/libc++/src/include/__cxx03/__chrono/time_point.h",
  609. "//third_party/libc++/src/include/__cxx03/__chrono/time_zone.h",
  610. "//third_party/libc++/src/include/__cxx03/__chrono/time_zone_link.h",
  611. "//third_party/libc++/src/include/__cxx03/__chrono/tzdb.h",
  612. "//third_party/libc++/src/include/__cxx03/__chrono/tzdb_list.h",
  613. "//third_party/libc++/src/include/__cxx03/__chrono/weekday.h",
  614. "//third_party/libc++/src/include/__cxx03/__chrono/year.h",
  615. "//third_party/libc++/src/include/__cxx03/__chrono/year_month.h",
  616. "//third_party/libc++/src/include/__cxx03/__chrono/year_month_day.h",
  617. "//third_party/libc++/src/include/__cxx03/__chrono/year_month_weekday.h",
  618. "//third_party/libc++/src/include/__cxx03/__chrono/zoned_time.h",
  619. "//third_party/libc++/src/include/__cxx03/__compare/common_comparison_category.h",
  620. "//third_party/libc++/src/include/__cxx03/__compare/compare_partial_order_fallback.h",
  621. "//third_party/libc++/src/include/__cxx03/__compare/compare_strong_order_fallback.h",
  622. "//third_party/libc++/src/include/__cxx03/__compare/compare_three_way.h",
  623. "//third_party/libc++/src/include/__cxx03/__compare/compare_three_way_result.h",
  624. "//third_party/libc++/src/include/__cxx03/__compare/compare_weak_order_fallback.h",
  625. "//third_party/libc++/src/include/__cxx03/__compare/is_eq.h",
  626. "//third_party/libc++/src/include/__cxx03/__compare/ordering.h",
  627. "//third_party/libc++/src/include/__cxx03/__compare/partial_order.h",
  628. "//third_party/libc++/src/include/__cxx03/__compare/strong_order.h",
  629. "//third_party/libc++/src/include/__cxx03/__compare/synth_three_way.h",
  630. "//third_party/libc++/src/include/__cxx03/__compare/three_way_comparable.h",
  631. "//third_party/libc++/src/include/__cxx03/__compare/weak_order.h",
  632. "//third_party/libc++/src/include/__cxx03/__concepts/arithmetic.h",
  633. "//third_party/libc++/src/include/__cxx03/__concepts/assignable.h",
  634. "//third_party/libc++/src/include/__cxx03/__concepts/boolean_testable.h",
  635. "//third_party/libc++/src/include/__cxx03/__concepts/class_or_enum.h",
  636. "//third_party/libc++/src/include/__cxx03/__concepts/common_reference_with.h",
  637. "//third_party/libc++/src/include/__cxx03/__concepts/common_with.h",
  638. "//third_party/libc++/src/include/__cxx03/__concepts/constructible.h",
  639. "//third_party/libc++/src/include/__cxx03/__concepts/convertible_to.h",
  640. "//third_party/libc++/src/include/__cxx03/__concepts/copyable.h",
  641. "//third_party/libc++/src/include/__cxx03/__concepts/derived_from.h",
  642. "//third_party/libc++/src/include/__cxx03/__concepts/destructible.h",
  643. "//third_party/libc++/src/include/__cxx03/__concepts/different_from.h",
  644. "//third_party/libc++/src/include/__cxx03/__concepts/equality_comparable.h",
  645. "//third_party/libc++/src/include/__cxx03/__concepts/invocable.h",
  646. "//third_party/libc++/src/include/__cxx03/__concepts/movable.h",
  647. "//third_party/libc++/src/include/__cxx03/__concepts/predicate.h",
  648. "//third_party/libc++/src/include/__cxx03/__concepts/regular.h",
  649. "//third_party/libc++/src/include/__cxx03/__concepts/relation.h",
  650. "//third_party/libc++/src/include/__cxx03/__concepts/same_as.h",
  651. "//third_party/libc++/src/include/__cxx03/__concepts/semiregular.h",
  652. "//third_party/libc++/src/include/__cxx03/__concepts/swappable.h",
  653. "//third_party/libc++/src/include/__cxx03/__concepts/totally_ordered.h",
  654. "//third_party/libc++/src/include/__cxx03/__condition_variable/condition_variable.h",
  655. "//third_party/libc++/src/include/__cxx03/__config",
  656. "//third_party/libc++/src/include/__cxx03/__config_site.in",
  657. "//third_party/libc++/src/include/__cxx03/__configuration/abi.h",
  658. "//third_party/libc++/src/include/__cxx03/__configuration/availability.h",
  659. "//third_party/libc++/src/include/__cxx03/__configuration/compiler.h",
  660. "//third_party/libc++/src/include/__cxx03/__configuration/config_site_shim.h",
  661. "//third_party/libc++/src/include/__cxx03/__configuration/language.h",
  662. "//third_party/libc++/src/include/__cxx03/__configuration/platform.h",
  663. "//third_party/libc++/src/include/__cxx03/__coroutine/coroutine_handle.h",
  664. "//third_party/libc++/src/include/__cxx03/__coroutine/coroutine_traits.h",
  665. "//third_party/libc++/src/include/__cxx03/__coroutine/noop_coroutine_handle.h",
  666. "//third_party/libc++/src/include/__cxx03/__coroutine/trivial_awaitables.h",
  667. "//third_party/libc++/src/include/__cxx03/__debug_utils/randomize_range.h",
  668. "//third_party/libc++/src/include/__cxx03/__debug_utils/sanitizers.h",
  669. "//third_party/libc++/src/include/__cxx03/__debug_utils/strict_weak_ordering_check.h",
  670. "//third_party/libc++/src/include/__cxx03/__exception/exception.h",
  671. "//third_party/libc++/src/include/__cxx03/__exception/exception_ptr.h",
  672. "//third_party/libc++/src/include/__cxx03/__exception/nested_exception.h",
  673. "//third_party/libc++/src/include/__cxx03/__exception/operations.h",
  674. "//third_party/libc++/src/include/__cxx03/__exception/terminate.h",
  675. "//third_party/libc++/src/include/__cxx03/__expected/bad_expected_access.h",
  676. "//third_party/libc++/src/include/__cxx03/__expected/expected.h",
  677. "//third_party/libc++/src/include/__cxx03/__expected/unexpect.h",
  678. "//third_party/libc++/src/include/__cxx03/__expected/unexpected.h",
  679. "//third_party/libc++/src/include/__cxx03/__filesystem/copy_options.h",
  680. "//third_party/libc++/src/include/__cxx03/__filesystem/directory_entry.h",
  681. "//third_party/libc++/src/include/__cxx03/__filesystem/directory_iterator.h",
  682. "//third_party/libc++/src/include/__cxx03/__filesystem/directory_options.h",
  683. "//third_party/libc++/src/include/__cxx03/__filesystem/file_status.h",
  684. "//third_party/libc++/src/include/__cxx03/__filesystem/file_time_type.h",
  685. "//third_party/libc++/src/include/__cxx03/__filesystem/file_type.h",
  686. "//third_party/libc++/src/include/__cxx03/__filesystem/filesystem_error.h",
  687. "//third_party/libc++/src/include/__cxx03/__filesystem/operations.h",
  688. "//third_party/libc++/src/include/__cxx03/__filesystem/path.h",
  689. "//third_party/libc++/src/include/__cxx03/__filesystem/path_iterator.h",
  690. "//third_party/libc++/src/include/__cxx03/__filesystem/perm_options.h",
  691. "//third_party/libc++/src/include/__cxx03/__filesystem/perms.h",
  692. "//third_party/libc++/src/include/__cxx03/__filesystem/recursive_directory_iterator.h",
  693. "//third_party/libc++/src/include/__cxx03/__filesystem/space_info.h",
  694. "//third_party/libc++/src/include/__cxx03/__filesystem/u8path.h",
  695. "//third_party/libc++/src/include/__cxx03/__format/buffer.h",
  696. "//third_party/libc++/src/include/__cxx03/__format/concepts.h",
  697. "//third_party/libc++/src/include/__cxx03/__format/container_adaptor.h",
  698. "//third_party/libc++/src/include/__cxx03/__format/enable_insertable.h",
  699. "//third_party/libc++/src/include/__cxx03/__format/escaped_output_table.h",
  700. "//third_party/libc++/src/include/__cxx03/__format/extended_grapheme_cluster_table.h",
  701. "//third_party/libc++/src/include/__cxx03/__format/format_arg.h",
  702. "//third_party/libc++/src/include/__cxx03/__format/format_arg_store.h",
  703. "//third_party/libc++/src/include/__cxx03/__format/format_args.h",
  704. "//third_party/libc++/src/include/__cxx03/__format/format_context.h",
  705. "//third_party/libc++/src/include/__cxx03/__format/format_error.h",
  706. "//third_party/libc++/src/include/__cxx03/__format/format_functions.h",
  707. "//third_party/libc++/src/include/__cxx03/__format/format_parse_context.h",
  708. "//third_party/libc++/src/include/__cxx03/__format/format_string.h",
  709. "//third_party/libc++/src/include/__cxx03/__format/format_to_n_result.h",
  710. "//third_party/libc++/src/include/__cxx03/__format/formatter.h",
  711. "//third_party/libc++/src/include/__cxx03/__format/formatter_bool.h",
  712. "//third_party/libc++/src/include/__cxx03/__format/formatter_char.h",
  713. "//third_party/libc++/src/include/__cxx03/__format/formatter_floating_point.h",
  714. "//third_party/libc++/src/include/__cxx03/__format/formatter_integer.h",
  715. "//third_party/libc++/src/include/__cxx03/__format/formatter_integral.h",
  716. "//third_party/libc++/src/include/__cxx03/__format/formatter_output.h",
  717. "//third_party/libc++/src/include/__cxx03/__format/formatter_pointer.h",
  718. "//third_party/libc++/src/include/__cxx03/__format/formatter_string.h",
  719. "//third_party/libc++/src/include/__cxx03/__format/formatter_tuple.h",
  720. "//third_party/libc++/src/include/__cxx03/__format/indic_conjunct_break_table.h",
  721. "//third_party/libc++/src/include/__cxx03/__format/parser_std_format_spec.h",
  722. "//third_party/libc++/src/include/__cxx03/__format/range_default_formatter.h",
  723. "//third_party/libc++/src/include/__cxx03/__format/range_formatter.h",
  724. "//third_party/libc++/src/include/__cxx03/__format/unicode.h",
  725. "//third_party/libc++/src/include/__cxx03/__format/width_estimation_table.h",
  726. "//third_party/libc++/src/include/__cxx03/__format/write_escaped.h",
  727. "//third_party/libc++/src/include/__cxx03/__functional/binary_function.h",
  728. "//third_party/libc++/src/include/__cxx03/__functional/binary_negate.h",
  729. "//third_party/libc++/src/include/__cxx03/__functional/bind.h",
  730. "//third_party/libc++/src/include/__cxx03/__functional/bind_back.h",
  731. "//third_party/libc++/src/include/__cxx03/__functional/bind_front.h",
  732. "//third_party/libc++/src/include/__cxx03/__functional/binder1st.h",
  733. "//third_party/libc++/src/include/__cxx03/__functional/binder2nd.h",
  734. "//third_party/libc++/src/include/__cxx03/__functional/boyer_moore_searcher.h",
  735. "//third_party/libc++/src/include/__cxx03/__functional/compose.h",
  736. "//third_party/libc++/src/include/__cxx03/__functional/default_searcher.h",
  737. "//third_party/libc++/src/include/__cxx03/__functional/function.h",
  738. "//third_party/libc++/src/include/__cxx03/__functional/hash.h",
  739. "//third_party/libc++/src/include/__cxx03/__functional/identity.h",
  740. "//third_party/libc++/src/include/__cxx03/__functional/invoke.h",
  741. "//third_party/libc++/src/include/__cxx03/__functional/is_transparent.h",
  742. "//third_party/libc++/src/include/__cxx03/__functional/mem_fn.h",
  743. "//third_party/libc++/src/include/__cxx03/__functional/mem_fun_ref.h",
  744. "//third_party/libc++/src/include/__cxx03/__functional/not_fn.h",
  745. "//third_party/libc++/src/include/__cxx03/__functional/operations.h",
  746. "//third_party/libc++/src/include/__cxx03/__functional/perfect_forward.h",
  747. "//third_party/libc++/src/include/__cxx03/__functional/pointer_to_binary_function.h",
  748. "//third_party/libc++/src/include/__cxx03/__functional/pointer_to_unary_function.h",
  749. "//third_party/libc++/src/include/__cxx03/__functional/ranges_operations.h",
  750. "//third_party/libc++/src/include/__cxx03/__functional/reference_wrapper.h",
  751. "//third_party/libc++/src/include/__cxx03/__functional/unary_function.h",
  752. "//third_party/libc++/src/include/__cxx03/__functional/unary_negate.h",
  753. "//third_party/libc++/src/include/__cxx03/__functional/weak_result_type.h",
  754. "//third_party/libc++/src/include/__cxx03/__fwd/array.h",
  755. "//third_party/libc++/src/include/__cxx03/__fwd/bit_reference.h",
  756. "//third_party/libc++/src/include/__cxx03/__fwd/complex.h",
  757. "//third_party/libc++/src/include/__cxx03/__fwd/deque.h",
  758. "//third_party/libc++/src/include/__cxx03/__fwd/format.h",
  759. "//third_party/libc++/src/include/__cxx03/__fwd/fstream.h",
  760. "//third_party/libc++/src/include/__cxx03/__fwd/functional.h",
  761. "//third_party/libc++/src/include/__cxx03/__fwd/ios.h",
  762. "//third_party/libc++/src/include/__cxx03/__fwd/istream.h",
  763. "//third_party/libc++/src/include/__cxx03/__fwd/mdspan.h",
  764. "//third_party/libc++/src/include/__cxx03/__fwd/memory.h",
  765. "//third_party/libc++/src/include/__cxx03/__fwd/memory_resource.h",
  766. "//third_party/libc++/src/include/__cxx03/__fwd/ostream.h",
  767. "//third_party/libc++/src/include/__cxx03/__fwd/pair.h",
  768. "//third_party/libc++/src/include/__cxx03/__fwd/queue.h",
  769. "//third_party/libc++/src/include/__cxx03/__fwd/span.h",
  770. "//third_party/libc++/src/include/__cxx03/__fwd/sstream.h",
  771. "//third_party/libc++/src/include/__cxx03/__fwd/stack.h",
  772. "//third_party/libc++/src/include/__cxx03/__fwd/streambuf.h",
  773. "//third_party/libc++/src/include/__cxx03/__fwd/string.h",
  774. "//third_party/libc++/src/include/__cxx03/__fwd/string_view.h",
  775. "//third_party/libc++/src/include/__cxx03/__fwd/subrange.h",
  776. "//third_party/libc++/src/include/__cxx03/__fwd/tuple.h",
  777. "//third_party/libc++/src/include/__cxx03/__fwd/vector.h",
  778. "//third_party/libc++/src/include/__cxx03/__hash_table",
  779. "//third_party/libc++/src/include/__cxx03/__ios/fpos.h",
  780. "//third_party/libc++/src/include/__cxx03/__iterator/access.h",
  781. "//third_party/libc++/src/include/__cxx03/__iterator/advance.h",
  782. "//third_party/libc++/src/include/__cxx03/__iterator/aliasing_iterator.h",
  783. "//third_party/libc++/src/include/__cxx03/__iterator/back_insert_iterator.h",
  784. "//third_party/libc++/src/include/__cxx03/__iterator/bounded_iter.h",
  785. "//third_party/libc++/src/include/__cxx03/__iterator/common_iterator.h",
  786. "//third_party/libc++/src/include/__cxx03/__iterator/concepts.h",
  787. "//third_party/libc++/src/include/__cxx03/__iterator/counted_iterator.h",
  788. "//third_party/libc++/src/include/__cxx03/__iterator/cpp17_iterator_concepts.h",
  789. "//third_party/libc++/src/include/__cxx03/__iterator/data.h",
  790. "//third_party/libc++/src/include/__cxx03/__iterator/default_sentinel.h",
  791. "//third_party/libc++/src/include/__cxx03/__iterator/distance.h",
  792. "//third_party/libc++/src/include/__cxx03/__iterator/empty.h",
  793. "//third_party/libc++/src/include/__cxx03/__iterator/erase_if_container.h",
  794. "//third_party/libc++/src/include/__cxx03/__iterator/front_insert_iterator.h",
  795. "//third_party/libc++/src/include/__cxx03/__iterator/incrementable_traits.h",
  796. "//third_party/libc++/src/include/__cxx03/__iterator/indirectly_comparable.h",
  797. "//third_party/libc++/src/include/__cxx03/__iterator/insert_iterator.h",
  798. "//third_party/libc++/src/include/__cxx03/__iterator/istream_iterator.h",
  799. "//third_party/libc++/src/include/__cxx03/__iterator/istreambuf_iterator.h",
  800. "//third_party/libc++/src/include/__cxx03/__iterator/iter_move.h",
  801. "//third_party/libc++/src/include/__cxx03/__iterator/iter_swap.h",
  802. "//third_party/libc++/src/include/__cxx03/__iterator/iterator.h",
  803. "//third_party/libc++/src/include/__cxx03/__iterator/iterator_traits.h",
  804. "//third_party/libc++/src/include/__cxx03/__iterator/iterator_with_data.h",
  805. "//third_party/libc++/src/include/__cxx03/__iterator/mergeable.h",
  806. "//third_party/libc++/src/include/__cxx03/__iterator/move_iterator.h",
  807. "//third_party/libc++/src/include/__cxx03/__iterator/move_sentinel.h",
  808. "//third_party/libc++/src/include/__cxx03/__iterator/next.h",
  809. "//third_party/libc++/src/include/__cxx03/__iterator/ostream_iterator.h",
  810. "//third_party/libc++/src/include/__cxx03/__iterator/ostreambuf_iterator.h",
  811. "//third_party/libc++/src/include/__cxx03/__iterator/permutable.h",
  812. "//third_party/libc++/src/include/__cxx03/__iterator/prev.h",
  813. "//third_party/libc++/src/include/__cxx03/__iterator/projected.h",
  814. "//third_party/libc++/src/include/__cxx03/__iterator/ranges_iterator_traits.h",
  815. "//third_party/libc++/src/include/__cxx03/__iterator/readable_traits.h",
  816. "//third_party/libc++/src/include/__cxx03/__iterator/reverse_access.h",
  817. "//third_party/libc++/src/include/__cxx03/__iterator/reverse_iterator.h",
  818. "//third_party/libc++/src/include/__cxx03/__iterator/segmented_iterator.h",
  819. "//third_party/libc++/src/include/__cxx03/__iterator/size.h",
  820. "//third_party/libc++/src/include/__cxx03/__iterator/sortable.h",
  821. "//third_party/libc++/src/include/__cxx03/__iterator/unreachable_sentinel.h",
  822. "//third_party/libc++/src/include/__cxx03/__iterator/wrap_iter.h",
  823. "//third_party/libc++/src/include/__cxx03/__locale",
  824. "//third_party/libc++/src/include/__cxx03/__locale_dir/locale_base_api/android.h",
  825. "//third_party/libc++/src/include/__cxx03/__locale_dir/locale_base_api/bsd_locale_defaults.h",
  826. "//third_party/libc++/src/include/__cxx03/__locale_dir/locale_base_api/bsd_locale_fallbacks.h",
  827. "//third_party/libc++/src/include/__cxx03/__locale_dir/locale_base_api/fuchsia.h",
  828. "//third_party/libc++/src/include/__cxx03/__locale_dir/locale_base_api/ibm.h",
  829. "//third_party/libc++/src/include/__cxx03/__locale_dir/locale_base_api/locale_guard.h",
  830. "//third_party/libc++/src/include/__cxx03/__locale_dir/locale_base_api/musl.h",
  831. "//third_party/libc++/src/include/__cxx03/__locale_dir/locale_base_api/newlib.h",
  832. "//third_party/libc++/src/include/__cxx03/__locale_dir/locale_base_api/openbsd.h",
  833. "//third_party/libc++/src/include/__cxx03/__locale_dir/locale_base_api/win32.h",
  834. "//third_party/libc++/src/include/__cxx03/__locale_dir/locale_base_api.h",
  835. "//third_party/libc++/src/include/__cxx03/__math/abs.h",
  836. "//third_party/libc++/src/include/__cxx03/__math/copysign.h",
  837. "//third_party/libc++/src/include/__cxx03/__math/error_functions.h",
  838. "//third_party/libc++/src/include/__cxx03/__math/exponential_functions.h",
  839. "//third_party/libc++/src/include/__cxx03/__math/fdim.h",
  840. "//third_party/libc++/src/include/__cxx03/__math/fma.h",
  841. "//third_party/libc++/src/include/__cxx03/__math/gamma.h",
  842. "//third_party/libc++/src/include/__cxx03/__math/hyperbolic_functions.h",
  843. "//third_party/libc++/src/include/__cxx03/__math/hypot.h",
  844. "//third_party/libc++/src/include/__cxx03/__math/inverse_hyperbolic_functions.h",
  845. "//third_party/libc++/src/include/__cxx03/__math/inverse_trigonometric_functions.h",
  846. "//third_party/libc++/src/include/__cxx03/__math/logarithms.h",
  847. "//third_party/libc++/src/include/__cxx03/__math/min_max.h",
  848. "//third_party/libc++/src/include/__cxx03/__math/modulo.h",
  849. "//third_party/libc++/src/include/__cxx03/__math/remainder.h",
  850. "//third_party/libc++/src/include/__cxx03/__math/roots.h",
  851. "//third_party/libc++/src/include/__cxx03/__math/rounding_functions.h",
  852. "//third_party/libc++/src/include/__cxx03/__math/special_functions.h",
  853. "//third_party/libc++/src/include/__cxx03/__math/traits.h",
  854. "//third_party/libc++/src/include/__cxx03/__math/trigonometric_functions.h",
  855. "//third_party/libc++/src/include/__cxx03/__mbstate_t.h",
  856. "//third_party/libc++/src/include/__cxx03/__mdspan/default_accessor.h",
  857. "//third_party/libc++/src/include/__cxx03/__mdspan/extents.h",
  858. "//third_party/libc++/src/include/__cxx03/__mdspan/layout_left.h",
  859. "//third_party/libc++/src/include/__cxx03/__mdspan/layout_right.h",
  860. "//third_party/libc++/src/include/__cxx03/__mdspan/layout_stride.h",
  861. "//third_party/libc++/src/include/__cxx03/__mdspan/mdspan.h",
  862. "//third_party/libc++/src/include/__cxx03/__memory/addressof.h",
  863. "//third_party/libc++/src/include/__cxx03/__memory/align.h",
  864. "//third_party/libc++/src/include/__cxx03/__memory/aligned_alloc.h",
  865. "//third_party/libc++/src/include/__cxx03/__memory/allocate_at_least.h",
  866. "//third_party/libc++/src/include/__cxx03/__memory/allocation_guard.h",
  867. "//third_party/libc++/src/include/__cxx03/__memory/allocator.h",
  868. "//third_party/libc++/src/include/__cxx03/__memory/allocator_arg_t.h",
  869. "//third_party/libc++/src/include/__cxx03/__memory/allocator_destructor.h",
  870. "//third_party/libc++/src/include/__cxx03/__memory/allocator_traits.h",
  871. "//third_party/libc++/src/include/__cxx03/__memory/assume_aligned.h",
  872. "//third_party/libc++/src/include/__cxx03/__memory/auto_ptr.h",
  873. "//third_party/libc++/src/include/__cxx03/__memory/builtin_new_allocator.h",
  874. "//third_party/libc++/src/include/__cxx03/__memory/compressed_pair.h",
  875. "//third_party/libc++/src/include/__cxx03/__memory/concepts.h",
  876. "//third_party/libc++/src/include/__cxx03/__memory/construct_at.h",
  877. "//third_party/libc++/src/include/__cxx03/__memory/destruct_n.h",
  878. "//third_party/libc++/src/include/__cxx03/__memory/inout_ptr.h",
  879. "//third_party/libc++/src/include/__cxx03/__memory/out_ptr.h",
  880. "//third_party/libc++/src/include/__cxx03/__memory/pointer_traits.h",
  881. "//third_party/libc++/src/include/__cxx03/__memory/ranges_construct_at.h",
  882. "//third_party/libc++/src/include/__cxx03/__memory/ranges_uninitialized_algorithms.h",
  883. "//third_party/libc++/src/include/__cxx03/__memory/raw_storage_iterator.h",
  884. "//third_party/libc++/src/include/__cxx03/__memory/shared_ptr.h",
  885. "//third_party/libc++/src/include/__cxx03/__memory/swap_allocator.h",
  886. "//third_party/libc++/src/include/__cxx03/__memory/temp_value.h",
  887. "//third_party/libc++/src/include/__cxx03/__memory/temporary_buffer.h",
  888. "//third_party/libc++/src/include/__cxx03/__memory/uninitialized_algorithms.h",
  889. "//third_party/libc++/src/include/__cxx03/__memory/unique_ptr.h",
  890. "//third_party/libc++/src/include/__cxx03/__memory/uses_allocator.h",
  891. "//third_party/libc++/src/include/__cxx03/__memory/uses_allocator_construction.h",
  892. "//third_party/libc++/src/include/__cxx03/__memory/voidify.h",
  893. "//third_party/libc++/src/include/__cxx03/__memory_resource/memory_resource.h",
  894. "//third_party/libc++/src/include/__cxx03/__memory_resource/monotonic_buffer_resource.h",
  895. "//third_party/libc++/src/include/__cxx03/__memory_resource/polymorphic_allocator.h",
  896. "//third_party/libc++/src/include/__cxx03/__memory_resource/pool_options.h",
  897. "//third_party/libc++/src/include/__cxx03/__memory_resource/synchronized_pool_resource.h",
  898. "//third_party/libc++/src/include/__cxx03/__memory_resource/unsynchronized_pool_resource.h",
  899. "//third_party/libc++/src/include/__cxx03/__mutex/lock_guard.h",
  900. "//third_party/libc++/src/include/__cxx03/__mutex/mutex.h",
  901. "//third_party/libc++/src/include/__cxx03/__mutex/once_flag.h",
  902. "//third_party/libc++/src/include/__cxx03/__mutex/tag_types.h",
  903. "//third_party/libc++/src/include/__cxx03/__mutex/unique_lock.h",
  904. "//third_party/libc++/src/include/__cxx03/__node_handle",
  905. "//third_party/libc++/src/include/__cxx03/__numeric/accumulate.h",
  906. "//third_party/libc++/src/include/__cxx03/__numeric/adjacent_difference.h",
  907. "//third_party/libc++/src/include/__cxx03/__numeric/exclusive_scan.h",
  908. "//third_party/libc++/src/include/__cxx03/__numeric/gcd_lcm.h",
  909. "//third_party/libc++/src/include/__cxx03/__numeric/inclusive_scan.h",
  910. "//third_party/libc++/src/include/__cxx03/__numeric/inner_product.h",
  911. "//third_party/libc++/src/include/__cxx03/__numeric/iota.h",
  912. "//third_party/libc++/src/include/__cxx03/__numeric/midpoint.h",
  913. "//third_party/libc++/src/include/__cxx03/__numeric/partial_sum.h",
  914. "//third_party/libc++/src/include/__cxx03/__numeric/pstl.h",
  915. "//third_party/libc++/src/include/__cxx03/__numeric/reduce.h",
  916. "//third_party/libc++/src/include/__cxx03/__numeric/saturation_arithmetic.h",
  917. "//third_party/libc++/src/include/__cxx03/__numeric/transform_exclusive_scan.h",
  918. "//third_party/libc++/src/include/__cxx03/__numeric/transform_inclusive_scan.h",
  919. "//third_party/libc++/src/include/__cxx03/__numeric/transform_reduce.h",
  920. "//third_party/libc++/src/include/__cxx03/__ostream/basic_ostream.h",
  921. "//third_party/libc++/src/include/__cxx03/__ostream/print.h",
  922. "//third_party/libc++/src/include/__cxx03/__pstl/backend.h",
  923. "//third_party/libc++/src/include/__cxx03/__pstl/backend_fwd.h",
  924. "//third_party/libc++/src/include/__cxx03/__pstl/backends/default.h",
  925. "//third_party/libc++/src/include/__cxx03/__pstl/backends/libdispatch.h",
  926. "//third_party/libc++/src/include/__cxx03/__pstl/backends/serial.h",
  927. "//third_party/libc++/src/include/__cxx03/__pstl/backends/std_thread.h",
  928. "//third_party/libc++/src/include/__cxx03/__pstl/cpu_algos/any_of.h",
  929. "//third_party/libc++/src/include/__cxx03/__pstl/cpu_algos/cpu_traits.h",
  930. "//third_party/libc++/src/include/__cxx03/__pstl/cpu_algos/fill.h",
  931. "//third_party/libc++/src/include/__cxx03/__pstl/cpu_algos/find_if.h",
  932. "//third_party/libc++/src/include/__cxx03/__pstl/cpu_algos/for_each.h",
  933. "//third_party/libc++/src/include/__cxx03/__pstl/cpu_algos/merge.h",
  934. "//third_party/libc++/src/include/__cxx03/__pstl/cpu_algos/stable_sort.h",
  935. "//third_party/libc++/src/include/__cxx03/__pstl/cpu_algos/transform.h",
  936. "//third_party/libc++/src/include/__cxx03/__pstl/cpu_algos/transform_reduce.h",
  937. "//third_party/libc++/src/include/__cxx03/__pstl/dispatch.h",
  938. "//third_party/libc++/src/include/__cxx03/__pstl/handle_exception.h",
  939. "//third_party/libc++/src/include/__cxx03/__random/bernoulli_distribution.h",
  940. "//third_party/libc++/src/include/__cxx03/__random/binomial_distribution.h",
  941. "//third_party/libc++/src/include/__cxx03/__random/cauchy_distribution.h",
  942. "//third_party/libc++/src/include/__cxx03/__random/chi_squared_distribution.h",
  943. "//third_party/libc++/src/include/__cxx03/__random/clamp_to_integral.h",
  944. "//third_party/libc++/src/include/__cxx03/__random/default_random_engine.h",
  945. "//third_party/libc++/src/include/__cxx03/__random/discard_block_engine.h",
  946. "//third_party/libc++/src/include/__cxx03/__random/discrete_distribution.h",
  947. "//third_party/libc++/src/include/__cxx03/__random/exponential_distribution.h",
  948. "//third_party/libc++/src/include/__cxx03/__random/extreme_value_distribution.h",
  949. "//third_party/libc++/src/include/__cxx03/__random/fisher_f_distribution.h",
  950. "//third_party/libc++/src/include/__cxx03/__random/gamma_distribution.h",
  951. "//third_party/libc++/src/include/__cxx03/__random/generate_canonical.h",
  952. "//third_party/libc++/src/include/__cxx03/__random/geometric_distribution.h",
  953. "//third_party/libc++/src/include/__cxx03/__random/independent_bits_engine.h",
  954. "//third_party/libc++/src/include/__cxx03/__random/is_seed_sequence.h",
  955. "//third_party/libc++/src/include/__cxx03/__random/is_valid.h",
  956. "//third_party/libc++/src/include/__cxx03/__random/knuth_b.h",
  957. "//third_party/libc++/src/include/__cxx03/__random/linear_congruential_engine.h",
  958. "//third_party/libc++/src/include/__cxx03/__random/log2.h",
  959. "//third_party/libc++/src/include/__cxx03/__random/lognormal_distribution.h",
  960. "//third_party/libc++/src/include/__cxx03/__random/mersenne_twister_engine.h",
  961. "//third_party/libc++/src/include/__cxx03/__random/negative_binomial_distribution.h",
  962. "//third_party/libc++/src/include/__cxx03/__random/normal_distribution.h",
  963. "//third_party/libc++/src/include/__cxx03/__random/piecewise_constant_distribution.h",
  964. "//third_party/libc++/src/include/__cxx03/__random/piecewise_linear_distribution.h",
  965. "//third_party/libc++/src/include/__cxx03/__random/poisson_distribution.h",
  966. "//third_party/libc++/src/include/__cxx03/__random/random_device.h",
  967. "//third_party/libc++/src/include/__cxx03/__random/ranlux.h",
  968. "//third_party/libc++/src/include/__cxx03/__random/seed_seq.h",
  969. "//third_party/libc++/src/include/__cxx03/__random/shuffle_order_engine.h",
  970. "//third_party/libc++/src/include/__cxx03/__random/student_t_distribution.h",
  971. "//third_party/libc++/src/include/__cxx03/__random/subtract_with_carry_engine.h",
  972. "//third_party/libc++/src/include/__cxx03/__random/uniform_int_distribution.h",
  973. "//third_party/libc++/src/include/__cxx03/__random/uniform_random_bit_generator.h",
  974. "//third_party/libc++/src/include/__cxx03/__random/uniform_real_distribution.h",
  975. "//third_party/libc++/src/include/__cxx03/__random/weibull_distribution.h",
  976. "//third_party/libc++/src/include/__cxx03/__ranges/access.h",
  977. "//third_party/libc++/src/include/__cxx03/__ranges/all.h",
  978. "//third_party/libc++/src/include/__cxx03/__ranges/as_rvalue_view.h",
  979. "//third_party/libc++/src/include/__cxx03/__ranges/chunk_by_view.h",
  980. "//third_party/libc++/src/include/__cxx03/__ranges/common_view.h",
  981. "//third_party/libc++/src/include/__cxx03/__ranges/concepts.h",
  982. "//third_party/libc++/src/include/__cxx03/__ranges/container_compatible_range.h",
  983. "//third_party/libc++/src/include/__cxx03/__ranges/counted.h",
  984. "//third_party/libc++/src/include/__cxx03/__ranges/dangling.h",
  985. "//third_party/libc++/src/include/__cxx03/__ranges/data.h",
  986. "//third_party/libc++/src/include/__cxx03/__ranges/drop_view.h",
  987. "//third_party/libc++/src/include/__cxx03/__ranges/drop_while_view.h",
  988. "//third_party/libc++/src/include/__cxx03/__ranges/elements_view.h",
  989. "//third_party/libc++/src/include/__cxx03/__ranges/empty.h",
  990. "//third_party/libc++/src/include/__cxx03/__ranges/empty_view.h",
  991. "//third_party/libc++/src/include/__cxx03/__ranges/enable_borrowed_range.h",
  992. "//third_party/libc++/src/include/__cxx03/__ranges/enable_view.h",
  993. "//third_party/libc++/src/include/__cxx03/__ranges/filter_view.h",
  994. "//third_party/libc++/src/include/__cxx03/__ranges/from_range.h",
  995. "//third_party/libc++/src/include/__cxx03/__ranges/iota_view.h",
  996. "//third_party/libc++/src/include/__cxx03/__ranges/istream_view.h",
  997. "//third_party/libc++/src/include/__cxx03/__ranges/join_view.h",
  998. "//third_party/libc++/src/include/__cxx03/__ranges/lazy_split_view.h",
  999. "//third_party/libc++/src/include/__cxx03/__ranges/movable_box.h",
  1000. "//third_party/libc++/src/include/__cxx03/__ranges/non_propagating_cache.h",
  1001. "//third_party/libc++/src/include/__cxx03/__ranges/owning_view.h",
  1002. "//third_party/libc++/src/include/__cxx03/__ranges/range_adaptor.h",
  1003. "//third_party/libc++/src/include/__cxx03/__ranges/rbegin.h",
  1004. "//third_party/libc++/src/include/__cxx03/__ranges/ref_view.h",
  1005. "//third_party/libc++/src/include/__cxx03/__ranges/rend.h",
  1006. "//third_party/libc++/src/include/__cxx03/__ranges/repeat_view.h",
  1007. "//third_party/libc++/src/include/__cxx03/__ranges/reverse_view.h",
  1008. "//third_party/libc++/src/include/__cxx03/__ranges/single_view.h",
  1009. "//third_party/libc++/src/include/__cxx03/__ranges/size.h",
  1010. "//third_party/libc++/src/include/__cxx03/__ranges/split_view.h",
  1011. "//third_party/libc++/src/include/__cxx03/__ranges/subrange.h",
  1012. "//third_party/libc++/src/include/__cxx03/__ranges/take_view.h",
  1013. "//third_party/libc++/src/include/__cxx03/__ranges/take_while_view.h",
  1014. "//third_party/libc++/src/include/__cxx03/__ranges/to.h",
  1015. "//third_party/libc++/src/include/__cxx03/__ranges/transform_view.h",
  1016. "//third_party/libc++/src/include/__cxx03/__ranges/view_interface.h",
  1017. "//third_party/libc++/src/include/__cxx03/__ranges/views.h",
  1018. "//third_party/libc++/src/include/__cxx03/__ranges/zip_view.h",
  1019. "//third_party/libc++/src/include/__cxx03/__split_buffer",
  1020. "//third_party/libc++/src/include/__cxx03/__std_clang_module",
  1021. "//third_party/libc++/src/include/__cxx03/__std_mbstate_t.h",
  1022. "//third_party/libc++/src/include/__cxx03/__stop_token/atomic_unique_lock.h",
  1023. "//third_party/libc++/src/include/__cxx03/__stop_token/intrusive_list_view.h",
  1024. "//third_party/libc++/src/include/__cxx03/__stop_token/intrusive_shared_ptr.h",
  1025. "//third_party/libc++/src/include/__cxx03/__stop_token/stop_callback.h",
  1026. "//third_party/libc++/src/include/__cxx03/__stop_token/stop_source.h",
  1027. "//third_party/libc++/src/include/__cxx03/__stop_token/stop_state.h",
  1028. "//third_party/libc++/src/include/__cxx03/__stop_token/stop_token.h",
  1029. "//third_party/libc++/src/include/__cxx03/__string/char_traits.h",
  1030. "//third_party/libc++/src/include/__cxx03/__string/constexpr_c_functions.h",
  1031. "//third_party/libc++/src/include/__cxx03/__string/extern_template_lists.h",
  1032. "//third_party/libc++/src/include/__cxx03/__support/ibm/gettod_zos.h",
  1033. "//third_party/libc++/src/include/__cxx03/__support/ibm/locale_mgmt_zos.h",
  1034. "//third_party/libc++/src/include/__cxx03/__support/ibm/nanosleep.h",
  1035. "//third_party/libc++/src/include/__cxx03/__support/xlocale/__nop_locale_mgmt.h",
  1036. "//third_party/libc++/src/include/__cxx03/__support/xlocale/__posix_l_fallback.h",
  1037. "//third_party/libc++/src/include/__cxx03/__support/xlocale/__strtonum_fallback.h",
  1038. "//third_party/libc++/src/include/__cxx03/__system_error/errc.h",
  1039. "//third_party/libc++/src/include/__cxx03/__system_error/error_category.h",
  1040. "//third_party/libc++/src/include/__cxx03/__system_error/error_code.h",
  1041. "//third_party/libc++/src/include/__cxx03/__system_error/error_condition.h",
  1042. "//third_party/libc++/src/include/__cxx03/__system_error/system_error.h",
  1043. "//third_party/libc++/src/include/__cxx03/__thread/formatter.h",
  1044. "//third_party/libc++/src/include/__cxx03/__thread/id.h",
  1045. "//third_party/libc++/src/include/__cxx03/__thread/jthread.h",
  1046. "//third_party/libc++/src/include/__cxx03/__thread/poll_with_backoff.h",
  1047. "//third_party/libc++/src/include/__cxx03/__thread/support/c11.h",
  1048. "//third_party/libc++/src/include/__cxx03/__thread/support/external.h",
  1049. "//third_party/libc++/src/include/__cxx03/__thread/support/pthread.h",
  1050. "//third_party/libc++/src/include/__cxx03/__thread/support/windows.h",
  1051. "//third_party/libc++/src/include/__cxx03/__thread/support.h",
  1052. "//third_party/libc++/src/include/__cxx03/__thread/this_thread.h",
  1053. "//third_party/libc++/src/include/__cxx03/__thread/thread.h",
  1054. "//third_party/libc++/src/include/__cxx03/__thread/timed_backoff_policy.h",
  1055. "//third_party/libc++/src/include/__cxx03/__tree",
  1056. "//third_party/libc++/src/include/__cxx03/__tuple/find_index.h",
  1057. "//third_party/libc++/src/include/__cxx03/__tuple/ignore.h",
  1058. "//third_party/libc++/src/include/__cxx03/__tuple/make_tuple_types.h",
  1059. "//third_party/libc++/src/include/__cxx03/__tuple/sfinae_helpers.h",
  1060. "//third_party/libc++/src/include/__cxx03/__tuple/tuple_element.h",
  1061. "//third_party/libc++/src/include/__cxx03/__tuple/tuple_indices.h",
  1062. "//third_party/libc++/src/include/__cxx03/__tuple/tuple_like.h",
  1063. "//third_party/libc++/src/include/__cxx03/__tuple/tuple_like_ext.h",
  1064. "//third_party/libc++/src/include/__cxx03/__tuple/tuple_like_no_subrange.h",
  1065. "//third_party/libc++/src/include/__cxx03/__tuple/tuple_size.h",
  1066. "//third_party/libc++/src/include/__cxx03/__tuple/tuple_types.h",
  1067. "//third_party/libc++/src/include/__cxx03/__type_traits/add_const.h",
  1068. "//third_party/libc++/src/include/__cxx03/__type_traits/add_cv.h",
  1069. "//third_party/libc++/src/include/__cxx03/__type_traits/add_lvalue_reference.h",
  1070. "//third_party/libc++/src/include/__cxx03/__type_traits/add_pointer.h",
  1071. "//third_party/libc++/src/include/__cxx03/__type_traits/add_rvalue_reference.h",
  1072. "//third_party/libc++/src/include/__cxx03/__type_traits/add_volatile.h",
  1073. "//third_party/libc++/src/include/__cxx03/__type_traits/aligned_storage.h",
  1074. "//third_party/libc++/src/include/__cxx03/__type_traits/aligned_union.h",
  1075. "//third_party/libc++/src/include/__cxx03/__type_traits/alignment_of.h",
  1076. "//third_party/libc++/src/include/__cxx03/__type_traits/can_extract_key.h",
  1077. "//third_party/libc++/src/include/__cxx03/__type_traits/common_reference.h",
  1078. "//third_party/libc++/src/include/__cxx03/__type_traits/common_type.h",
  1079. "//third_party/libc++/src/include/__cxx03/__type_traits/conditional.h",
  1080. "//third_party/libc++/src/include/__cxx03/__type_traits/conjunction.h",
  1081. "//third_party/libc++/src/include/__cxx03/__type_traits/copy_cv.h",
  1082. "//third_party/libc++/src/include/__cxx03/__type_traits/copy_cvref.h",
  1083. "//third_party/libc++/src/include/__cxx03/__type_traits/datasizeof.h",
  1084. "//third_party/libc++/src/include/__cxx03/__type_traits/decay.h",
  1085. "//third_party/libc++/src/include/__cxx03/__type_traits/dependent_type.h",
  1086. "//third_party/libc++/src/include/__cxx03/__type_traits/desugars_to.h",
  1087. "//third_party/libc++/src/include/__cxx03/__type_traits/disjunction.h",
  1088. "//third_party/libc++/src/include/__cxx03/__type_traits/enable_if.h",
  1089. "//third_party/libc++/src/include/__cxx03/__type_traits/extent.h",
  1090. "//third_party/libc++/src/include/__cxx03/__type_traits/has_unique_object_representation.h",
  1091. "//third_party/libc++/src/include/__cxx03/__type_traits/has_virtual_destructor.h",
  1092. "//third_party/libc++/src/include/__cxx03/__type_traits/integral_constant.h",
  1093. "//third_party/libc++/src/include/__cxx03/__type_traits/invoke.h",
  1094. "//third_party/libc++/src/include/__cxx03/__type_traits/is_abstract.h",
  1095. "//third_party/libc++/src/include/__cxx03/__type_traits/is_aggregate.h",
  1096. "//third_party/libc++/src/include/__cxx03/__type_traits/is_allocator.h",
  1097. "//third_party/libc++/src/include/__cxx03/__type_traits/is_always_bitcastable.h",
  1098. "//third_party/libc++/src/include/__cxx03/__type_traits/is_arithmetic.h",
  1099. "//third_party/libc++/src/include/__cxx03/__type_traits/is_array.h",
  1100. "//third_party/libc++/src/include/__cxx03/__type_traits/is_assignable.h",
  1101. "//third_party/libc++/src/include/__cxx03/__type_traits/is_base_of.h",
  1102. "//third_party/libc++/src/include/__cxx03/__type_traits/is_bounded_array.h",
  1103. "//third_party/libc++/src/include/__cxx03/__type_traits/is_callable.h",
  1104. "//third_party/libc++/src/include/__cxx03/__type_traits/is_char_like_type.h",
  1105. "//third_party/libc++/src/include/__cxx03/__type_traits/is_class.h",
  1106. "//third_party/libc++/src/include/__cxx03/__type_traits/is_compound.h",
  1107. "//third_party/libc++/src/include/__cxx03/__type_traits/is_const.h",
  1108. "//third_party/libc++/src/include/__cxx03/__type_traits/is_constant_evaluated.h",
  1109. "//third_party/libc++/src/include/__cxx03/__type_traits/is_constructible.h",
  1110. "//third_party/libc++/src/include/__cxx03/__type_traits/is_convertible.h",
  1111. "//third_party/libc++/src/include/__cxx03/__type_traits/is_core_convertible.h",
  1112. "//third_party/libc++/src/include/__cxx03/__type_traits/is_destructible.h",
  1113. "//third_party/libc++/src/include/__cxx03/__type_traits/is_empty.h",
  1114. "//third_party/libc++/src/include/__cxx03/__type_traits/is_enum.h",
  1115. "//third_party/libc++/src/include/__cxx03/__type_traits/is_equality_comparable.h",
  1116. "//third_party/libc++/src/include/__cxx03/__type_traits/is_execution_policy.h",
  1117. "//third_party/libc++/src/include/__cxx03/__type_traits/is_final.h",
  1118. "//third_party/libc++/src/include/__cxx03/__type_traits/is_floating_point.h",
  1119. "//third_party/libc++/src/include/__cxx03/__type_traits/is_function.h",
  1120. "//third_party/libc++/src/include/__cxx03/__type_traits/is_fundamental.h",
  1121. "//third_party/libc++/src/include/__cxx03/__type_traits/is_implicitly_default_constructible.h",
  1122. "//third_party/libc++/src/include/__cxx03/__type_traits/is_integral.h",
  1123. "//third_party/libc++/src/include/__cxx03/__type_traits/is_literal_type.h",
  1124. "//third_party/libc++/src/include/__cxx03/__type_traits/is_member_pointer.h",
  1125. "//third_party/libc++/src/include/__cxx03/__type_traits/is_nothrow_assignable.h",
  1126. "//third_party/libc++/src/include/__cxx03/__type_traits/is_nothrow_constructible.h",
  1127. "//third_party/libc++/src/include/__cxx03/__type_traits/is_nothrow_convertible.h",
  1128. "//third_party/libc++/src/include/__cxx03/__type_traits/is_nothrow_destructible.h",
  1129. "//third_party/libc++/src/include/__cxx03/__type_traits/is_null_pointer.h",
  1130. "//third_party/libc++/src/include/__cxx03/__type_traits/is_object.h",
  1131. "//third_party/libc++/src/include/__cxx03/__type_traits/is_pod.h",
  1132. "//third_party/libc++/src/include/__cxx03/__type_traits/is_pointer.h",
  1133. "//third_party/libc++/src/include/__cxx03/__type_traits/is_polymorphic.h",
  1134. "//third_party/libc++/src/include/__cxx03/__type_traits/is_primary_template.h",
  1135. "//third_party/libc++/src/include/__cxx03/__type_traits/is_reference.h",
  1136. "//third_party/libc++/src/include/__cxx03/__type_traits/is_reference_wrapper.h",
  1137. "//third_party/libc++/src/include/__cxx03/__type_traits/is_referenceable.h",
  1138. "//third_party/libc++/src/include/__cxx03/__type_traits/is_same.h",
  1139. "//third_party/libc++/src/include/__cxx03/__type_traits/is_scalar.h",
  1140. "//third_party/libc++/src/include/__cxx03/__type_traits/is_signed.h",
  1141. "//third_party/libc++/src/include/__cxx03/__type_traits/is_signed_integer.h",
  1142. "//third_party/libc++/src/include/__cxx03/__type_traits/is_specialization.h",
  1143. "//third_party/libc++/src/include/__cxx03/__type_traits/is_standard_layout.h",
  1144. "//third_party/libc++/src/include/__cxx03/__type_traits/is_swappable.h",
  1145. "//third_party/libc++/src/include/__cxx03/__type_traits/is_trivial.h",
  1146. "//third_party/libc++/src/include/__cxx03/__type_traits/is_trivially_assignable.h",
  1147. "//third_party/libc++/src/include/__cxx03/__type_traits/is_trivially_constructible.h",
  1148. "//third_party/libc++/src/include/__cxx03/__type_traits/is_trivially_copyable.h",
  1149. "//third_party/libc++/src/include/__cxx03/__type_traits/is_trivially_destructible.h",
  1150. "//third_party/libc++/src/include/__cxx03/__type_traits/is_trivially_lexicographically_comparable.h",
  1151. "//third_party/libc++/src/include/__cxx03/__type_traits/is_trivially_relocatable.h",
  1152. "//third_party/libc++/src/include/__cxx03/__type_traits/is_unbounded_array.h",
  1153. "//third_party/libc++/src/include/__cxx03/__type_traits/is_union.h",
  1154. "//third_party/libc++/src/include/__cxx03/__type_traits/is_unsigned.h",
  1155. "//third_party/libc++/src/include/__cxx03/__type_traits/is_unsigned_integer.h",
  1156. "//third_party/libc++/src/include/__cxx03/__type_traits/is_valid_expansion.h",
  1157. "//third_party/libc++/src/include/__cxx03/__type_traits/is_void.h",
  1158. "//third_party/libc++/src/include/__cxx03/__type_traits/is_volatile.h",
  1159. "//third_party/libc++/src/include/__cxx03/__type_traits/lazy.h",
  1160. "//third_party/libc++/src/include/__cxx03/__type_traits/make_32_64_or_128_bit.h",
  1161. "//third_party/libc++/src/include/__cxx03/__type_traits/make_const_lvalue_ref.h",
  1162. "//third_party/libc++/src/include/__cxx03/__type_traits/make_signed.h",
  1163. "//third_party/libc++/src/include/__cxx03/__type_traits/make_unsigned.h",
  1164. "//third_party/libc++/src/include/__cxx03/__type_traits/maybe_const.h",
  1165. "//third_party/libc++/src/include/__cxx03/__type_traits/nat.h",
  1166. "//third_party/libc++/src/include/__cxx03/__type_traits/negation.h",
  1167. "//third_party/libc++/src/include/__cxx03/__type_traits/noexcept_move_assign_container.h",
  1168. "//third_party/libc++/src/include/__cxx03/__type_traits/promote.h",
  1169. "//third_party/libc++/src/include/__cxx03/__type_traits/rank.h",
  1170. "//third_party/libc++/src/include/__cxx03/__type_traits/remove_all_extents.h",
  1171. "//third_party/libc++/src/include/__cxx03/__type_traits/remove_const.h",
  1172. "//third_party/libc++/src/include/__cxx03/__type_traits/remove_const_ref.h",
  1173. "//third_party/libc++/src/include/__cxx03/__type_traits/remove_cv.h",
  1174. "//third_party/libc++/src/include/__cxx03/__type_traits/remove_cvref.h",
  1175. "//third_party/libc++/src/include/__cxx03/__type_traits/remove_extent.h",
  1176. "//third_party/libc++/src/include/__cxx03/__type_traits/remove_pointer.h",
  1177. "//third_party/libc++/src/include/__cxx03/__type_traits/remove_reference.h",
  1178. "//third_party/libc++/src/include/__cxx03/__type_traits/remove_volatile.h",
  1179. "//third_party/libc++/src/include/__cxx03/__type_traits/result_of.h",
  1180. "//third_party/libc++/src/include/__cxx03/__type_traits/strip_signature.h",
  1181. "//third_party/libc++/src/include/__cxx03/__type_traits/type_identity.h",
  1182. "//third_party/libc++/src/include/__cxx03/__type_traits/type_list.h",
  1183. "//third_party/libc++/src/include/__cxx03/__type_traits/underlying_type.h",
  1184. "//third_party/libc++/src/include/__cxx03/__type_traits/unwrap_ref.h",
  1185. "//third_party/libc++/src/include/__cxx03/__type_traits/void_t.h",
  1186. "//third_party/libc++/src/include/__cxx03/__undef_macros",
  1187. "//third_party/libc++/src/include/__cxx03/__utility/as_const.h",
  1188. "//third_party/libc++/src/include/__cxx03/__utility/as_lvalue.h",
  1189. "//third_party/libc++/src/include/__cxx03/__utility/auto_cast.h",
  1190. "//third_party/libc++/src/include/__cxx03/__utility/cmp.h",
  1191. "//third_party/libc++/src/include/__cxx03/__utility/convert_to_integral.h",
  1192. "//third_party/libc++/src/include/__cxx03/__utility/declval.h",
  1193. "//third_party/libc++/src/include/__cxx03/__utility/empty.h",
  1194. "//third_party/libc++/src/include/__cxx03/__utility/exception_guard.h",
  1195. "//third_party/libc++/src/include/__cxx03/__utility/exchange.h",
  1196. "//third_party/libc++/src/include/__cxx03/__utility/forward.h",
  1197. "//third_party/libc++/src/include/__cxx03/__utility/forward_like.h",
  1198. "//third_party/libc++/src/include/__cxx03/__utility/in_place.h",
  1199. "//third_party/libc++/src/include/__cxx03/__utility/integer_sequence.h",
  1200. "//third_party/libc++/src/include/__cxx03/__utility/is_pointer_in_range.h",
  1201. "//third_party/libc++/src/include/__cxx03/__utility/is_valid_range.h",
  1202. "//third_party/libc++/src/include/__cxx03/__utility/move.h",
  1203. "//third_party/libc++/src/include/__cxx03/__utility/no_destroy.h",
  1204. "//third_party/libc++/src/include/__cxx03/__utility/pair.h",
  1205. "//third_party/libc++/src/include/__cxx03/__utility/piecewise_construct.h",
  1206. "//third_party/libc++/src/include/__cxx03/__utility/priority_tag.h",
  1207. "//third_party/libc++/src/include/__cxx03/__utility/private_constructor_tag.h",
  1208. "//third_party/libc++/src/include/__cxx03/__utility/rel_ops.h",
  1209. "//third_party/libc++/src/include/__cxx03/__utility/small_buffer.h",
  1210. "//third_party/libc++/src/include/__cxx03/__utility/swap.h",
  1211. "//third_party/libc++/src/include/__cxx03/__utility/to_underlying.h",
  1212. "//third_party/libc++/src/include/__cxx03/__utility/unreachable.h",
  1213. "//third_party/libc++/src/include/__cxx03/__variant/monostate.h",
  1214. "//third_party/libc++/src/include/__cxx03/__verbose_abort",
  1215. "//third_party/libc++/src/include/__cxx03/algorithm",
  1216. "//third_party/libc++/src/include/__cxx03/any",
  1217. "//third_party/libc++/src/include/__cxx03/array",
  1218. "//third_party/libc++/src/include/__cxx03/atomic",
  1219. "//third_party/libc++/src/include/__cxx03/barrier",
  1220. "//third_party/libc++/src/include/__cxx03/bit",
  1221. "//third_party/libc++/src/include/__cxx03/bitset",
  1222. "//third_party/libc++/src/include/__cxx03/cassert",
  1223. "//third_party/libc++/src/include/__cxx03/ccomplex",
  1224. "//third_party/libc++/src/include/__cxx03/cctype",
  1225. "//third_party/libc++/src/include/__cxx03/cerrno",
  1226. "//third_party/libc++/src/include/__cxx03/cfenv",
  1227. "//third_party/libc++/src/include/__cxx03/cfloat",
  1228. "//third_party/libc++/src/include/__cxx03/charconv",
  1229. "//third_party/libc++/src/include/__cxx03/chrono",
  1230. "//third_party/libc++/src/include/__cxx03/cinttypes",
  1231. "//third_party/libc++/src/include/__cxx03/ciso646",
  1232. "//third_party/libc++/src/include/__cxx03/climits",
  1233. "//third_party/libc++/src/include/__cxx03/clocale",
  1234. "//third_party/libc++/src/include/__cxx03/cmath",
  1235. "//third_party/libc++/src/include/__cxx03/codecvt",
  1236. "//third_party/libc++/src/include/__cxx03/compare",
  1237. "//third_party/libc++/src/include/__cxx03/complex",
  1238. "//third_party/libc++/src/include/__cxx03/complex.h",
  1239. "//third_party/libc++/src/include/__cxx03/concepts",
  1240. "//third_party/libc++/src/include/__cxx03/condition_variable",
  1241. "//third_party/libc++/src/include/__cxx03/coroutine",
  1242. "//third_party/libc++/src/include/__cxx03/csetjmp",
  1243. "//third_party/libc++/src/include/__cxx03/csignal",
  1244. "//third_party/libc++/src/include/__cxx03/cstdarg",
  1245. "//third_party/libc++/src/include/__cxx03/cstdbool",
  1246. "//third_party/libc++/src/include/__cxx03/cstddef",
  1247. "//third_party/libc++/src/include/__cxx03/cstdint",
  1248. "//third_party/libc++/src/include/__cxx03/cstdio",
  1249. "//third_party/libc++/src/include/__cxx03/cstdlib",
  1250. "//third_party/libc++/src/include/__cxx03/cstring",
  1251. "//third_party/libc++/src/include/__cxx03/ctgmath",
  1252. "//third_party/libc++/src/include/__cxx03/ctime",
  1253. "//third_party/libc++/src/include/__cxx03/ctype.h",
  1254. "//third_party/libc++/src/include/__cxx03/cuchar",
  1255. "//third_party/libc++/src/include/__cxx03/cwchar",
  1256. "//third_party/libc++/src/include/__cxx03/cwctype",
  1257. "//third_party/libc++/src/include/__cxx03/deque",
  1258. "//third_party/libc++/src/include/__cxx03/errno.h",
  1259. "//third_party/libc++/src/include/__cxx03/exception",
  1260. "//third_party/libc++/src/include/__cxx03/execution",
  1261. "//third_party/libc++/src/include/__cxx03/expected",
  1262. "//third_party/libc++/src/include/__cxx03/experimental/__config",
  1263. "//third_party/libc++/src/include/__cxx03/experimental/__simd/aligned_tag.h",
  1264. "//third_party/libc++/src/include/__cxx03/experimental/__simd/declaration.h",
  1265. "//third_party/libc++/src/include/__cxx03/experimental/__simd/reference.h",
  1266. "//third_party/libc++/src/include/__cxx03/experimental/__simd/scalar.h",
  1267. "//third_party/libc++/src/include/__cxx03/experimental/__simd/simd.h",
  1268. "//third_party/libc++/src/include/__cxx03/experimental/__simd/simd_mask.h",
  1269. "//third_party/libc++/src/include/__cxx03/experimental/__simd/traits.h",
  1270. "//third_party/libc++/src/include/__cxx03/experimental/__simd/utility.h",
  1271. "//third_party/libc++/src/include/__cxx03/experimental/__simd/vec_ext.h",
  1272. "//third_party/libc++/src/include/__cxx03/experimental/iterator",
  1273. "//third_party/libc++/src/include/__cxx03/experimental/memory",
  1274. "//third_party/libc++/src/include/__cxx03/experimental/propagate_const",
  1275. "//third_party/libc++/src/include/__cxx03/experimental/simd",
  1276. "//third_party/libc++/src/include/__cxx03/experimental/type_traits",
  1277. "//third_party/libc++/src/include/__cxx03/experimental/utility",
  1278. "//third_party/libc++/src/include/__cxx03/ext/__hash",
  1279. "//third_party/libc++/src/include/__cxx03/ext/hash_map",
  1280. "//third_party/libc++/src/include/__cxx03/ext/hash_set",
  1281. "//third_party/libc++/src/include/__cxx03/fenv.h",
  1282. "//third_party/libc++/src/include/__cxx03/filesystem",
  1283. "//third_party/libc++/src/include/__cxx03/float.h",
  1284. "//third_party/libc++/src/include/__cxx03/format",
  1285. "//third_party/libc++/src/include/__cxx03/forward_list",
  1286. "//third_party/libc++/src/include/__cxx03/fstream",
  1287. "//third_party/libc++/src/include/__cxx03/functional",
  1288. "//third_party/libc++/src/include/__cxx03/future",
  1289. "//third_party/libc++/src/include/__cxx03/initializer_list",
  1290. "//third_party/libc++/src/include/__cxx03/inttypes.h",
  1291. "//third_party/libc++/src/include/__cxx03/iomanip",
  1292. "//third_party/libc++/src/include/__cxx03/ios",
  1293. "//third_party/libc++/src/include/__cxx03/iosfwd",
  1294. "//third_party/libc++/src/include/__cxx03/iostream",
  1295. "//third_party/libc++/src/include/__cxx03/istream",
  1296. "//third_party/libc++/src/include/__cxx03/iterator",
  1297. "//third_party/libc++/src/include/__cxx03/latch",
  1298. "//third_party/libc++/src/include/__cxx03/limits",
  1299. "//third_party/libc++/src/include/__cxx03/list",
  1300. "//third_party/libc++/src/include/__cxx03/locale",
  1301. "//third_party/libc++/src/include/__cxx03/locale.h",
  1302. "//third_party/libc++/src/include/__cxx03/map",
  1303. "//third_party/libc++/src/include/__cxx03/math.h",
  1304. "//third_party/libc++/src/include/__cxx03/mdspan",
  1305. "//third_party/libc++/src/include/__cxx03/memory",
  1306. "//third_party/libc++/src/include/__cxx03/memory_resource",
  1307. "//third_party/libc++/src/include/__cxx03/module.modulemap",
  1308. "//third_party/libc++/src/include/__cxx03/mutex",
  1309. "//third_party/libc++/src/include/__cxx03/new",
  1310. "//third_party/libc++/src/include/__cxx03/numbers",
  1311. "//third_party/libc++/src/include/__cxx03/numeric",
  1312. "//third_party/libc++/src/include/__cxx03/optional",
  1313. "//third_party/libc++/src/include/__cxx03/ostream",
  1314. "//third_party/libc++/src/include/__cxx03/print",
  1315. "//third_party/libc++/src/include/__cxx03/queue",
  1316. "//third_party/libc++/src/include/__cxx03/random",
  1317. "//third_party/libc++/src/include/__cxx03/ranges",
  1318. "//third_party/libc++/src/include/__cxx03/ratio",
  1319. "//third_party/libc++/src/include/__cxx03/regex",
  1320. "//third_party/libc++/src/include/__cxx03/scoped_allocator",
  1321. "//third_party/libc++/src/include/__cxx03/semaphore",
  1322. "//third_party/libc++/src/include/__cxx03/set",
  1323. "//third_party/libc++/src/include/__cxx03/shared_mutex",
  1324. "//third_party/libc++/src/include/__cxx03/source_location",
  1325. "//third_party/libc++/src/include/__cxx03/span",
  1326. "//third_party/libc++/src/include/__cxx03/sstream",
  1327. "//third_party/libc++/src/include/__cxx03/stack",
  1328. "//third_party/libc++/src/include/__cxx03/stdatomic.h",
  1329. "//third_party/libc++/src/include/__cxx03/stdbool.h",
  1330. "//third_party/libc++/src/include/__cxx03/stddef.h",
  1331. "//third_party/libc++/src/include/__cxx03/stdexcept",
  1332. "//third_party/libc++/src/include/__cxx03/stdint.h",
  1333. "//third_party/libc++/src/include/__cxx03/stdio.h",
  1334. "//third_party/libc++/src/include/__cxx03/stdlib.h",
  1335. "//third_party/libc++/src/include/__cxx03/stop_token",
  1336. "//third_party/libc++/src/include/__cxx03/streambuf",
  1337. "//third_party/libc++/src/include/__cxx03/string",
  1338. "//third_party/libc++/src/include/__cxx03/string.h",
  1339. "//third_party/libc++/src/include/__cxx03/string_view",
  1340. "//third_party/libc++/src/include/__cxx03/strstream",
  1341. "//third_party/libc++/src/include/__cxx03/syncstream",
  1342. "//third_party/libc++/src/include/__cxx03/system_error",
  1343. "//third_party/libc++/src/include/__cxx03/tgmath.h",
  1344. "//third_party/libc++/src/include/__cxx03/thread",
  1345. "//third_party/libc++/src/include/__cxx03/tuple",
  1346. "//third_party/libc++/src/include/__cxx03/type_traits",
  1347. "//third_party/libc++/src/include/__cxx03/typeindex",
  1348. "//third_party/libc++/src/include/__cxx03/typeinfo",
  1349. "//third_party/libc++/src/include/__cxx03/uchar.h",
  1350. "//third_party/libc++/src/include/__cxx03/unordered_map",
  1351. "//third_party/libc++/src/include/__cxx03/unordered_set",
  1352. "//third_party/libc++/src/include/__cxx03/utility",
  1353. "//third_party/libc++/src/include/__cxx03/valarray",
  1354. "//third_party/libc++/src/include/__cxx03/variant",
  1355. "//third_party/libc++/src/include/__cxx03/vector",
  1356. "//third_party/libc++/src/include/__cxx03/version",
  1357. "//third_party/libc++/src/include/__cxx03/wchar.h",
  1358. "//third_party/libc++/src/include/__cxx03/wctype.h",
  1359. "//third_party/libc++/src/include/__debug_utils/randomize_range.h",
  1360. "//third_party/libc++/src/include/__debug_utils/sanitizers.h",
  1361. "//third_party/libc++/src/include/__debug_utils/strict_weak_ordering_check.h",
  1362. "//third_party/libc++/src/include/__exception/exception.h",
  1363. "//third_party/libc++/src/include/__exception/exception_ptr.h",
  1364. "//third_party/libc++/src/include/__exception/nested_exception.h",
  1365. "//third_party/libc++/src/include/__exception/operations.h",
  1366. "//third_party/libc++/src/include/__exception/terminate.h",
  1367. "//third_party/libc++/src/include/__expected/bad_expected_access.h",
  1368. "//third_party/libc++/src/include/__expected/expected.h",
  1369. "//third_party/libc++/src/include/__expected/unexpect.h",
  1370. "//third_party/libc++/src/include/__expected/unexpected.h",
  1371. "//third_party/libc++/src/include/__filesystem/copy_options.h",
  1372. "//third_party/libc++/src/include/__filesystem/directory_entry.h",
  1373. "//third_party/libc++/src/include/__filesystem/directory_iterator.h",
  1374. "//third_party/libc++/src/include/__filesystem/directory_options.h",
  1375. "//third_party/libc++/src/include/__filesystem/file_status.h",
  1376. "//third_party/libc++/src/include/__filesystem/file_time_type.h",
  1377. "//third_party/libc++/src/include/__filesystem/file_type.h",
  1378. "//third_party/libc++/src/include/__filesystem/filesystem_error.h",
  1379. "//third_party/libc++/src/include/__filesystem/operations.h",
  1380. "//third_party/libc++/src/include/__filesystem/path.h",
  1381. "//third_party/libc++/src/include/__filesystem/path_iterator.h",
  1382. "//third_party/libc++/src/include/__filesystem/perm_options.h",
  1383. "//third_party/libc++/src/include/__filesystem/perms.h",
  1384. "//third_party/libc++/src/include/__filesystem/recursive_directory_iterator.h",
  1385. "//third_party/libc++/src/include/__filesystem/space_info.h",
  1386. "//third_party/libc++/src/include/__filesystem/u8path.h",
  1387. "//third_party/libc++/src/include/__flat_map/flat_map.h",
  1388. "//third_party/libc++/src/include/__flat_map/flat_multimap.h",
  1389. "//third_party/libc++/src/include/__flat_map/key_value_iterator.h",
  1390. "//third_party/libc++/src/include/__flat_map/sorted_equivalent.h",
  1391. "//third_party/libc++/src/include/__flat_map/sorted_unique.h",
  1392. "//third_party/libc++/src/include/__flat_map/utils.h",
  1393. "//third_party/libc++/src/include/__format/buffer.h",
  1394. "//third_party/libc++/src/include/__format/concepts.h",
  1395. "//third_party/libc++/src/include/__format/container_adaptor.h",
  1396. "//third_party/libc++/src/include/__format/enable_insertable.h",
  1397. "//third_party/libc++/src/include/__format/escaped_output_table.h",
  1398. "//third_party/libc++/src/include/__format/extended_grapheme_cluster_table.h",
  1399. "//third_party/libc++/src/include/__format/format_arg.h",
  1400. "//third_party/libc++/src/include/__format/format_arg_store.h",
  1401. "//third_party/libc++/src/include/__format/format_args.h",
  1402. "//third_party/libc++/src/include/__format/format_context.h",
  1403. "//third_party/libc++/src/include/__format/format_error.h",
  1404. "//third_party/libc++/src/include/__format/format_functions.h",
  1405. "//third_party/libc++/src/include/__format/format_parse_context.h",
  1406. "//third_party/libc++/src/include/__format/format_string.h",
  1407. "//third_party/libc++/src/include/__format/format_to_n_result.h",
  1408. "//third_party/libc++/src/include/__format/formatter.h",
  1409. "//third_party/libc++/src/include/__format/formatter_bool.h",
  1410. "//third_party/libc++/src/include/__format/formatter_char.h",
  1411. "//third_party/libc++/src/include/__format/formatter_floating_point.h",
  1412. "//third_party/libc++/src/include/__format/formatter_integer.h",
  1413. "//third_party/libc++/src/include/__format/formatter_integral.h",
  1414. "//third_party/libc++/src/include/__format/formatter_output.h",
  1415. "//third_party/libc++/src/include/__format/formatter_pointer.h",
  1416. "//third_party/libc++/src/include/__format/formatter_string.h",
  1417. "//third_party/libc++/src/include/__format/formatter_tuple.h",
  1418. "//third_party/libc++/src/include/__format/indic_conjunct_break_table.h",
  1419. "//third_party/libc++/src/include/__format/parser_std_format_spec.h",
  1420. "//third_party/libc++/src/include/__format/range_default_formatter.h",
  1421. "//third_party/libc++/src/include/__format/range_formatter.h",
  1422. "//third_party/libc++/src/include/__format/unicode.h",
  1423. "//third_party/libc++/src/include/__format/width_estimation_table.h",
  1424. "//third_party/libc++/src/include/__format/write_escaped.h",
  1425. "//third_party/libc++/src/include/__functional/binary_function.h",
  1426. "//third_party/libc++/src/include/__functional/binary_negate.h",
  1427. "//third_party/libc++/src/include/__functional/bind.h",
  1428. "//third_party/libc++/src/include/__functional/bind_back.h",
  1429. "//third_party/libc++/src/include/__functional/bind_front.h",
  1430. "//third_party/libc++/src/include/__functional/binder1st.h",
  1431. "//third_party/libc++/src/include/__functional/binder2nd.h",
  1432. "//third_party/libc++/src/include/__functional/boyer_moore_searcher.h",
  1433. "//third_party/libc++/src/include/__functional/compose.h",
  1434. "//third_party/libc++/src/include/__functional/default_searcher.h",
  1435. "//third_party/libc++/src/include/__functional/function.h",
  1436. "//third_party/libc++/src/include/__functional/hash.h",
  1437. "//third_party/libc++/src/include/__functional/identity.h",
  1438. "//third_party/libc++/src/include/__functional/invoke.h",
  1439. "//third_party/libc++/src/include/__functional/is_transparent.h",
  1440. "//third_party/libc++/src/include/__functional/mem_fn.h",
  1441. "//third_party/libc++/src/include/__functional/mem_fun_ref.h",
  1442. "//third_party/libc++/src/include/__functional/not_fn.h",
  1443. "//third_party/libc++/src/include/__functional/operations.h",
  1444. "//third_party/libc++/src/include/__functional/perfect_forward.h",
  1445. "//third_party/libc++/src/include/__functional/pointer_to_binary_function.h",
  1446. "//third_party/libc++/src/include/__functional/pointer_to_unary_function.h",
  1447. "//third_party/libc++/src/include/__functional/ranges_operations.h",
  1448. "//third_party/libc++/src/include/__functional/reference_wrapper.h",
  1449. "//third_party/libc++/src/include/__functional/unary_function.h",
  1450. "//third_party/libc++/src/include/__functional/unary_negate.h",
  1451. "//third_party/libc++/src/include/__functional/weak_result_type.h",
  1452. "//third_party/libc++/src/include/__fwd/array.h",
  1453. "//third_party/libc++/src/include/__fwd/bit_reference.h",
  1454. "//third_party/libc++/src/include/__fwd/byte.h",
  1455. "//third_party/libc++/src/include/__fwd/complex.h",
  1456. "//third_party/libc++/src/include/__fwd/deque.h",
  1457. "//third_party/libc++/src/include/__fwd/format.h",
  1458. "//third_party/libc++/src/include/__fwd/fstream.h",
  1459. "//third_party/libc++/src/include/__fwd/functional.h",
  1460. "//third_party/libc++/src/include/__fwd/get.h",
  1461. "//third_party/libc++/src/include/__fwd/ios.h",
  1462. "//third_party/libc++/src/include/__fwd/istream.h",
  1463. "//third_party/libc++/src/include/__fwd/mdspan.h",
  1464. "//third_party/libc++/src/include/__fwd/memory.h",
  1465. "//third_party/libc++/src/include/__fwd/memory_resource.h",
  1466. "//third_party/libc++/src/include/__fwd/ostream.h",
  1467. "//third_party/libc++/src/include/__fwd/pair.h",
  1468. "//third_party/libc++/src/include/__fwd/queue.h",
  1469. "//third_party/libc++/src/include/__fwd/span.h",
  1470. "//third_party/libc++/src/include/__fwd/sstream.h",
  1471. "//third_party/libc++/src/include/__fwd/stack.h",
  1472. "//third_party/libc++/src/include/__fwd/streambuf.h",
  1473. "//third_party/libc++/src/include/__fwd/string.h",
  1474. "//third_party/libc++/src/include/__fwd/string_view.h",
  1475. "//third_party/libc++/src/include/__fwd/subrange.h",
  1476. "//third_party/libc++/src/include/__fwd/tuple.h",
  1477. "//third_party/libc++/src/include/__fwd/variant.h",
  1478. "//third_party/libc++/src/include/__fwd/vector.h",
  1479. "//third_party/libc++/src/include/__hash_table",
  1480. "//third_party/libc++/src/include/__ios/fpos.h",
  1481. "//third_party/libc++/src/include/__iterator/access.h",
  1482. "//third_party/libc++/src/include/__iterator/advance.h",
  1483. "//third_party/libc++/src/include/__iterator/aliasing_iterator.h",
  1484. "//third_party/libc++/src/include/__iterator/back_insert_iterator.h",
  1485. "//third_party/libc++/src/include/__iterator/bounded_iter.h",
  1486. "//third_party/libc++/src/include/__iterator/common_iterator.h",
  1487. "//third_party/libc++/src/include/__iterator/concepts.h",
  1488. "//third_party/libc++/src/include/__iterator/counted_iterator.h",
  1489. "//third_party/libc++/src/include/__iterator/cpp17_iterator_concepts.h",
  1490. "//third_party/libc++/src/include/__iterator/data.h",
  1491. "//third_party/libc++/src/include/__iterator/default_sentinel.h",
  1492. "//third_party/libc++/src/include/__iterator/distance.h",
  1493. "//third_party/libc++/src/include/__iterator/empty.h",
  1494. "//third_party/libc++/src/include/__iterator/erase_if_container.h",
  1495. "//third_party/libc++/src/include/__iterator/front_insert_iterator.h",
  1496. "//third_party/libc++/src/include/__iterator/incrementable_traits.h",
  1497. "//third_party/libc++/src/include/__iterator/indirectly_comparable.h",
  1498. "//third_party/libc++/src/include/__iterator/insert_iterator.h",
  1499. "//third_party/libc++/src/include/__iterator/istream_iterator.h",
  1500. "//third_party/libc++/src/include/__iterator/istreambuf_iterator.h",
  1501. "//third_party/libc++/src/include/__iterator/iter_move.h",
  1502. "//third_party/libc++/src/include/__iterator/iter_swap.h",
  1503. "//third_party/libc++/src/include/__iterator/iterator.h",
  1504. "//third_party/libc++/src/include/__iterator/iterator_traits.h",
  1505. "//third_party/libc++/src/include/__iterator/iterator_with_data.h",
  1506. "//third_party/libc++/src/include/__iterator/mergeable.h",
  1507. "//third_party/libc++/src/include/__iterator/move_iterator.h",
  1508. "//third_party/libc++/src/include/__iterator/move_sentinel.h",
  1509. "//third_party/libc++/src/include/__iterator/next.h",
  1510. "//third_party/libc++/src/include/__iterator/ostream_iterator.h",
  1511. "//third_party/libc++/src/include/__iterator/ostreambuf_iterator.h",
  1512. "//third_party/libc++/src/include/__iterator/permutable.h",
  1513. "//third_party/libc++/src/include/__iterator/prev.h",
  1514. "//third_party/libc++/src/include/__iterator/projected.h",
  1515. "//third_party/libc++/src/include/__iterator/ranges_iterator_traits.h",
  1516. "//third_party/libc++/src/include/__iterator/readable_traits.h",
  1517. "//third_party/libc++/src/include/__iterator/reverse_access.h",
  1518. "//third_party/libc++/src/include/__iterator/reverse_iterator.h",
  1519. "//third_party/libc++/src/include/__iterator/segmented_iterator.h",
  1520. "//third_party/libc++/src/include/__iterator/size.h",
  1521. "//third_party/libc++/src/include/__iterator/sortable.h",
  1522. "//third_party/libc++/src/include/__iterator/static_bounded_iter.h",
  1523. "//third_party/libc++/src/include/__iterator/unreachable_sentinel.h",
  1524. "//third_party/libc++/src/include/__iterator/wrap_iter.h",
  1525. "//third_party/libc++/src/include/__locale",
  1526. "//third_party/libc++/src/include/__locale_dir/locale_base_api/android.h",
  1527. "//third_party/libc++/src/include/__locale_dir/locale_base_api/bsd_locale_fallbacks.h",
  1528. "//third_party/libc++/src/include/__locale_dir/locale_base_api/ibm.h",
  1529. "//third_party/libc++/src/include/__locale_dir/locale_base_api/musl.h",
  1530. "//third_party/libc++/src/include/__locale_dir/locale_base_api/openbsd.h",
  1531. "//third_party/libc++/src/include/__locale_dir/locale_base_api.h",
  1532. "//third_party/libc++/src/include/__locale_dir/pad_and_output.h",
  1533. "//third_party/libc++/src/include/__locale_dir/support/apple.h",
  1534. "//third_party/libc++/src/include/__locale_dir/support/bsd_like.h",
  1535. "//third_party/libc++/src/include/__locale_dir/support/freebsd.h",
  1536. "//third_party/libc++/src/include/__locale_dir/support/fuchsia.h",
  1537. "//third_party/libc++/src/include/__locale_dir/support/linux.h",
  1538. "//third_party/libc++/src/include/__locale_dir/support/no_locale/characters.h",
  1539. "//third_party/libc++/src/include/__locale_dir/support/no_locale/strtonum.h",
  1540. "//third_party/libc++/src/include/__locale_dir/support/windows.h",
  1541. "//third_party/libc++/src/include/__math/abs.h",
  1542. "//third_party/libc++/src/include/__math/copysign.h",
  1543. "//third_party/libc++/src/include/__math/error_functions.h",
  1544. "//third_party/libc++/src/include/__math/exponential_functions.h",
  1545. "//third_party/libc++/src/include/__math/fdim.h",
  1546. "//third_party/libc++/src/include/__math/fma.h",
  1547. "//third_party/libc++/src/include/__math/gamma.h",
  1548. "//third_party/libc++/src/include/__math/hyperbolic_functions.h",
  1549. "//third_party/libc++/src/include/__math/hypot.h",
  1550. "//third_party/libc++/src/include/__math/inverse_hyperbolic_functions.h",
  1551. "//third_party/libc++/src/include/__math/inverse_trigonometric_functions.h",
  1552. "//third_party/libc++/src/include/__math/logarithms.h",
  1553. "//third_party/libc++/src/include/__math/min_max.h",
  1554. "//third_party/libc++/src/include/__math/modulo.h",
  1555. "//third_party/libc++/src/include/__math/remainder.h",
  1556. "//third_party/libc++/src/include/__math/roots.h",
  1557. "//third_party/libc++/src/include/__math/rounding_functions.h",
  1558. "//third_party/libc++/src/include/__math/special_functions.h",
  1559. "//third_party/libc++/src/include/__math/traits.h",
  1560. "//third_party/libc++/src/include/__math/trigonometric_functions.h",
  1561. "//third_party/libc++/src/include/__mbstate_t.h",
  1562. "//third_party/libc++/src/include/__mdspan/default_accessor.h",
  1563. "//third_party/libc++/src/include/__mdspan/extents.h",
  1564. "//third_party/libc++/src/include/__mdspan/layout_left.h",
  1565. "//third_party/libc++/src/include/__mdspan/layout_right.h",
  1566. "//third_party/libc++/src/include/__mdspan/layout_stride.h",
  1567. "//third_party/libc++/src/include/__mdspan/mdspan.h",
  1568. "//third_party/libc++/src/include/__memory/addressof.h",
  1569. "//third_party/libc++/src/include/__memory/align.h",
  1570. "//third_party/libc++/src/include/__memory/aligned_alloc.h",
  1571. "//third_party/libc++/src/include/__memory/allocate_at_least.h",
  1572. "//third_party/libc++/src/include/__memory/allocation_guard.h",
  1573. "//third_party/libc++/src/include/__memory/allocator.h",
  1574. "//third_party/libc++/src/include/__memory/allocator_arg_t.h",
  1575. "//third_party/libc++/src/include/__memory/allocator_destructor.h",
  1576. "//third_party/libc++/src/include/__memory/allocator_traits.h",
  1577. "//third_party/libc++/src/include/__memory/array_cookie.h",
  1578. "//third_party/libc++/src/include/__memory/assume_aligned.h",
  1579. "//third_party/libc++/src/include/__memory/auto_ptr.h",
  1580. "//third_party/libc++/src/include/__memory/compressed_pair.h",
  1581. "//third_party/libc++/src/include/__memory/concepts.h",
  1582. "//third_party/libc++/src/include/__memory/construct_at.h",
  1583. "//third_party/libc++/src/include/__memory/destroy.h",
  1584. "//third_party/libc++/src/include/__memory/destruct_n.h",
  1585. "//third_party/libc++/src/include/__memory/inout_ptr.h",
  1586. "//third_party/libc++/src/include/__memory/noexcept_move_assign_container.h",
  1587. "//third_party/libc++/src/include/__memory/out_ptr.h",
  1588. "//third_party/libc++/src/include/__memory/pointer_traits.h",
  1589. "//third_party/libc++/src/include/__memory/ranges_construct_at.h",
  1590. "//third_party/libc++/src/include/__memory/ranges_destroy.h",
  1591. "//third_party/libc++/src/include/__memory/ranges_uninitialized_algorithms.h",
  1592. "//third_party/libc++/src/include/__memory/raw_storage_iterator.h",
  1593. "//third_party/libc++/src/include/__memory/shared_count.h",
  1594. "//third_party/libc++/src/include/__memory/shared_ptr.h",
  1595. "//third_party/libc++/src/include/__memory/swap_allocator.h",
  1596. "//third_party/libc++/src/include/__memory/temp_value.h",
  1597. "//third_party/libc++/src/include/__memory/temporary_buffer.h",
  1598. "//third_party/libc++/src/include/__memory/uninitialized_algorithms.h",
  1599. "//third_party/libc++/src/include/__memory/unique_ptr.h",
  1600. "//third_party/libc++/src/include/__memory/unique_temporary_buffer.h",
  1601. "//third_party/libc++/src/include/__memory/uses_allocator.h",
  1602. "//third_party/libc++/src/include/__memory/uses_allocator_construction.h",
  1603. "//third_party/libc++/src/include/__memory_resource/memory_resource.h",
  1604. "//third_party/libc++/src/include/__memory_resource/monotonic_buffer_resource.h",
  1605. "//third_party/libc++/src/include/__memory_resource/polymorphic_allocator.h",
  1606. "//third_party/libc++/src/include/__memory_resource/pool_options.h",
  1607. "//third_party/libc++/src/include/__memory_resource/synchronized_pool_resource.h",
  1608. "//third_party/libc++/src/include/__memory_resource/unsynchronized_pool_resource.h",
  1609. "//third_party/libc++/src/include/__mutex/lock_guard.h",
  1610. "//third_party/libc++/src/include/__mutex/mutex.h",
  1611. "//third_party/libc++/src/include/__mutex/once_flag.h",
  1612. "//third_party/libc++/src/include/__mutex/tag_types.h",
  1613. "//third_party/libc++/src/include/__mutex/unique_lock.h",
  1614. "//third_party/libc++/src/include/__new/align_val_t.h",
  1615. "//third_party/libc++/src/include/__new/allocate.h",
  1616. "//third_party/libc++/src/include/__new/destroying_delete_t.h",
  1617. "//third_party/libc++/src/include/__new/exceptions.h",
  1618. "//third_party/libc++/src/include/__new/global_new_delete.h",
  1619. "//third_party/libc++/src/include/__new/interference_size.h",
  1620. "//third_party/libc++/src/include/__new/launder.h",
  1621. "//third_party/libc++/src/include/__new/new_handler.h",
  1622. "//third_party/libc++/src/include/__new/nothrow_t.h",
  1623. "//third_party/libc++/src/include/__new/placement_new_delete.h",
  1624. "//third_party/libc++/src/include/__node_handle",
  1625. "//third_party/libc++/src/include/__numeric/accumulate.h",
  1626. "//third_party/libc++/src/include/__numeric/adjacent_difference.h",
  1627. "//third_party/libc++/src/include/__numeric/exclusive_scan.h",
  1628. "//third_party/libc++/src/include/__numeric/gcd_lcm.h",
  1629. "//third_party/libc++/src/include/__numeric/inclusive_scan.h",
  1630. "//third_party/libc++/src/include/__numeric/inner_product.h",
  1631. "//third_party/libc++/src/include/__numeric/iota.h",
  1632. "//third_party/libc++/src/include/__numeric/midpoint.h",
  1633. "//third_party/libc++/src/include/__numeric/partial_sum.h",
  1634. "//third_party/libc++/src/include/__numeric/pstl.h",
  1635. "//third_party/libc++/src/include/__numeric/reduce.h",
  1636. "//third_party/libc++/src/include/__numeric/saturation_arithmetic.h",
  1637. "//third_party/libc++/src/include/__numeric/transform_exclusive_scan.h",
  1638. "//third_party/libc++/src/include/__numeric/transform_inclusive_scan.h",
  1639. "//third_party/libc++/src/include/__numeric/transform_reduce.h",
  1640. "//third_party/libc++/src/include/__ostream/basic_ostream.h",
  1641. "//third_party/libc++/src/include/__ostream/print.h",
  1642. "//third_party/libc++/src/include/__ostream/put_character_sequence.h",
  1643. "//third_party/libc++/src/include/__pstl/backend.h",
  1644. "//third_party/libc++/src/include/__pstl/backend_fwd.h",
  1645. "//third_party/libc++/src/include/__pstl/backends/default.h",
  1646. "//third_party/libc++/src/include/__pstl/backends/libdispatch.h",
  1647. "//third_party/libc++/src/include/__pstl/backends/serial.h",
  1648. "//third_party/libc++/src/include/__pstl/backends/std_thread.h",
  1649. "//third_party/libc++/src/include/__pstl/cpu_algos/any_of.h",
  1650. "//third_party/libc++/src/include/__pstl/cpu_algos/cpu_traits.h",
  1651. "//third_party/libc++/src/include/__pstl/cpu_algos/fill.h",
  1652. "//third_party/libc++/src/include/__pstl/cpu_algos/find_if.h",
  1653. "//third_party/libc++/src/include/__pstl/cpu_algos/for_each.h",
  1654. "//third_party/libc++/src/include/__pstl/cpu_algos/merge.h",
  1655. "//third_party/libc++/src/include/__pstl/cpu_algos/stable_sort.h",
  1656. "//third_party/libc++/src/include/__pstl/cpu_algos/transform.h",
  1657. "//third_party/libc++/src/include/__pstl/cpu_algos/transform_reduce.h",
  1658. "//third_party/libc++/src/include/__pstl/dispatch.h",
  1659. "//third_party/libc++/src/include/__pstl/handle_exception.h",
  1660. "//third_party/libc++/src/include/__random/bernoulli_distribution.h",
  1661. "//third_party/libc++/src/include/__random/binomial_distribution.h",
  1662. "//third_party/libc++/src/include/__random/cauchy_distribution.h",
  1663. "//third_party/libc++/src/include/__random/chi_squared_distribution.h",
  1664. "//third_party/libc++/src/include/__random/clamp_to_integral.h",
  1665. "//third_party/libc++/src/include/__random/default_random_engine.h",
  1666. "//third_party/libc++/src/include/__random/discard_block_engine.h",
  1667. "//third_party/libc++/src/include/__random/discrete_distribution.h",
  1668. "//third_party/libc++/src/include/__random/exponential_distribution.h",
  1669. "//third_party/libc++/src/include/__random/extreme_value_distribution.h",
  1670. "//third_party/libc++/src/include/__random/fisher_f_distribution.h",
  1671. "//third_party/libc++/src/include/__random/gamma_distribution.h",
  1672. "//third_party/libc++/src/include/__random/generate_canonical.h",
  1673. "//third_party/libc++/src/include/__random/geometric_distribution.h",
  1674. "//third_party/libc++/src/include/__random/independent_bits_engine.h",
  1675. "//third_party/libc++/src/include/__random/is_seed_sequence.h",
  1676. "//third_party/libc++/src/include/__random/is_valid.h",
  1677. "//third_party/libc++/src/include/__random/knuth_b.h",
  1678. "//third_party/libc++/src/include/__random/linear_congruential_engine.h",
  1679. "//third_party/libc++/src/include/__random/log2.h",
  1680. "//third_party/libc++/src/include/__random/lognormal_distribution.h",
  1681. "//third_party/libc++/src/include/__random/mersenne_twister_engine.h",
  1682. "//third_party/libc++/src/include/__random/negative_binomial_distribution.h",
  1683. "//third_party/libc++/src/include/__random/normal_distribution.h",
  1684. "//third_party/libc++/src/include/__random/piecewise_constant_distribution.h",
  1685. "//third_party/libc++/src/include/__random/piecewise_linear_distribution.h",
  1686. "//third_party/libc++/src/include/__random/poisson_distribution.h",
  1687. "//third_party/libc++/src/include/__random/random_device.h",
  1688. "//third_party/libc++/src/include/__random/ranlux.h",
  1689. "//third_party/libc++/src/include/__random/seed_seq.h",
  1690. "//third_party/libc++/src/include/__random/shuffle_order_engine.h",
  1691. "//third_party/libc++/src/include/__random/student_t_distribution.h",
  1692. "//third_party/libc++/src/include/__random/subtract_with_carry_engine.h",
  1693. "//third_party/libc++/src/include/__random/uniform_int_distribution.h",
  1694. "//third_party/libc++/src/include/__random/uniform_random_bit_generator.h",
  1695. "//third_party/libc++/src/include/__random/uniform_real_distribution.h",
  1696. "//third_party/libc++/src/include/__random/weibull_distribution.h",
  1697. "//third_party/libc++/src/include/__ranges/access.h",
  1698. "//third_party/libc++/src/include/__ranges/all.h",
  1699. "//third_party/libc++/src/include/__ranges/as_rvalue_view.h",
  1700. "//third_party/libc++/src/include/__ranges/chunk_by_view.h",
  1701. "//third_party/libc++/src/include/__ranges/common_view.h",
  1702. "//third_party/libc++/src/include/__ranges/concepts.h",
  1703. "//third_party/libc++/src/include/__ranges/container_compatible_range.h",
  1704. "//third_party/libc++/src/include/__ranges/counted.h",
  1705. "//third_party/libc++/src/include/__ranges/dangling.h",
  1706. "//third_party/libc++/src/include/__ranges/data.h",
  1707. "//third_party/libc++/src/include/__ranges/drop_view.h",
  1708. "//third_party/libc++/src/include/__ranges/drop_while_view.h",
  1709. "//third_party/libc++/src/include/__ranges/elements_view.h",
  1710. "//third_party/libc++/src/include/__ranges/empty.h",
  1711. "//third_party/libc++/src/include/__ranges/empty_view.h",
  1712. "//third_party/libc++/src/include/__ranges/enable_borrowed_range.h",
  1713. "//third_party/libc++/src/include/__ranges/enable_view.h",
  1714. "//third_party/libc++/src/include/__ranges/filter_view.h",
  1715. "//third_party/libc++/src/include/__ranges/from_range.h",
  1716. "//third_party/libc++/src/include/__ranges/iota_view.h",
  1717. "//third_party/libc++/src/include/__ranges/istream_view.h",
  1718. "//third_party/libc++/src/include/__ranges/join_view.h",
  1719. "//third_party/libc++/src/include/__ranges/lazy_split_view.h",
  1720. "//third_party/libc++/src/include/__ranges/movable_box.h",
  1721. "//third_party/libc++/src/include/__ranges/non_propagating_cache.h",
  1722. "//third_party/libc++/src/include/__ranges/owning_view.h",
  1723. "//third_party/libc++/src/include/__ranges/range_adaptor.h",
  1724. "//third_party/libc++/src/include/__ranges/rbegin.h",
  1725. "//third_party/libc++/src/include/__ranges/ref_view.h",
  1726. "//third_party/libc++/src/include/__ranges/rend.h",
  1727. "//third_party/libc++/src/include/__ranges/repeat_view.h",
  1728. "//third_party/libc++/src/include/__ranges/reverse_view.h",
  1729. "//third_party/libc++/src/include/__ranges/single_view.h",
  1730. "//third_party/libc++/src/include/__ranges/size.h",
  1731. "//third_party/libc++/src/include/__ranges/split_view.h",
  1732. "//third_party/libc++/src/include/__ranges/subrange.h",
  1733. "//third_party/libc++/src/include/__ranges/take_view.h",
  1734. "//third_party/libc++/src/include/__ranges/take_while_view.h",
  1735. "//third_party/libc++/src/include/__ranges/to.h",
  1736. "//third_party/libc++/src/include/__ranges/transform_view.h",
  1737. "//third_party/libc++/src/include/__ranges/view_interface.h",
  1738. "//third_party/libc++/src/include/__ranges/views.h",
  1739. "//third_party/libc++/src/include/__ranges/zip_view.h",
  1740. "//third_party/libc++/src/include/__split_buffer",
  1741. "//third_party/libc++/src/include/__std_mbstate_t.h",
  1742. "//third_party/libc++/src/include/__stop_token/atomic_unique_lock.h",
  1743. "//third_party/libc++/src/include/__stop_token/intrusive_list_view.h",
  1744. "//third_party/libc++/src/include/__stop_token/intrusive_shared_ptr.h",
  1745. "//third_party/libc++/src/include/__stop_token/stop_callback.h",
  1746. "//third_party/libc++/src/include/__stop_token/stop_source.h",
  1747. "//third_party/libc++/src/include/__stop_token/stop_state.h",
  1748. "//third_party/libc++/src/include/__stop_token/stop_token.h",
  1749. "//third_party/libc++/src/include/__string/char_traits.h",
  1750. "//third_party/libc++/src/include/__string/constexpr_c_functions.h",
  1751. "//third_party/libc++/src/include/__string/extern_template_lists.h",
  1752. "//third_party/libc++/src/include/__support/ibm/gettod_zos.h",
  1753. "//third_party/libc++/src/include/__support/ibm/locale_mgmt_zos.h",
  1754. "//third_party/libc++/src/include/__support/ibm/nanosleep.h",
  1755. "//third_party/libc++/src/include/__support/xlocale/__nop_locale_mgmt.h",
  1756. "//third_party/libc++/src/include/__support/xlocale/__posix_l_fallback.h",
  1757. "//third_party/libc++/src/include/__support/xlocale/__strtonum_fallback.h",
  1758. "//third_party/libc++/src/include/__system_error/errc.h",
  1759. "//third_party/libc++/src/include/__system_error/error_category.h",
  1760. "//third_party/libc++/src/include/__system_error/error_code.h",
  1761. "//third_party/libc++/src/include/__system_error/error_condition.h",
  1762. "//third_party/libc++/src/include/__system_error/system_error.h",
  1763. "//third_party/libc++/src/include/__system_error/throw_system_error.h",
  1764. "//third_party/libc++/src/include/__thread/formatter.h",
  1765. "//third_party/libc++/src/include/__thread/id.h",
  1766. "//third_party/libc++/src/include/__thread/jthread.h",
  1767. "//third_party/libc++/src/include/__thread/poll_with_backoff.h",
  1768. "//third_party/libc++/src/include/__thread/support/c11.h",
  1769. "//third_party/libc++/src/include/__thread/support/external.h",
  1770. "//third_party/libc++/src/include/__thread/support/pthread.h",
  1771. "//third_party/libc++/src/include/__thread/support/windows.h",
  1772. "//third_party/libc++/src/include/__thread/support.h",
  1773. "//third_party/libc++/src/include/__thread/this_thread.h",
  1774. "//third_party/libc++/src/include/__thread/thread.h",
  1775. "//third_party/libc++/src/include/__thread/timed_backoff_policy.h",
  1776. "//third_party/libc++/src/include/__tree",
  1777. "//third_party/libc++/src/include/__tuple/find_index.h",
  1778. "//third_party/libc++/src/include/__tuple/ignore.h",
  1779. "//third_party/libc++/src/include/__tuple/make_tuple_types.h",
  1780. "//third_party/libc++/src/include/__tuple/sfinae_helpers.h",
  1781. "//third_party/libc++/src/include/__tuple/tuple_element.h",
  1782. "//third_party/libc++/src/include/__tuple/tuple_indices.h",
  1783. "//third_party/libc++/src/include/__tuple/tuple_like.h",
  1784. "//third_party/libc++/src/include/__tuple/tuple_like_ext.h",
  1785. "//third_party/libc++/src/include/__tuple/tuple_like_no_subrange.h",
  1786. "//third_party/libc++/src/include/__tuple/tuple_size.h",
  1787. "//third_party/libc++/src/include/__tuple/tuple_types.h",
  1788. "//third_party/libc++/src/include/__type_traits/add_cv_quals.h",
  1789. "//third_party/libc++/src/include/__type_traits/add_lvalue_reference.h",
  1790. "//third_party/libc++/src/include/__type_traits/add_pointer.h",
  1791. "//third_party/libc++/src/include/__type_traits/add_rvalue_reference.h",
  1792. "//third_party/libc++/src/include/__type_traits/aligned_storage.h",
  1793. "//third_party/libc++/src/include/__type_traits/aligned_union.h",
  1794. "//third_party/libc++/src/include/__type_traits/alignment_of.h",
  1795. "//third_party/libc++/src/include/__type_traits/can_extract_key.h",
  1796. "//third_party/libc++/src/include/__type_traits/common_reference.h",
  1797. "//third_party/libc++/src/include/__type_traits/common_type.h",
  1798. "//third_party/libc++/src/include/__type_traits/conditional.h",
  1799. "//third_party/libc++/src/include/__type_traits/conjunction.h",
  1800. "//third_party/libc++/src/include/__type_traits/container_traits.h",
  1801. "//third_party/libc++/src/include/__type_traits/copy_cv.h",
  1802. "//third_party/libc++/src/include/__type_traits/copy_cvref.h",
  1803. "//third_party/libc++/src/include/__type_traits/datasizeof.h",
  1804. "//third_party/libc++/src/include/__type_traits/decay.h",
  1805. "//third_party/libc++/src/include/__type_traits/dependent_type.h",
  1806. "//third_party/libc++/src/include/__type_traits/desugars_to.h",
  1807. "//third_party/libc++/src/include/__type_traits/detected_or.h",
  1808. "//third_party/libc++/src/include/__type_traits/disjunction.h",
  1809. "//third_party/libc++/src/include/__type_traits/enable_if.h",
  1810. "//third_party/libc++/src/include/__type_traits/extent.h",
  1811. "//third_party/libc++/src/include/__type_traits/has_unique_object_representation.h",
  1812. "//third_party/libc++/src/include/__type_traits/has_virtual_destructor.h",
  1813. "//third_party/libc++/src/include/__type_traits/integral_constant.h",
  1814. "//third_party/libc++/src/include/__type_traits/invoke.h",
  1815. "//third_party/libc++/src/include/__type_traits/is_abstract.h",
  1816. "//third_party/libc++/src/include/__type_traits/is_aggregate.h",
  1817. "//third_party/libc++/src/include/__type_traits/is_allocator.h",
  1818. "//third_party/libc++/src/include/__type_traits/is_always_bitcastable.h",
  1819. "//third_party/libc++/src/include/__type_traits/is_arithmetic.h",
  1820. "//third_party/libc++/src/include/__type_traits/is_array.h",
  1821. "//third_party/libc++/src/include/__type_traits/is_assignable.h",
  1822. "//third_party/libc++/src/include/__type_traits/is_base_of.h",
  1823. "//third_party/libc++/src/include/__type_traits/is_bounded_array.h",
  1824. "//third_party/libc++/src/include/__type_traits/is_callable.h",
  1825. "//third_party/libc++/src/include/__type_traits/is_char_like_type.h",
  1826. "//third_party/libc++/src/include/__type_traits/is_class.h",
  1827. "//third_party/libc++/src/include/__type_traits/is_compound.h",
  1828. "//third_party/libc++/src/include/__type_traits/is_const.h",
  1829. "//third_party/libc++/src/include/__type_traits/is_constant_evaluated.h",
  1830. "//third_party/libc++/src/include/__type_traits/is_constructible.h",
  1831. "//third_party/libc++/src/include/__type_traits/is_convertible.h",
  1832. "//third_party/libc++/src/include/__type_traits/is_core_convertible.h",
  1833. "//third_party/libc++/src/include/__type_traits/is_destructible.h",
  1834. "//third_party/libc++/src/include/__type_traits/is_empty.h",
  1835. "//third_party/libc++/src/include/__type_traits/is_enum.h",
  1836. "//third_party/libc++/src/include/__type_traits/is_equality_comparable.h",
  1837. "//third_party/libc++/src/include/__type_traits/is_execution_policy.h",
  1838. "//third_party/libc++/src/include/__type_traits/is_final.h",
  1839. "//third_party/libc++/src/include/__type_traits/is_floating_point.h",
  1840. "//third_party/libc++/src/include/__type_traits/is_function.h",
  1841. "//third_party/libc++/src/include/__type_traits/is_fundamental.h",
  1842. "//third_party/libc++/src/include/__type_traits/is_implicit_lifetime.h",
  1843. "//third_party/libc++/src/include/__type_traits/is_implicitly_default_constructible.h",
  1844. "//third_party/libc++/src/include/__type_traits/is_integral.h",
  1845. "//third_party/libc++/src/include/__type_traits/is_literal_type.h",
  1846. "//third_party/libc++/src/include/__type_traits/is_member_pointer.h",
  1847. "//third_party/libc++/src/include/__type_traits/is_nothrow_assignable.h",
  1848. "//third_party/libc++/src/include/__type_traits/is_nothrow_constructible.h",
  1849. "//third_party/libc++/src/include/__type_traits/is_nothrow_convertible.h",
  1850. "//third_party/libc++/src/include/__type_traits/is_nothrow_destructible.h",
  1851. "//third_party/libc++/src/include/__type_traits/is_null_pointer.h",
  1852. "//third_party/libc++/src/include/__type_traits/is_object.h",
  1853. "//third_party/libc++/src/include/__type_traits/is_pod.h",
  1854. "//third_party/libc++/src/include/__type_traits/is_pointer.h",
  1855. "//third_party/libc++/src/include/__type_traits/is_polymorphic.h",
  1856. "//third_party/libc++/src/include/__type_traits/is_primary_template.h",
  1857. "//third_party/libc++/src/include/__type_traits/is_reference.h",
  1858. "//third_party/libc++/src/include/__type_traits/is_reference_wrapper.h",
  1859. "//third_party/libc++/src/include/__type_traits/is_referenceable.h",
  1860. "//third_party/libc++/src/include/__type_traits/is_same.h",
  1861. "//third_party/libc++/src/include/__type_traits/is_scalar.h",
  1862. "//third_party/libc++/src/include/__type_traits/is_signed.h",
  1863. "//third_party/libc++/src/include/__type_traits/is_signed_integer.h",
  1864. "//third_party/libc++/src/include/__type_traits/is_specialization.h",
  1865. "//third_party/libc++/src/include/__type_traits/is_standard_layout.h",
  1866. "//third_party/libc++/src/include/__type_traits/is_swappable.h",
  1867. "//third_party/libc++/src/include/__type_traits/is_trivial.h",
  1868. "//third_party/libc++/src/include/__type_traits/is_trivially_assignable.h",
  1869. "//third_party/libc++/src/include/__type_traits/is_trivially_constructible.h",
  1870. "//third_party/libc++/src/include/__type_traits/is_trivially_copyable.h",
  1871. "//third_party/libc++/src/include/__type_traits/is_trivially_destructible.h",
  1872. "//third_party/libc++/src/include/__type_traits/is_trivially_lexicographically_comparable.h",
  1873. "//third_party/libc++/src/include/__type_traits/is_trivially_relocatable.h",
  1874. "//third_party/libc++/src/include/__type_traits/is_unbounded_array.h",
  1875. "//third_party/libc++/src/include/__type_traits/is_union.h",
  1876. "//third_party/libc++/src/include/__type_traits/is_unsigned.h",
  1877. "//third_party/libc++/src/include/__type_traits/is_unsigned_integer.h",
  1878. "//third_party/libc++/src/include/__type_traits/is_valid_expansion.h",
  1879. "//third_party/libc++/src/include/__type_traits/is_void.h",
  1880. "//third_party/libc++/src/include/__type_traits/is_volatile.h",
  1881. "//third_party/libc++/src/include/__type_traits/lazy.h",
  1882. "//third_party/libc++/src/include/__type_traits/make_32_64_or_128_bit.h",
  1883. "//third_party/libc++/src/include/__type_traits/make_const_lvalue_ref.h",
  1884. "//third_party/libc++/src/include/__type_traits/make_signed.h",
  1885. "//third_party/libc++/src/include/__type_traits/make_unsigned.h",
  1886. "//third_party/libc++/src/include/__type_traits/maybe_const.h",
  1887. "//third_party/libc++/src/include/__type_traits/nat.h",
  1888. "//third_party/libc++/src/include/__type_traits/negation.h",
  1889. "//third_party/libc++/src/include/__type_traits/promote.h",
  1890. "//third_party/libc++/src/include/__type_traits/rank.h",
  1891. "//third_party/libc++/src/include/__type_traits/remove_all_extents.h",
  1892. "//third_party/libc++/src/include/__type_traits/remove_const.h",
  1893. "//third_party/libc++/src/include/__type_traits/remove_const_ref.h",
  1894. "//third_party/libc++/src/include/__type_traits/remove_cv.h",
  1895. "//third_party/libc++/src/include/__type_traits/remove_cvref.h",
  1896. "//third_party/libc++/src/include/__type_traits/remove_extent.h",
  1897. "//third_party/libc++/src/include/__type_traits/remove_pointer.h",
  1898. "//third_party/libc++/src/include/__type_traits/remove_reference.h",
  1899. "//third_party/libc++/src/include/__type_traits/remove_volatile.h",
  1900. "//third_party/libc++/src/include/__type_traits/result_of.h",
  1901. "//third_party/libc++/src/include/__type_traits/strip_signature.h",
  1902. "//third_party/libc++/src/include/__type_traits/type_identity.h",
  1903. "//third_party/libc++/src/include/__type_traits/type_list.h",
  1904. "//third_party/libc++/src/include/__type_traits/underlying_type.h",
  1905. "//third_party/libc++/src/include/__type_traits/unwrap_ref.h",
  1906. "//third_party/libc++/src/include/__type_traits/void_t.h",
  1907. "//third_party/libc++/src/include/__undef_macros",
  1908. "//third_party/libc++/src/include/__utility/as_const.h",
  1909. "//third_party/libc++/src/include/__utility/as_lvalue.h",
  1910. "//third_party/libc++/src/include/__utility/auto_cast.h",
  1911. "//third_party/libc++/src/include/__utility/cmp.h",
  1912. "//third_party/libc++/src/include/__utility/convert_to_integral.h",
  1913. "//third_party/libc++/src/include/__utility/declval.h",
  1914. "//third_party/libc++/src/include/__utility/element_count.h",
  1915. "//third_party/libc++/src/include/__utility/empty.h",
  1916. "//third_party/libc++/src/include/__utility/exception_guard.h",
  1917. "//third_party/libc++/src/include/__utility/exchange.h",
  1918. "//third_party/libc++/src/include/__utility/forward.h",
  1919. "//third_party/libc++/src/include/__utility/forward_like.h",
  1920. "//third_party/libc++/src/include/__utility/in_place.h",
  1921. "//third_party/libc++/src/include/__utility/integer_sequence.h",
  1922. "//third_party/libc++/src/include/__utility/is_pointer_in_range.h",
  1923. "//third_party/libc++/src/include/__utility/is_valid_range.h",
  1924. "//third_party/libc++/src/include/__utility/move.h",
  1925. "//third_party/libc++/src/include/__utility/no_destroy.h",
  1926. "//third_party/libc++/src/include/__utility/pair.h",
  1927. "//third_party/libc++/src/include/__utility/piecewise_construct.h",
  1928. "//third_party/libc++/src/include/__utility/priority_tag.h",
  1929. "//third_party/libc++/src/include/__utility/private_constructor_tag.h",
  1930. "//third_party/libc++/src/include/__utility/rel_ops.h",
  1931. "//third_party/libc++/src/include/__utility/scope_guard.h",
  1932. "//third_party/libc++/src/include/__utility/small_buffer.h",
  1933. "//third_party/libc++/src/include/__utility/swap.h",
  1934. "//third_party/libc++/src/include/__utility/to_underlying.h",
  1935. "//third_party/libc++/src/include/__utility/unreachable.h",
  1936. "//third_party/libc++/src/include/__variant/monostate.h",
  1937. "//third_party/libc++/src/include/__vector/comparison.h",
  1938. "//third_party/libc++/src/include/__vector/container_traits.h",
  1939. "//third_party/libc++/src/include/__vector/erase.h",
  1940. "//third_party/libc++/src/include/__vector/pmr.h",
  1941. "//third_party/libc++/src/include/__vector/swap.h",
  1942. "//third_party/libc++/src/include/__vector/vector.h",
  1943. "//third_party/libc++/src/include/__vector/vector_bool.h",
  1944. "//third_party/libc++/src/include/__vector/vector_bool_formatter.h",
  1945. "//third_party/libc++/src/include/__verbose_abort",
  1946. "//third_party/libc++/src/include/algorithm",
  1947. "//third_party/libc++/src/include/any",
  1948. "//third_party/libc++/src/include/array",
  1949. "//third_party/libc++/src/include/atomic",
  1950. "//third_party/libc++/src/include/barrier",
  1951. "//third_party/libc++/src/include/bit",
  1952. "//third_party/libc++/src/include/bitset",
  1953. "//third_party/libc++/src/include/cassert",
  1954. "//third_party/libc++/src/include/ccomplex",
  1955. "//third_party/libc++/src/include/cctype",
  1956. "//third_party/libc++/src/include/cerrno",
  1957. "//third_party/libc++/src/include/cfenv",
  1958. "//third_party/libc++/src/include/cfloat",
  1959. "//third_party/libc++/src/include/charconv",
  1960. "//third_party/libc++/src/include/chrono",
  1961. "//third_party/libc++/src/include/cinttypes",
  1962. "//third_party/libc++/src/include/ciso646",
  1963. "//third_party/libc++/src/include/climits",
  1964. "//third_party/libc++/src/include/clocale",
  1965. "//third_party/libc++/src/include/cmath",
  1966. "//third_party/libc++/src/include/codecvt",
  1967. "//third_party/libc++/src/include/compare",
  1968. "//third_party/libc++/src/include/complex",
  1969. "//third_party/libc++/src/include/complex.h",
  1970. "//third_party/libc++/src/include/concepts",
  1971. "//third_party/libc++/src/include/condition_variable",
  1972. "//third_party/libc++/src/include/coroutine",
  1973. "//third_party/libc++/src/include/csetjmp",
  1974. "//third_party/libc++/src/include/csignal",
  1975. "//third_party/libc++/src/include/cstdalign",
  1976. "//third_party/libc++/src/include/cstdarg",
  1977. "//third_party/libc++/src/include/cstdbool",
  1978. "//third_party/libc++/src/include/cstddef",
  1979. "//third_party/libc++/src/include/cstdint",
  1980. "//third_party/libc++/src/include/cstdio",
  1981. "//third_party/libc++/src/include/cstdlib",
  1982. "//third_party/libc++/src/include/cstring",
  1983. "//third_party/libc++/src/include/ctgmath",
  1984. "//third_party/libc++/src/include/ctime",
  1985. "//third_party/libc++/src/include/ctype.h",
  1986. "//third_party/libc++/src/include/cuchar",
  1987. "//third_party/libc++/src/include/cwchar",
  1988. "//third_party/libc++/src/include/cwctype",
  1989. "//third_party/libc++/src/include/deque",
  1990. "//third_party/libc++/src/include/errno.h",
  1991. "//third_party/libc++/src/include/exception",
  1992. "//third_party/libc++/src/include/execution",
  1993. "//third_party/libc++/src/include/expected",
  1994. "//third_party/libc++/src/include/experimental/__simd/aligned_tag.h",
  1995. "//third_party/libc++/src/include/experimental/__simd/declaration.h",
  1996. "//third_party/libc++/src/include/experimental/__simd/reference.h",
  1997. "//third_party/libc++/src/include/experimental/__simd/scalar.h",
  1998. "//third_party/libc++/src/include/experimental/__simd/simd.h",
  1999. "//third_party/libc++/src/include/experimental/__simd/simd_mask.h",
  2000. "//third_party/libc++/src/include/experimental/__simd/traits.h",
  2001. "//third_party/libc++/src/include/experimental/__simd/utility.h",
  2002. "//third_party/libc++/src/include/experimental/__simd/vec_ext.h",
  2003. "//third_party/libc++/src/include/experimental/iterator",
  2004. "//third_party/libc++/src/include/experimental/memory",
  2005. "//third_party/libc++/src/include/experimental/propagate_const",
  2006. "//third_party/libc++/src/include/experimental/simd",
  2007. "//third_party/libc++/src/include/experimental/type_traits",
  2008. "//third_party/libc++/src/include/experimental/utility",
  2009. "//third_party/libc++/src/include/ext/__hash",
  2010. "//third_party/libc++/src/include/ext/hash_map",
  2011. "//third_party/libc++/src/include/ext/hash_set",
  2012. "//third_party/libc++/src/include/fenv.h",
  2013. "//third_party/libc++/src/include/filesystem",
  2014. "//third_party/libc++/src/include/flat_map",
  2015. "//third_party/libc++/src/include/float.h",
  2016. "//third_party/libc++/src/include/format",
  2017. "//third_party/libc++/src/include/forward_list",
  2018. "//third_party/libc++/src/include/fstream",
  2019. "//third_party/libc++/src/include/functional",
  2020. "//third_party/libc++/src/include/future",
  2021. "//third_party/libc++/src/include/initializer_list",
  2022. "//third_party/libc++/src/include/inttypes.h",
  2023. "//third_party/libc++/src/include/iomanip",
  2024. "//third_party/libc++/src/include/ios",
  2025. "//third_party/libc++/src/include/iosfwd",
  2026. "//third_party/libc++/src/include/iostream",
  2027. "//third_party/libc++/src/include/istream",
  2028. "//third_party/libc++/src/include/iterator",
  2029. "//third_party/libc++/src/include/latch",
  2030. "//third_party/libc++/src/include/limits",
  2031. "//third_party/libc++/src/include/list",
  2032. "//third_party/libc++/src/include/locale",
  2033. "//third_party/libc++/src/include/map",
  2034. "//third_party/libc++/src/include/math.h",
  2035. "//third_party/libc++/src/include/mdspan",
  2036. "//third_party/libc++/src/include/memory",
  2037. "//third_party/libc++/src/include/memory_resource",
  2038. "//third_party/libc++/src/include/module.modulemap",
  2039. "//third_party/libc++/src/include/mutex",
  2040. "//third_party/libc++/src/include/new",
  2041. "//third_party/libc++/src/include/numbers",
  2042. "//third_party/libc++/src/include/numeric",
  2043. "//third_party/libc++/src/include/optional",
  2044. "//third_party/libc++/src/include/ostream",
  2045. "//third_party/libc++/src/include/print",
  2046. "//third_party/libc++/src/include/queue",
  2047. "//third_party/libc++/src/include/random",
  2048. "//third_party/libc++/src/include/ranges",
  2049. "//third_party/libc++/src/include/ratio",
  2050. "//third_party/libc++/src/include/regex",
  2051. "//third_party/libc++/src/include/scoped_allocator",
  2052. "//third_party/libc++/src/include/semaphore",
  2053. "//third_party/libc++/src/include/set",
  2054. "//third_party/libc++/src/include/shared_mutex",
  2055. "//third_party/libc++/src/include/source_location",
  2056. "//third_party/libc++/src/include/span",
  2057. "//third_party/libc++/src/include/sstream",
  2058. "//third_party/libc++/src/include/stack",
  2059. "//third_party/libc++/src/include/stdatomic.h",
  2060. "//third_party/libc++/src/include/stdbool.h",
  2061. "//third_party/libc++/src/include/stddef.h",
  2062. "//third_party/libc++/src/include/stdexcept",
  2063. "//third_party/libc++/src/include/stdio.h",
  2064. "//third_party/libc++/src/include/stdlib.h",
  2065. "//third_party/libc++/src/include/stop_token",
  2066. "//third_party/libc++/src/include/streambuf",
  2067. "//third_party/libc++/src/include/string",
  2068. "//third_party/libc++/src/include/string.h",
  2069. "//third_party/libc++/src/include/string_view",
  2070. "//third_party/libc++/src/include/strstream",
  2071. "//third_party/libc++/src/include/syncstream",
  2072. "//third_party/libc++/src/include/system_error",
  2073. "//third_party/libc++/src/include/tgmath.h",
  2074. "//third_party/libc++/src/include/thread",
  2075. "//third_party/libc++/src/include/tuple",
  2076. "//third_party/libc++/src/include/type_traits",
  2077. "//third_party/libc++/src/include/typeindex",
  2078. "//third_party/libc++/src/include/typeinfo",
  2079. "//third_party/libc++/src/include/uchar.h",
  2080. "//third_party/libc++/src/include/unordered_map",
  2081. "//third_party/libc++/src/include/unordered_set",
  2082. "//third_party/libc++/src/include/utility",
  2083. "//third_party/libc++/src/include/valarray",
  2084. "//third_party/libc++/src/include/variant",
  2085. "//third_party/libc++/src/include/vector",
  2086. "//third_party/libc++/src/include/version",
  2087. "//third_party/libc++/src/include/wchar.h",
  2088. "//third_party/libc++/src/include/wctype.h",
  2089. ]
  2090. libcxx_licenses = [ "//third_party/libc++/src/LICENSE.TXT" ]