devtools.licenses.report 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656
  1. # File format ($ symbol means the beginning of a line):
  2. #
  3. # $ # this message
  4. # $ # =======================
  5. # $ # comments (all commentaries should starts with some number of spaces and # symbol)
  6. # ${action} {license spdx} {license text hash}
  7. # $BELONGS ./ya/make/file/relative/path/1/ya.make ./ya/make/2/ya.make
  8. # ${all_file_action} filename
  9. # $ # user commentaries (many lines)
  10. # $ generated description - files with this license, license text... (some number of lines that starts with some number of spaces, do not modify)
  11. # ${action} {license spdx} {license text hash}
  12. # $BELONGS ./ya/make/file/relative/path/3/ya.make
  13. # ${all_file_action} filename
  14. # $ # user commentaries
  15. # $ generated description
  16. # $ ...
  17. #
  18. # You can modify action, all_file_action and add commentaries
  19. # Available actions:
  20. # keep - keep license in contrib and use in credits
  21. # skip - skip license
  22. # remove - remove all files with this license
  23. # rename - save license text/links into licenses texts file, but not store SPDX into LINCENSE macro. You should store correct license id into devtools.license.spdx.txt file
  24. #
  25. # {all file action} records will be generated when license text contains filename that exists on filesystem (in contrib directory)
  26. # We suppose that that files can contain some license info
  27. # Available all file actions:
  28. # FILE_IGNORE - ignore file (do nothing)
  29. # FILE_INCLUDE - include all file data into licenses text file
  30. # =======================
  31. KEEP NCSA AND MIT 0791db4b6d90edd44c715bba1e426f74
  32. BELONGS openmp/ya.make
  33. FILE_INCLUDE builtins/LICENSE.txt found in files: openmp/extractExternal.cpp at line 11, openmp/include/30/omp.h.var at line 11, openmp/include/40/omp.h.var at line 11, openmp/include/41/omp.h.var at line 11, openmp/kmp.h at line 12, openmp/kmp_affinity.cpp at line 11, openmp/kmp_affinity.h at line 11, openmp/kmp_alloc.c at line 11, openmp/kmp_atomic.c at line 11, openmp/kmp_atomic.h at line 11, openmp/kmp_barrier.cpp at line 11, openmp/kmp_cancel.cpp at line 7, openmp/kmp_config.h at line 9, openmp/kmp_csupport.c at line 11, openmp/kmp_debug.c at line 11, openmp/kmp_debug.h at line 11, openmp/kmp_debugger.c at line 12, openmp/kmp_debugger.h at line 12, openmp/kmp_dispatch.cpp at line 11, openmp/kmp_environment.c at line 11, openmp/kmp_environment.h at line 11, openmp/kmp_error.c at line 11, openmp/kmp_error.h at line 11, openmp/kmp_ftn_cdecl.c at line 11, openmp/kmp_ftn_entry.h at line 11, openmp/kmp_ftn_extra.c at line 11, openmp/kmp_ftn_os.h at line 11, openmp/kmp_ftn_stdcall.c at line 11, openmp/kmp_global.c at line 11, openmp/kmp_gsupport.c at line 11, openmp/kmp_i18n.c at line 11, openmp/kmp_i18n.h at line 11, openmp/kmp_import.c at line 11, openmp/kmp_io.c at line 11, openmp/kmp_io.h at line 11, openmp/kmp_itt.c at line 14, openmp/kmp_itt.h at line 12, openmp/kmp_itt.inl at line 12, openmp/kmp_lock.cpp at line 11, openmp/kmp_lock.h at line 11, openmp/kmp_omp.h at line 13, openmp/kmp_os.h at line 11, openmp/kmp_platform.h at line 10, openmp/kmp_runtime.c at line 11, openmp/kmp_safe_c_api.h at line 7, openmp/kmp_sched.cpp at line 11, openmp/kmp_settings.c at line 11, openmp/kmp_settings.h at line 11, openmp/kmp_stats.cpp at line 11, openmp/kmp_stats.h at line 14, openmp/kmp_stats_timing.cpp at line 11, openmp/kmp_stats_timing.h at line 14, openmp/kmp_str.c at line 11, openmp/kmp_str.h at line 11, openmp/kmp_stub.c at line 11, openmp/kmp_stub.h at line 11, openmp/kmp_taskdeps.cpp at line 11, openmp/kmp_tasking.c at line 11, openmp/kmp_taskq.c at line 11, openmp/kmp_threadprivate.c at line 11, openmp/kmp_utility.c at line 11, openmp/kmp_version.c at line 11, openmp/kmp_version.h at line 11, openmp/kmp_wait_release.cpp at line 11, openmp/kmp_wait_release.h at line 11, openmp/kmp_wrapper_getpid.h at line 11, openmp/kmp_wrapper_malloc.h at line 12, openmp/omp.h at line 11, openmp/test-touch.c at line 9, openmp/thirdparty/ittnotify/disable_warnings.h at line 7, openmp/thirdparty/ittnotify/ittnotify.h at line 7, openmp/thirdparty/ittnotify/ittnotify_config.h at line 7, openmp/thirdparty/ittnotify/ittnotify_static.c at line 7, openmp/thirdparty/ittnotify/ittnotify_types.h at line 7, openmp/thirdparty/ittnotify/legacy/ittnotify.h at line 7, openmp/z_Linux_util.c at line 11, openmp/z_Windows_NT-586_util.c at line 11, openmp/z_Windows_NT_util.c at line 11
  34. License text:
  35. // This file is dual licensed under the MIT and the University of Illinois Open
  36. // Source Licenses. See LICENSE.txt for details.
  37. Scancode info:
  38. Original SPDX id: NCSA
  39. Score : 100.00
  40. Match type : NOTICE
  41. Links : http://www.otm.illinois.edu/faculty/forms/opensource.asp, https://spdx.org/licenses/NCSA
  42. Files with this license:
  43. openmp/extractExternal.cpp [10:11]
  44. openmp/include/30/omp.h.var [10:11]
  45. openmp/include/40/omp.h.var [10:11]
  46. openmp/include/41/omp.h.var [10:11]
  47. openmp/kmp.h [11:12]
  48. openmp/kmp_affinity.cpp [10:11]
  49. openmp/kmp_affinity.h [10:11]
  50. openmp/kmp_alloc.c [10:11]
  51. openmp/kmp_atomic.c [10:11]
  52. openmp/kmp_atomic.h [10:11]
  53. openmp/kmp_barrier.cpp [10:11]
  54. openmp/kmp_cancel.cpp [6:7]
  55. openmp/kmp_config.h [8:9]
  56. openmp/kmp_csupport.c [10:11]
  57. openmp/kmp_debug.c [10:11]
  58. openmp/kmp_debug.h [10:11]
  59. openmp/kmp_debugger.c [11:12]
  60. openmp/kmp_debugger.h [11:12]
  61. openmp/kmp_dispatch.cpp [10:11]
  62. openmp/kmp_environment.c [10:11]
  63. openmp/kmp_environment.h [10:11]
  64. openmp/kmp_error.c [10:11]
  65. openmp/kmp_error.h [10:11]
  66. openmp/kmp_ftn_cdecl.c [10:11]
  67. openmp/kmp_ftn_entry.h [10:11]
  68. openmp/kmp_ftn_extra.c [10:11]
  69. openmp/kmp_ftn_os.h [10:11]
  70. openmp/kmp_ftn_stdcall.c [10:11]
  71. openmp/kmp_global.c [10:11]
  72. openmp/kmp_gsupport.c [10:11]
  73. openmp/kmp_i18n.c [10:11]
  74. openmp/kmp_i18n.h [10:11]
  75. openmp/kmp_import.c [10:11]
  76. openmp/kmp_io.c [10:11]
  77. openmp/kmp_io.h [10:11]
  78. openmp/kmp_itt.c [13:14]
  79. openmp/kmp_itt.h [11:12]
  80. openmp/kmp_itt.inl [11:12]
  81. openmp/kmp_lock.cpp [10:11]
  82. openmp/kmp_lock.h [10:11]
  83. openmp/kmp_omp.h [12:13]
  84. openmp/kmp_os.h [10:11]
  85. openmp/kmp_platform.h [9:10]
  86. openmp/kmp_runtime.c [10:11]
  87. openmp/kmp_safe_c_api.h [6:7]
  88. openmp/kmp_sched.cpp [10:11]
  89. openmp/kmp_settings.c [10:11]
  90. openmp/kmp_settings.h [10:11]
  91. openmp/kmp_stats.cpp [10:11]
  92. openmp/kmp_stats.h [13:14]
  93. openmp/kmp_stats_timing.cpp [10:11]
  94. openmp/kmp_stats_timing.h [13:14]
  95. openmp/kmp_str.c [10:11]
  96. openmp/kmp_str.h [10:11]
  97. openmp/kmp_stub.c [10:11]
  98. openmp/kmp_stub.h [10:11]
  99. openmp/kmp_taskdeps.cpp [10:11]
  100. openmp/kmp_tasking.c [10:11]
  101. openmp/kmp_taskq.c [10:11]
  102. openmp/kmp_threadprivate.c [10:11]
  103. openmp/kmp_utility.c [10:11]
  104. openmp/kmp_version.c [10:11]
  105. openmp/kmp_version.h [10:11]
  106. openmp/kmp_wait_release.cpp [10:11]
  107. openmp/kmp_wait_release.h [10:11]
  108. openmp/kmp_wrapper_getpid.h [10:11]
  109. openmp/kmp_wrapper_malloc.h [11:12]
  110. openmp/omp.h [10:11]
  111. openmp/test-touch.c [8:9]
  112. openmp/thirdparty/ittnotify/disable_warnings.h [6:7]
  113. openmp/thirdparty/ittnotify/ittnotify.h [6:7]
  114. openmp/thirdparty/ittnotify/ittnotify_config.h [6:7]
  115. openmp/thirdparty/ittnotify/ittnotify_static.c [6:7]
  116. openmp/thirdparty/ittnotify/ittnotify_types.h [6:7]
  117. openmp/thirdparty/ittnotify/legacy/ittnotify.h [6:7]
  118. openmp/z_Linux_util.c [10:11]
  119. openmp/z_Windows_NT-586_util.c [10:11]
  120. openmp/z_Windows_NT_util.c [10:11]
  121. Scancode info:
  122. Original SPDX id: MIT
  123. Score : 100.00
  124. Match type : NOTICE
  125. Links : http://opensource.org/licenses/mit-license.php, https://spdx.org/licenses/MIT
  126. Files with this license:
  127. openmp/extractExternal.cpp [10:11]
  128. openmp/include/30/omp.h.var [10:11]
  129. openmp/include/40/omp.h.var [10:11]
  130. openmp/include/41/omp.h.var [10:11]
  131. openmp/kmp.h [11:12]
  132. openmp/kmp_affinity.cpp [10:11]
  133. openmp/kmp_affinity.h [10:11]
  134. openmp/kmp_alloc.c [10:11]
  135. openmp/kmp_atomic.c [10:11]
  136. openmp/kmp_atomic.h [10:11]
  137. openmp/kmp_barrier.cpp [10:11]
  138. openmp/kmp_cancel.cpp [6:7]
  139. openmp/kmp_config.h [8:9]
  140. openmp/kmp_csupport.c [10:11]
  141. openmp/kmp_debug.c [10:11]
  142. openmp/kmp_debug.h [10:11]
  143. openmp/kmp_debugger.c [11:12]
  144. openmp/kmp_debugger.h [11:12]
  145. openmp/kmp_dispatch.cpp [10:11]
  146. openmp/kmp_environment.c [10:11]
  147. openmp/kmp_environment.h [10:11]
  148. openmp/kmp_error.c [10:11]
  149. openmp/kmp_error.h [10:11]
  150. openmp/kmp_ftn_cdecl.c [10:11]
  151. openmp/kmp_ftn_entry.h [10:11]
  152. openmp/kmp_ftn_extra.c [10:11]
  153. openmp/kmp_ftn_os.h [10:11]
  154. openmp/kmp_ftn_stdcall.c [10:11]
  155. openmp/kmp_global.c [10:11]
  156. openmp/kmp_gsupport.c [10:11]
  157. openmp/kmp_i18n.c [10:11]
  158. openmp/kmp_i18n.h [10:11]
  159. openmp/kmp_import.c [10:11]
  160. openmp/kmp_io.c [10:11]
  161. openmp/kmp_io.h [10:11]
  162. openmp/kmp_itt.c [13:14]
  163. openmp/kmp_itt.h [11:12]
  164. openmp/kmp_itt.inl [11:12]
  165. openmp/kmp_lock.cpp [10:11]
  166. openmp/kmp_lock.h [10:11]
  167. openmp/kmp_omp.h [12:13]
  168. openmp/kmp_os.h [10:11]
  169. openmp/kmp_platform.h [9:10]
  170. openmp/kmp_runtime.c [10:11]
  171. openmp/kmp_safe_c_api.h [6:7]
  172. openmp/kmp_sched.cpp [10:11]
  173. openmp/kmp_settings.c [10:11]
  174. openmp/kmp_settings.h [10:11]
  175. openmp/kmp_stats.cpp [10:11]
  176. openmp/kmp_stats.h [13:14]
  177. openmp/kmp_stats_timing.cpp [10:11]
  178. openmp/kmp_stats_timing.h [13:14]
  179. openmp/kmp_str.c [10:11]
  180. openmp/kmp_str.h [10:11]
  181. openmp/kmp_stub.c [10:11]
  182. openmp/kmp_stub.h [10:11]
  183. openmp/kmp_taskdeps.cpp [10:11]
  184. openmp/kmp_tasking.c [10:11]
  185. openmp/kmp_taskq.c [10:11]
  186. openmp/kmp_threadprivate.c [10:11]
  187. openmp/kmp_utility.c [10:11]
  188. openmp/kmp_version.c [10:11]
  189. openmp/kmp_version.h [10:11]
  190. openmp/kmp_wait_release.cpp [10:11]
  191. openmp/kmp_wait_release.h [10:11]
  192. openmp/kmp_wrapper_getpid.h [10:11]
  193. openmp/kmp_wrapper_malloc.h [11:12]
  194. openmp/omp.h [10:11]
  195. openmp/test-touch.c [8:9]
  196. openmp/thirdparty/ittnotify/disable_warnings.h [6:7]
  197. openmp/thirdparty/ittnotify/ittnotify.h [6:7]
  198. openmp/thirdparty/ittnotify/ittnotify_config.h [6:7]
  199. openmp/thirdparty/ittnotify/ittnotify_static.c [6:7]
  200. openmp/thirdparty/ittnotify/ittnotify_types.h [6:7]
  201. openmp/thirdparty/ittnotify/legacy/ittnotify.h [6:7]
  202. openmp/z_Linux_util.c [10:11]
  203. openmp/z_Windows_NT-586_util.c [10:11]
  204. openmp/z_Windows_NT_util.c [10:11]
  205. KEEP NCSA AND MIT 1f7e00acb6cda5de868d4d4c1ffe3c2b
  206. BELONGS libcxx/ya.make
  207. Note: matched license text is too long. Read it in the source files.
  208. Scancode info:
  209. Original SPDX id: NCSA
  210. Score : 100.00
  211. Match type : NOTICE
  212. Links : http://www.otm.illinois.edu/faculty/forms/opensource.asp, https://spdx.org/licenses/NCSA
  213. Files with this license:
  214. libcxx/LICENSE.TXT [240:245]
  215. Scancode info:
  216. Original SPDX id: MIT
  217. Score : 100.00
  218. Match type : NOTICE
  219. Links : http://opensource.org/licenses/mit-license.php, https://spdx.org/licenses/MIT
  220. Files with this license:
  221. libcxx/LICENSE.TXT [240:245]
  222. KEEP NCSA AND MIT 479de2cae020eacfac58212c03d33ab1
  223. BELONGS openmp/ya.make
  224. FILE_INCLUDE builtins/LICENSE.txt found in files: openmp/thirdparty/ittnotify/ittnotify_static.h at line 7
  225. License text:
  226. // This file is dual licensed under the MIT and the University of Illinois Open
  227. // Source Licenses. See LICENSE.txt for details.
  228. Scancode info:
  229. Original SPDX id: NCSA
  230. Score : 100.00
  231. Match type : NOTICE
  232. Links : http://www.otm.illinois.edu/faculty/forms/opensource.asp, https://spdx.org/licenses/NCSA
  233. Files with this license:
  234. openmp/thirdparty/ittnotify/ittnotify_static.h [6:7]
  235. Scancode info:
  236. Original SPDX id: MIT
  237. Score : 100.00
  238. Match type : NOTICE
  239. Links : http://opensource.org/licenses/mit-license.php, https://spdx.org/licenses/MIT
  240. Files with this license:
  241. openmp/thirdparty/ittnotify/ittnotify_static.h [6:7]
  242. KEEP NCSA 5a35b4c0d3b3923cac31a5a371332ca2
  243. BELONGS libcxx/ya.make
  244. License text:
  245. Legacy LLVM License (https://llvm.org/docs/DeveloperPolicy.html#legacy):
  246. Scancode info:
  247. Original SPDX id: NCSA
  248. Score : 100.00
  249. Match type : REFERENCE
  250. Links : http://www.otm.illinois.edu/faculty/forms/opensource.asp, https://spdx.org/licenses/NCSA
  251. Files with this license:
  252. libcxx/LICENSE.TXT [237:237]
  253. KEEP BSD-2-Clause 5a4c43ebab4641c8f908bfd9c8d25cec
  254. BELONGS libcxxrt/ya.make
  255. FILE_IGNORE libcxx/include/experimental/list found in files: libcxxrt/exception.cc at line 11, libcxxrt/exception.cc at line 8
  256. FILE_IGNORE libcxx/include/list found in files: libcxxrt/exception.cc at line 11, libcxxrt/exception.cc at line 8
  257. FILE_INCLUDE libcxxrt/COPYRIGHT found in files: libcxxrt/exception.cc at line 14, libcxxrt/exception.cc at line 17
  258. # list - just word, not file reference
  259. Note: matched license text is too long. Read it in the source files.
  260. Scancode info:
  261. Original SPDX id: BSD-2-Clause
  262. Score : 100.00
  263. Match type : TEXT
  264. Links : http://opensource.org/licenses/bsd-license.php, http://www.opensource.org/licenses/BSD-2-Clause, https://spdx.org/licenses/BSD-2-Clause
  265. Files with this license:
  266. libcxxrt/exception.cc [4:24]
  267. KEEP MIT 5debb370f50e1dfd24ff5144233a2ef6
  268. BELONGS libcxx/ya.make
  269. FILE_IGNORE libcxx/include/any found in files: libcxx/LICENSE.TXT at line 295
  270. FILE_INCLUDE libcxxrt/AUTHORS found in files: libcxx/LICENSE.TXT at line 308
  271. FILE_INCLUDE libcxxrt/COPYRIGHT found in files: libcxx/LICENSE.TXT at line 308
  272. # any - just word, not file reference
  273. Note: matched license text is too long. Read it in the source files.
  274. Scancode info:
  275. Original SPDX id: MIT
  276. Score : 100.00
  277. Match type : TEXT
  278. Links : http://opensource.org/licenses/mit-license.php, https://spdx.org/licenses/MIT
  279. Files with this license:
  280. libcxx/LICENSE.TXT [295:311]
  281. KEEP NCSA AND MIT 61ab203794bd26e0aab2c6b954e30d9a
  282. BELONGS openmp/ya.make
  283. FILE_INCLUDE builtins/LICENSE.txt found in files: openmp/libomp.rc.var at line 9, openmp/z_Linux_asm.s at line 10
  284. License text:
  285. //// This file is dual licensed under the MIT and the University of Illinois Open
  286. //// Source Licenses. See LICENSE.txt for details.
  287. Scancode info:
  288. Original SPDX id: NCSA
  289. Score : 100.00
  290. Match type : NOTICE
  291. Links : http://www.otm.illinois.edu/faculty/forms/opensource.asp, https://spdx.org/licenses/NCSA
  292. Files with this license:
  293. openmp/libomp.rc.var [8:9]
  294. openmp/z_Linux_asm.s [9:10]
  295. Scancode info:
  296. Original SPDX id: MIT
  297. Score : 100.00
  298. Match type : NOTICE
  299. Links : http://opensource.org/licenses/mit-license.php, https://spdx.org/licenses/MIT
  300. Files with this license:
  301. openmp/libomp.rc.var [8:9]
  302. openmp/z_Linux_asm.s [9:10]
  303. KEEP Apache-2.0 WITH LLVM-exception 705a75a25bce12b12334e8fc577d8a46
  304. BELONGS libcxx/ya.make
  305. License text:
  306. * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  307. * See https://llvm.org/LICENSE.txt for license information.
  308. Scancode info:
  309. Original SPDX id: Apache-2.0
  310. Score : 100.00
  311. Match type : NOTICE
  312. Links : http://www.apache.org/licenses/, http://www.apache.org/licenses/LICENSE-2.0, https://spdx.org/licenses/Apache-2.0
  313. Files with this license:
  314. libcxx/src/filesystem/int128_builtins.cpp [3:4]
  315. Scancode info:
  316. Original SPDX id: LLVM-exception
  317. Score : 100.00
  318. Match type : NOTICE
  319. Links : http://llvm.org/foundation/relicensing/LICENSE.txt, https://spdx.org/licenses/LLVM-exception
  320. Files with this license:
  321. libcxx/src/filesystem/int128_builtins.cpp [3:4]
  322. KEEP Apache-2.0 WITH LLVM-exception 755ab7da3ff8c5d6ae90bdbebd177e49
  323. BELONGS libcxx/ya.make
  324. License text:
  325. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  326. // See https://llvm.org/LICENSE.txt for license information.
  327. Scancode info:
  328. Original SPDX id: Apache-2.0
  329. Score : 100.00
  330. Match type : NOTICE
  331. Links : http://www.apache.org/licenses/, http://www.apache.org/licenses/LICENSE-2.0, https://spdx.org/licenses/Apache-2.0
  332. Files with this license:
  333. libcxx/include/__availability [4:5]
  334. libcxx/include/__bit_reference [4:5]
  335. libcxx/include/__bsd_locale_defaults.h [4:5]
  336. libcxx/include/__bsd_locale_fallbacks.h [4:5]
  337. libcxx/include/__config [4:5]
  338. libcxx/include/__config_site.in [3:4]
  339. libcxx/include/__debug [4:5]
  340. libcxx/include/__errc [4:5]
  341. libcxx/include/__functional_03 [4:5]
  342. libcxx/include/__functional_base [4:5]
  343. libcxx/include/__functional_base_03 [4:5]
  344. libcxx/include/__hash_table [4:5]
  345. libcxx/include/__locale [4:5]
  346. libcxx/include/__memory/allocator_traits.h [4:5]
  347. libcxx/include/__memory/base.h [4:5]
  348. libcxx/include/__memory/pointer_traits.h [4:5]
  349. libcxx/include/__memory/utilities.h [4:5]
  350. libcxx/include/__mutex_base [4:5]
  351. libcxx/include/__node_handle [4:5]
  352. libcxx/include/__nullptr [4:5]
  353. libcxx/include/__sso_allocator [4:5]
  354. libcxx/include/__std_stream [4:5]
  355. libcxx/include/__string [4:5]
  356. libcxx/include/__threading_support [4:5]
  357. libcxx/include/__tree [4:5]
  358. libcxx/include/__tuple [4:5]
  359. libcxx/include/__undef_macros [4:5]
  360. libcxx/include/algorithm [4:5]
  361. libcxx/include/any [4:5]
  362. libcxx/include/array [4:5]
  363. libcxx/include/atomic [4:5]
  364. libcxx/include/barrier [4:5]
  365. libcxx/include/bit [4:5]
  366. libcxx/include/bitset [4:5]
  367. libcxx/include/cassert [4:5]
  368. libcxx/include/ccomplex [4:5]
  369. libcxx/include/cctype [4:5]
  370. libcxx/include/cerrno [4:5]
  371. libcxx/include/cfenv [4:5]
  372. libcxx/include/cfloat [4:5]
  373. libcxx/include/charconv [4:5]
  374. libcxx/include/chrono [4:5]
  375. libcxx/include/cinttypes [4:5]
  376. libcxx/include/ciso646 [4:5]
  377. libcxx/include/climits [4:5]
  378. libcxx/include/clocale [4:5]
  379. libcxx/include/cmath [4:5]
  380. libcxx/include/codecvt [4:5]
  381. libcxx/include/compare [4:5]
  382. libcxx/include/complex [4:5]
  383. libcxx/include/complex.h [4:5]
  384. libcxx/include/concepts [4:5]
  385. libcxx/include/condition_variable [4:5]
  386. libcxx/include/csetjmp [4:5]
  387. libcxx/include/csignal [4:5]
  388. libcxx/include/cstdarg [4:5]
  389. libcxx/include/cstdbool [4:5]
  390. libcxx/include/cstddef [4:5]
  391. libcxx/include/cstdint [4:5]
  392. libcxx/include/cstdio [4:5]
  393. libcxx/include/cstdlib [4:5]
  394. libcxx/include/cstring [4:5]
  395. libcxx/include/ctgmath [4:5]
  396. libcxx/include/ctime [4:5]
  397. libcxx/include/ctype.h [4:5]
  398. libcxx/include/cwchar [4:5]
  399. libcxx/include/cwctype [4:5]
  400. libcxx/include/deque [4:5]
  401. libcxx/include/errno.h [4:5]
  402. libcxx/include/exception [4:5]
  403. libcxx/include/execution [4:5]
  404. libcxx/include/experimental/__memory [4:5]
  405. libcxx/include/experimental/algorithm [4:5]
  406. libcxx/include/experimental/coroutine [4:5]
  407. libcxx/include/experimental/deque [4:5]
  408. libcxx/include/experimental/filesystem [4:5]
  409. libcxx/include/experimental/forward_list [4:5]
  410. libcxx/include/experimental/functional [4:5]
  411. libcxx/include/experimental/iterator [4:5]
  412. libcxx/include/experimental/list [4:5]
  413. libcxx/include/experimental/map [4:5]
  414. libcxx/include/experimental/memory_resource [4:5]
  415. libcxx/include/experimental/propagate_const [4:5]
  416. libcxx/include/experimental/regex [4:5]
  417. libcxx/include/experimental/set [4:5]
  418. libcxx/include/experimental/simd [4:5]
  419. libcxx/include/experimental/string [4:5]
  420. libcxx/include/experimental/type_traits [4:5]
  421. libcxx/include/experimental/unordered_map [4:5]
  422. libcxx/include/experimental/unordered_set [4:5]
  423. libcxx/include/experimental/utility [4:5]
  424. libcxx/include/experimental/vector [4:5]
  425. libcxx/include/ext/__hash [4:5]
  426. libcxx/include/ext/hash_map [4:5]
  427. libcxx/include/ext/hash_set [4:5]
  428. libcxx/include/filesystem [4:5]
  429. libcxx/include/float.h [4:5]
  430. libcxx/include/forward_list [4:5]
  431. libcxx/include/fstream [4:5]
  432. libcxx/include/functional [4:5]
  433. libcxx/include/future [4:5]
  434. libcxx/include/initializer_list [4:5]
  435. libcxx/include/inttypes.h [4:5]
  436. libcxx/include/iomanip [4:5]
  437. libcxx/include/ios [4:5]
  438. libcxx/include/iosfwd [4:5]
  439. libcxx/include/iostream [4:5]
  440. libcxx/include/istream [4:5]
  441. libcxx/include/iterator [4:5]
  442. libcxx/include/latch [4:5]
  443. libcxx/include/limits [4:5]
  444. libcxx/include/limits.h [4:5]
  445. libcxx/include/list [4:5]
  446. libcxx/include/locale [4:5]
  447. libcxx/include/locale.h [4:5]
  448. libcxx/include/map [4:5]
  449. libcxx/include/math.h [4:5]
  450. libcxx/include/memory [4:5]
  451. libcxx/include/mutex [4:5]
  452. libcxx/include/new [4:5]
  453. libcxx/include/numbers [4:5]
  454. libcxx/include/numeric [4:5]
  455. libcxx/include/optional [4:5]
  456. libcxx/include/ostream [4:5]
  457. libcxx/include/queue [4:5]
  458. libcxx/include/random [4:5]
  459. libcxx/include/ratio [4:5]
  460. libcxx/include/regex [4:5]
  461. libcxx/include/scoped_allocator [4:5]
  462. libcxx/include/semaphore [4:5]
  463. libcxx/include/set [4:5]
  464. libcxx/include/setjmp.h [4:5]
  465. libcxx/include/shared_mutex [4:5]
  466. libcxx/include/span [4:5]
  467. libcxx/include/sstream [4:5]
  468. libcxx/include/stack [4:5]
  469. libcxx/include/stdbool.h [4:5]
  470. libcxx/include/stddef.h [4:5]
  471. libcxx/include/stdexcept [4:5]
  472. libcxx/include/stdint.h [4:5]
  473. libcxx/include/stdio.h [4:5]
  474. libcxx/include/stdlib.h [4:5]
  475. libcxx/include/streambuf [4:5]
  476. libcxx/include/string [4:5]
  477. libcxx/include/string.h [4:5]
  478. libcxx/include/string_view [4:5]
  479. libcxx/include/strstream [4:5]
  480. libcxx/include/support/android/locale_bionic.h [4:5]
  481. libcxx/include/support/fuchsia/xlocale.h [4:5]
  482. libcxx/include/support/ibm/limits.h [4:5]
  483. libcxx/include/support/ibm/locale_mgmt_aix.h [4:5]
  484. libcxx/include/support/ibm/nanosleep.h [4:5]
  485. libcxx/include/support/ibm/support.h [4:5]
  486. libcxx/include/support/ibm/xlocale.h [4:5]
  487. libcxx/include/support/musl/xlocale.h [4:5]
  488. libcxx/include/support/newlib/xlocale.h [3:4]
  489. libcxx/include/support/nuttx/xlocale.h [4:5]
  490. libcxx/include/support/solaris/floatingpoint.h [3:4]
  491. libcxx/include/support/solaris/wchar.h [3:4]
  492. libcxx/include/support/solaris/xlocale.h [3:4]
  493. libcxx/include/support/win32/limits_msvc_win32.h [4:5]
  494. libcxx/include/support/win32/locale_win32.h [4:5]
  495. libcxx/include/support/xlocale/__nop_locale_mgmt.h [4:5]
  496. libcxx/include/support/xlocale/__posix_l_fallback.h [4:5]
  497. libcxx/include/support/xlocale/__strtonum_fallback.h [4:5]
  498. libcxx/include/system_error [4:5]
  499. libcxx/include/tgmath.h [4:5]
  500. libcxx/include/thread [4:5]
  501. libcxx/include/tuple [4:5]
  502. libcxx/include/type_traits [4:5]
  503. libcxx/include/typeindex [4:5]
  504. libcxx/include/typeinfo [4:5]
  505. libcxx/include/unordered_map [4:5]
  506. libcxx/include/unordered_set [4:5]
  507. libcxx/include/utility [4:5]
  508. libcxx/include/valarray [4:5]
  509. libcxx/include/variant [4:5]
  510. libcxx/include/vector [4:5]
  511. libcxx/include/version [4:5]
  512. libcxx/include/wchar.h [4:5]
  513. libcxx/include/wctype.h [4:5]
  514. libcxx/src/algorithm.cpp [3:4]
  515. libcxx/src/any.cpp [3:4]
  516. libcxx/src/atomic.cpp [3:4]
  517. libcxx/src/barrier.cpp [3:4]
  518. libcxx/src/bind.cpp [3:4]
  519. libcxx/src/charconv.cpp [3:4]
  520. libcxx/src/chrono.cpp [3:4]
  521. libcxx/src/condition_variable.cpp [3:4]
  522. libcxx/src/condition_variable_destructor.cpp [3:4]
  523. libcxx/src/debug.cpp [3:4]
  524. libcxx/src/exception.cpp [3:4]
  525. libcxx/src/experimental/memory_resource.cpp [3:4]
  526. libcxx/src/filesystem/directory_iterator.cpp [3:4]
  527. libcxx/src/filesystem/filesystem_common.h [3:4]
  528. libcxx/src/filesystem/operations.cpp [3:4]
  529. libcxx/src/functional.cpp [3:4]
  530. libcxx/src/future.cpp [3:4]
  531. libcxx/src/hash.cpp [3:4]
  532. libcxx/src/include/apple_availability.h [3:4]
  533. libcxx/src/include/atomic_support.h [3:4]
  534. libcxx/src/include/config_elast.h [3:4]
  535. libcxx/src/include/refstring.h [3:4]
  536. libcxx/src/ios.cpp [3:4]
  537. libcxx/src/ios.instantiations.cpp [3:4]
  538. libcxx/src/iostream.cpp [3:4]
  539. libcxx/src/locale.cpp [3:4]
  540. libcxx/src/memory.cpp [3:4]
  541. libcxx/src/mutex.cpp [3:4]
  542. libcxx/src/mutex_destructor.cpp [3:4]
  543. libcxx/src/new.cpp [3:4]
  544. libcxx/src/optional.cpp [3:4]
  545. libcxx/src/random.cpp [3:4]
  546. libcxx/src/random_shuffle.cpp [3:4]
  547. libcxx/src/regex.cpp [3:4]
  548. libcxx/src/shared_mutex.cpp [3:4]
  549. libcxx/src/stdexcept.cpp [3:4]
  550. libcxx/src/string.cpp [3:4]
  551. libcxx/src/strstream.cpp [3:4]
  552. libcxx/src/support/runtime/exception_fallback.ipp [4:5]
  553. libcxx/src/support/runtime/exception_glibcxx.ipp [4:5]
  554. libcxx/src/support/runtime/exception_libcxxabi.ipp [4:5]
  555. libcxx/src/support/runtime/exception_libcxxrt.ipp [4:5]
  556. libcxx/src/support/runtime/exception_msvc.ipp [4:5]
  557. libcxx/src/support/runtime/exception_pointer_cxxabi.ipp [4:5]
  558. libcxx/src/support/runtime/exception_pointer_glibcxx.ipp [4:5]
  559. libcxx/src/support/runtime/exception_pointer_msvc.ipp [4:5]
  560. libcxx/src/support/runtime/exception_pointer_unimplemented.ipp [4:5]
  561. libcxx/src/support/runtime/new_handler_fallback.ipp [4:5]
  562. libcxx/src/support/runtime/stdexcept_default.ipp [3:4]
  563. libcxx/src/support/runtime/stdexcept_vcruntime.ipp [3:4]
  564. libcxx/src/support/solaris/xlocale.cpp [3:4]
  565. libcxx/src/support/win32/locale_win32.cpp [4:5]
  566. libcxx/src/support/win32/support.cpp [4:5]
  567. libcxx/src/support/win32/thread_win32.cpp [4:5]
  568. libcxx/src/system_error.cpp [3:4]
  569. libcxx/src/thread.cpp [3:4]
  570. libcxx/src/typeinfo.cpp [3:4]
  571. libcxx/src/utility.cpp [3:4]
  572. libcxx/src/valarray.cpp [3:4]
  573. libcxx/src/variant.cpp [3:4]
  574. libcxx/src/vector.cpp [3:4]
  575. Scancode info:
  576. Original SPDX id: LLVM-exception
  577. Score : 100.00
  578. Match type : NOTICE
  579. Links : http://llvm.org/foundation/relicensing/LICENSE.txt, https://spdx.org/licenses/LLVM-exception
  580. Files with this license:
  581. libcxx/include/__availability [4:5]
  582. libcxx/include/__bit_reference [4:5]
  583. libcxx/include/__bsd_locale_defaults.h [4:5]
  584. libcxx/include/__bsd_locale_fallbacks.h [4:5]
  585. libcxx/include/__config [4:5]
  586. libcxx/include/__config_site.in [3:4]
  587. libcxx/include/__debug [4:5]
  588. libcxx/include/__errc [4:5]
  589. libcxx/include/__functional_03 [4:5]
  590. libcxx/include/__functional_base [4:5]
  591. libcxx/include/__functional_base_03 [4:5]
  592. libcxx/include/__hash_table [4:5]
  593. libcxx/include/__locale [4:5]
  594. libcxx/include/__memory/allocator_traits.h [4:5]
  595. libcxx/include/__memory/base.h [4:5]
  596. libcxx/include/__memory/pointer_traits.h [4:5]
  597. libcxx/include/__memory/utilities.h [4:5]
  598. libcxx/include/__mutex_base [4:5]
  599. libcxx/include/__node_handle [4:5]
  600. libcxx/include/__nullptr [4:5]
  601. libcxx/include/__sso_allocator [4:5]
  602. libcxx/include/__std_stream [4:5]
  603. libcxx/include/__string [4:5]
  604. libcxx/include/__threading_support [4:5]
  605. libcxx/include/__tree [4:5]
  606. libcxx/include/__tuple [4:5]
  607. libcxx/include/__undef_macros [4:5]
  608. libcxx/include/algorithm [4:5]
  609. libcxx/include/any [4:5]
  610. libcxx/include/array [4:5]
  611. libcxx/include/atomic [4:5]
  612. libcxx/include/barrier [4:5]
  613. libcxx/include/bit [4:5]
  614. libcxx/include/bitset [4:5]
  615. libcxx/include/cassert [4:5]
  616. libcxx/include/ccomplex [4:5]
  617. libcxx/include/cctype [4:5]
  618. libcxx/include/cerrno [4:5]
  619. libcxx/include/cfenv [4:5]
  620. libcxx/include/cfloat [4:5]
  621. libcxx/include/charconv [4:5]
  622. libcxx/include/chrono [4:5]
  623. libcxx/include/cinttypes [4:5]
  624. libcxx/include/ciso646 [4:5]
  625. libcxx/include/climits [4:5]
  626. libcxx/include/clocale [4:5]
  627. libcxx/include/cmath [4:5]
  628. libcxx/include/codecvt [4:5]
  629. libcxx/include/compare [4:5]
  630. libcxx/include/complex [4:5]
  631. libcxx/include/complex.h [4:5]
  632. libcxx/include/concepts [4:5]
  633. libcxx/include/condition_variable [4:5]
  634. libcxx/include/csetjmp [4:5]
  635. libcxx/include/csignal [4:5]
  636. libcxx/include/cstdarg [4:5]
  637. libcxx/include/cstdbool [4:5]
  638. libcxx/include/cstddef [4:5]
  639. libcxx/include/cstdint [4:5]
  640. libcxx/include/cstdio [4:5]
  641. libcxx/include/cstdlib [4:5]
  642. libcxx/include/cstring [4:5]
  643. libcxx/include/ctgmath [4:5]
  644. libcxx/include/ctime [4:5]
  645. libcxx/include/ctype.h [4:5]
  646. libcxx/include/cwchar [4:5]
  647. libcxx/include/cwctype [4:5]
  648. libcxx/include/deque [4:5]
  649. libcxx/include/errno.h [4:5]
  650. libcxx/include/exception [4:5]
  651. libcxx/include/execution [4:5]
  652. libcxx/include/experimental/__memory [4:5]
  653. libcxx/include/experimental/algorithm [4:5]
  654. libcxx/include/experimental/coroutine [4:5]
  655. libcxx/include/experimental/deque [4:5]
  656. libcxx/include/experimental/filesystem [4:5]
  657. libcxx/include/experimental/forward_list [4:5]
  658. libcxx/include/experimental/functional [4:5]
  659. libcxx/include/experimental/iterator [4:5]
  660. libcxx/include/experimental/list [4:5]
  661. libcxx/include/experimental/map [4:5]
  662. libcxx/include/experimental/memory_resource [4:5]
  663. libcxx/include/experimental/propagate_const [4:5]
  664. libcxx/include/experimental/regex [4:5]
  665. libcxx/include/experimental/set [4:5]
  666. libcxx/include/experimental/simd [4:5]
  667. libcxx/include/experimental/string [4:5]
  668. libcxx/include/experimental/type_traits [4:5]
  669. libcxx/include/experimental/unordered_map [4:5]
  670. libcxx/include/experimental/unordered_set [4:5]
  671. libcxx/include/experimental/utility [4:5]
  672. libcxx/include/experimental/vector [4:5]
  673. libcxx/include/ext/__hash [4:5]
  674. libcxx/include/ext/hash_map [4:5]
  675. libcxx/include/ext/hash_set [4:5]
  676. libcxx/include/filesystem [4:5]
  677. libcxx/include/float.h [4:5]
  678. libcxx/include/forward_list [4:5]
  679. libcxx/include/fstream [4:5]
  680. libcxx/include/functional [4:5]
  681. libcxx/include/future [4:5]
  682. libcxx/include/initializer_list [4:5]
  683. libcxx/include/inttypes.h [4:5]
  684. libcxx/include/iomanip [4:5]
  685. libcxx/include/ios [4:5]
  686. libcxx/include/iosfwd [4:5]
  687. libcxx/include/iostream [4:5]
  688. libcxx/include/istream [4:5]
  689. libcxx/include/iterator [4:5]
  690. libcxx/include/latch [4:5]
  691. libcxx/include/limits [4:5]
  692. libcxx/include/limits.h [4:5]
  693. libcxx/include/list [4:5]
  694. libcxx/include/locale [4:5]
  695. libcxx/include/locale.h [4:5]
  696. libcxx/include/map [4:5]
  697. libcxx/include/math.h [4:5]
  698. libcxx/include/memory [4:5]
  699. libcxx/include/mutex [4:5]
  700. libcxx/include/new [4:5]
  701. libcxx/include/numbers [4:5]
  702. libcxx/include/numeric [4:5]
  703. libcxx/include/optional [4:5]
  704. libcxx/include/ostream [4:5]
  705. libcxx/include/queue [4:5]
  706. libcxx/include/random [4:5]
  707. libcxx/include/ratio [4:5]
  708. libcxx/include/regex [4:5]
  709. libcxx/include/scoped_allocator [4:5]
  710. libcxx/include/semaphore [4:5]
  711. libcxx/include/set [4:5]
  712. libcxx/include/setjmp.h [4:5]
  713. libcxx/include/shared_mutex [4:5]
  714. libcxx/include/span [4:5]
  715. libcxx/include/sstream [4:5]
  716. libcxx/include/stack [4:5]
  717. libcxx/include/stdbool.h [4:5]
  718. libcxx/include/stddef.h [4:5]
  719. libcxx/include/stdexcept [4:5]
  720. libcxx/include/stdint.h [4:5]
  721. libcxx/include/stdio.h [4:5]
  722. libcxx/include/stdlib.h [4:5]
  723. libcxx/include/streambuf [4:5]
  724. libcxx/include/string [4:5]
  725. libcxx/include/string.h [4:5]
  726. libcxx/include/string_view [4:5]
  727. libcxx/include/strstream [4:5]
  728. libcxx/include/support/android/locale_bionic.h [4:5]
  729. libcxx/include/support/fuchsia/xlocale.h [4:5]
  730. libcxx/include/support/ibm/limits.h [4:5]
  731. libcxx/include/support/ibm/locale_mgmt_aix.h [4:5]
  732. libcxx/include/support/ibm/nanosleep.h [4:5]
  733. libcxx/include/support/ibm/support.h [4:5]
  734. libcxx/include/support/ibm/xlocale.h [4:5]
  735. libcxx/include/support/musl/xlocale.h [4:5]
  736. libcxx/include/support/newlib/xlocale.h [3:4]
  737. libcxx/include/support/nuttx/xlocale.h [4:5]
  738. libcxx/include/support/solaris/floatingpoint.h [3:4]
  739. libcxx/include/support/solaris/wchar.h [3:4]
  740. libcxx/include/support/solaris/xlocale.h [3:4]
  741. libcxx/include/support/win32/limits_msvc_win32.h [4:5]
  742. libcxx/include/support/win32/locale_win32.h [4:5]
  743. libcxx/include/support/xlocale/__nop_locale_mgmt.h [4:5]
  744. libcxx/include/support/xlocale/__posix_l_fallback.h [4:5]
  745. libcxx/include/support/xlocale/__strtonum_fallback.h [4:5]
  746. libcxx/include/system_error [4:5]
  747. libcxx/include/tgmath.h [4:5]
  748. libcxx/include/thread [4:5]
  749. libcxx/include/tuple [4:5]
  750. libcxx/include/type_traits [4:5]
  751. libcxx/include/typeindex [4:5]
  752. libcxx/include/typeinfo [4:5]
  753. libcxx/include/unordered_map [4:5]
  754. libcxx/include/unordered_set [4:5]
  755. libcxx/include/utility [4:5]
  756. libcxx/include/valarray [4:5]
  757. libcxx/include/variant [4:5]
  758. libcxx/include/vector [4:5]
  759. libcxx/include/version [4:5]
  760. libcxx/include/wchar.h [4:5]
  761. libcxx/include/wctype.h [4:5]
  762. libcxx/src/algorithm.cpp [3:4]
  763. libcxx/src/any.cpp [3:4]
  764. libcxx/src/atomic.cpp [3:4]
  765. libcxx/src/barrier.cpp [3:4]
  766. libcxx/src/bind.cpp [3:4]
  767. libcxx/src/charconv.cpp [3:4]
  768. libcxx/src/chrono.cpp [3:4]
  769. libcxx/src/condition_variable.cpp [3:4]
  770. libcxx/src/condition_variable_destructor.cpp [3:4]
  771. libcxx/src/debug.cpp [3:4]
  772. libcxx/src/exception.cpp [3:4]
  773. libcxx/src/experimental/memory_resource.cpp [3:4]
  774. libcxx/src/filesystem/directory_iterator.cpp [3:4]
  775. libcxx/src/filesystem/filesystem_common.h [3:4]
  776. libcxx/src/filesystem/operations.cpp [3:4]
  777. libcxx/src/functional.cpp [3:4]
  778. libcxx/src/future.cpp [3:4]
  779. libcxx/src/hash.cpp [3:4]
  780. libcxx/src/include/apple_availability.h [3:4]
  781. libcxx/src/include/atomic_support.h [3:4]
  782. libcxx/src/include/config_elast.h [3:4]
  783. libcxx/src/include/refstring.h [3:4]
  784. libcxx/src/ios.cpp [3:4]
  785. libcxx/src/ios.instantiations.cpp [3:4]
  786. libcxx/src/iostream.cpp [3:4]
  787. libcxx/src/locale.cpp [3:4]
  788. libcxx/src/memory.cpp [3:4]
  789. libcxx/src/mutex.cpp [3:4]
  790. libcxx/src/mutex_destructor.cpp [3:4]
  791. libcxx/src/new.cpp [3:4]
  792. libcxx/src/optional.cpp [3:4]
  793. libcxx/src/random.cpp [3:4]
  794. libcxx/src/random_shuffle.cpp [3:4]
  795. libcxx/src/regex.cpp [3:4]
  796. libcxx/src/shared_mutex.cpp [3:4]
  797. libcxx/src/stdexcept.cpp [3:4]
  798. libcxx/src/string.cpp [3:4]
  799. libcxx/src/strstream.cpp [3:4]
  800. libcxx/src/support/runtime/exception_fallback.ipp [4:5]
  801. libcxx/src/support/runtime/exception_glibcxx.ipp [4:5]
  802. libcxx/src/support/runtime/exception_libcxxabi.ipp [4:5]
  803. libcxx/src/support/runtime/exception_libcxxrt.ipp [4:5]
  804. libcxx/src/support/runtime/exception_msvc.ipp [4:5]
  805. libcxx/src/support/runtime/exception_pointer_cxxabi.ipp [4:5]
  806. libcxx/src/support/runtime/exception_pointer_glibcxx.ipp [4:5]
  807. libcxx/src/support/runtime/exception_pointer_msvc.ipp [4:5]
  808. libcxx/src/support/runtime/exception_pointer_unimplemented.ipp [4:5]
  809. libcxx/src/support/runtime/new_handler_fallback.ipp [4:5]
  810. libcxx/src/support/runtime/stdexcept_default.ipp [3:4]
  811. libcxx/src/support/runtime/stdexcept_vcruntime.ipp [3:4]
  812. libcxx/src/support/solaris/xlocale.cpp [3:4]
  813. libcxx/src/support/win32/locale_win32.cpp [4:5]
  814. libcxx/src/support/win32/support.cpp [4:5]
  815. libcxx/src/support/win32/thread_win32.cpp [4:5]
  816. libcxx/src/system_error.cpp [3:4]
  817. libcxx/src/thread.cpp [3:4]
  818. libcxx/src/typeinfo.cpp [3:4]
  819. libcxx/src/utility.cpp [3:4]
  820. libcxx/src/valarray.cpp [3:4]
  821. libcxx/src/variant.cpp [3:4]
  822. libcxx/src/vector.cpp [3:4]
  823. KEEP Apache-2.0 WITH LLVM-exception 8494a9caed330d9a4f40e19cce7dc770
  824. BELONGS libcxx/ya.make
  825. FILE_INCLUDE libcxx/include/exception found in files: libcxx/LICENSE.TXT at line 210
  826. Note: matched license text is too long. Read it in the source files.
  827. Scancode info:
  828. Original SPDX id: LLVM-exception
  829. Score : 100.00
  830. Match type : TEXT
  831. Links : http://llvm.org/foundation/relicensing/LICENSE.txt, https://spdx.org/licenses/LLVM-exception
  832. Files with this license:
  833. libcxx/LICENSE.TXT [208:222]
  834. KEEP Apache-2.0 WITH LLVM-exception 86617d55e1d949711c543404d91f4cea
  835. BELONGS libcxx/ya.make
  836. License text:
  837. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  838. Scancode info:
  839. Original SPDX id: Apache-2.0
  840. Score : 100.00
  841. Match type : TAG
  842. Links : http://www.apache.org/licenses/, http://www.apache.org/licenses/LICENSE-2.0, https://spdx.org/licenses/Apache-2.0
  843. Files with this license:
  844. libcxx/include/experimental/__config [6:6]
  845. Scancode info:
  846. Original SPDX id: LLVM-exception
  847. Score : 100.00
  848. Match type : TAG
  849. Links : http://llvm.org/foundation/relicensing/LICENSE.txt, https://spdx.org/licenses/LLVM-exception
  850. Files with this license:
  851. libcxx/include/experimental/__config [6:6]
  852. KEEP BSD-3-Clause 88f80886d9ea21e0b7205bd3730230e4
  853. BELONGS libcxxrt/ya.make
  854. License text:
  855. The BSD License
  856. Scancode info:
  857. Original SPDX id: BSD-3-Clause
  858. Score : 99.00
  859. Match type : REFERENCE
  860. Links : http://www.opensource.org/licenses/BSD-3-Clause, https://spdx.org/licenses/BSD-3-Clause
  861. Files with this license:
  862. libcxxrt/LICENSE [1:1]
  863. KEEP BSD-2-Clause 8cedb6171c06f89f0e6eefd60e5f79d5
  864. BELONGS libcxxrt/ya.make
  865. FILE_IGNORE libcxx/include/experimental/list found in files: libcxxrt/auxhelper.cc at line 11, libcxxrt/auxhelper.cc at line 8, libcxxrt/dwarf_eh.h at line 11, libcxxrt/dwarf_eh.h at line 8, libcxxrt/dynamic_cast.cc at line 11, libcxxrt/dynamic_cast.cc at line 8, libcxxrt/guard.cc at line 11, libcxxrt/guard.cc at line 8, libcxxrt/memory.cc at line 11, libcxxrt/memory.cc at line 8, libcxxrt/stdexcept.cc at line 11, libcxxrt/stdexcept.cc at line 8, libcxxrt/stdexcept.h at line 11, libcxxrt/stdexcept.h at line 8, libcxxrt/typeinfo.cc at line 11, libcxxrt/typeinfo.cc at line 8, libcxxrt/typeinfo.h at line 11, libcxxrt/typeinfo.h at line 8
  866. FILE_IGNORE libcxx/include/list found in files: libcxxrt/auxhelper.cc at line 11, libcxxrt/auxhelper.cc at line 8, libcxxrt/dwarf_eh.h at line 11, libcxxrt/dwarf_eh.h at line 8, libcxxrt/dynamic_cast.cc at line 11, libcxxrt/dynamic_cast.cc at line 8, libcxxrt/guard.cc at line 11, libcxxrt/guard.cc at line 8, libcxxrt/memory.cc at line 11, libcxxrt/memory.cc at line 8, libcxxrt/stdexcept.cc at line 11, libcxxrt/stdexcept.cc at line 8, libcxxrt/stdexcept.h at line 11, libcxxrt/stdexcept.h at line 8, libcxxrt/typeinfo.cc at line 11, libcxxrt/typeinfo.cc at line 8, libcxxrt/typeinfo.h at line 11, libcxxrt/typeinfo.h at line 8
  867. FILE_INCLUDE libcxxrt/COPYRIGHT found in files: libcxxrt/auxhelper.cc at line 14, libcxxrt/auxhelper.cc at line 17, libcxxrt/dwarf_eh.h at line 14, libcxxrt/dwarf_eh.h at line 17, libcxxrt/dynamic_cast.cc at line 14, libcxxrt/dynamic_cast.cc at line 17, libcxxrt/guard.cc at line 14, libcxxrt/guard.cc at line 17, libcxxrt/memory.cc at line 14, libcxxrt/memory.cc at line 17, libcxxrt/stdexcept.cc at line 14, libcxxrt/stdexcept.cc at line 17, libcxxrt/stdexcept.h at line 14, libcxxrt/stdexcept.h at line 17, libcxxrt/typeinfo.cc at line 14, libcxxrt/typeinfo.cc at line 17, libcxxrt/typeinfo.h at line 14, libcxxrt/typeinfo.h at line 17
  868. # list - just word, not file reference
  869. Note: matched license text is too long. Read it in the source files.
  870. Scancode info:
  871. Original SPDX id: BSD-2-Clause
  872. Score : 100.00
  873. Match type : TEXT
  874. Links : http://opensource.org/licenses/bsd-license.php, http://www.opensource.org/licenses/BSD-2-Clause, https://spdx.org/licenses/BSD-2-Clause
  875. Files with this license:
  876. libcxxrt/auxhelper.cc [4:24]
  877. libcxxrt/dwarf_eh.h [4:24]
  878. libcxxrt/dynamic_cast.cc [4:24]
  879. libcxxrt/guard.cc [4:24]
  880. libcxxrt/memory.cc [4:24]
  881. libcxxrt/stdexcept.cc [4:24]
  882. libcxxrt/stdexcept.h [4:24]
  883. libcxxrt/typeinfo.cc [4:24]
  884. libcxxrt/typeinfo.h [4:24]
  885. KEEP MIT 8ee097b6bcb3429ad39c4dbd5cc0e35e
  886. BELONGS libcxxrt/ya.make
  887. FILE_IGNORE libcxx/include/any found in files: libcxxrt/cxxabi.h at line 4
  888. FILE_INCLUDE libcxxrt/AUTHORS found in files: libcxxrt/cxxabi.h at line 17
  889. FILE_INCLUDE libcxxrt/COPYRIGHT found in files: libcxxrt/cxxabi.h at line 17
  890. # any - just word, not file reference
  891. Note: matched license text is too long. Read it in the source files.
  892. Scancode info:
  893. Original SPDX id: MIT
  894. Score : 100.00
  895. Match type : TEXT
  896. Links : http://opensource.org/licenses/mit-license.php, https://spdx.org/licenses/MIT
  897. Files with this license:
  898. libcxxrt/cxxabi.h [4:20]
  899. KEEP Apache-2.0 9ac77f65a898755c7eed97099caded94
  900. BELONGS libcxx/ya.make
  901. FILE_INCLUDE libcxx/import found in files: libcxx/LICENSE.TXT at line 81
  902. FILE_IGNORE libcxx/include/any found in files: libcxx/LICENSE.TXT at line 101, libcxx/LICENSE.TXT at line 104, libcxx/LICENSE.TXT at line 107, libcxx/LICENSE.TXT at line 111, libcxx/LICENSE.TXT at line 114, libcxx/LICENSE.TXT at line 130, libcxx/LICENSE.TXT at line 135, libcxx/LICENSE.TXT at line 137, libcxx/LICENSE.TXT at line 139, libcxx/LICENSE.TXT at line 151, libcxx/LICENSE.TXT at line 154, libcxx/LICENSE.TXT at line 160, libcxx/LICENSE.TXT at line 161, libcxx/LICENSE.TXT at line 162, libcxx/LICENSE.TXT at line 165, libcxx/LICENSE.TXT at line 175, libcxx/LICENSE.TXT at line 176, libcxx/LICENSE.TXT at line 178, libcxx/LICENSE.TXT at line 34, libcxx/LICENSE.TXT at line 44, libcxx/LICENSE.TXT at line 52, libcxx/LICENSE.TXT at line 53, libcxx/LICENSE.TXT at line 58, libcxx/LICENSE.TXT at line 66, libcxx/LICENSE.TXT at line 86, libcxx/LICENSE.TXT at line 89, libcxx/LICENSE.TXT at line 94, libcxx/LICENSE.TXT at line 98
  903. FILE_IGNORE libcxx/include/version found in files: libcxx/LICENSE.TXT at line 53
  904. # any and version - just words, not file reference
  905. Note: matched license text is too long. Read it in the source files.
  906. Scancode info:
  907. Original SPDX id: Apache-2.0
  908. Score : 100.00
  909. Match type : TEXT
  910. Links : http://www.apache.org/licenses/, http://www.apache.org/licenses/LICENSE-2.0, https://spdx.org/licenses/Apache-2.0
  911. Files with this license:
  912. libcxx/LICENSE.TXT [5:205]
  913. KEEP NCSA AND MIT 9d5ffd6253d2b406a8bc3bbf3cb4f38b
  914. BELONGS openmp/ya.make
  915. FILE_INCLUDE builtins/LICENSE.txt found in files: openmp/include/30/omp_lib.f.var at line 9, openmp/include/30/omp_lib.f90.var at line 9, openmp/include/30/omp_lib.h.var at line 9, openmp/include/40/omp_lib.f.var at line 9, openmp/include/40/omp_lib.f90.var at line 9, openmp/include/40/omp_lib.h.var at line 9, openmp/include/41/omp_lib.f.var at line 9, openmp/include/41/omp_lib.f90.var at line 9, openmp/include/41/omp_lib.h.var at line 9
  916. License text:
  917. !// This file is dual licensed under the MIT and the University of Illinois Open
  918. !// Source Licenses. See LICENSE.txt for details.
  919. Scancode info:
  920. Original SPDX id: NCSA
  921. Score : 100.00
  922. Match type : NOTICE
  923. Links : http://www.otm.illinois.edu/faculty/forms/opensource.asp, https://spdx.org/licenses/NCSA
  924. Files with this license:
  925. openmp/include/30/omp_lib.f.var [8:9]
  926. openmp/include/30/omp_lib.f90.var [8:9]
  927. openmp/include/30/omp_lib.h.var [8:9]
  928. openmp/include/40/omp_lib.f.var [8:9]
  929. openmp/include/40/omp_lib.f90.var [8:9]
  930. openmp/include/40/omp_lib.h.var [8:9]
  931. openmp/include/41/omp_lib.f.var [8:9]
  932. openmp/include/41/omp_lib.f90.var [8:9]
  933. openmp/include/41/omp_lib.h.var [8:9]
  934. Scancode info:
  935. Original SPDX id: MIT
  936. Score : 100.00
  937. Match type : NOTICE
  938. Links : http://opensource.org/licenses/mit-license.php, https://spdx.org/licenses/MIT
  939. Files with this license:
  940. openmp/include/30/omp_lib.f.var [8:9]
  941. openmp/include/30/omp_lib.f90.var [8:9]
  942. openmp/include/30/omp_lib.h.var [8:9]
  943. openmp/include/40/omp_lib.f.var [8:9]
  944. openmp/include/40/omp_lib.f90.var [8:9]
  945. openmp/include/40/omp_lib.h.var [8:9]
  946. openmp/include/41/omp_lib.f.var [8:9]
  947. openmp/include/41/omp_lib.f90.var [8:9]
  948. openmp/include/41/omp_lib.h.var [8:9]
  949. KEEP NCSA b160d8bd561da097b0edd40b062e1c84
  950. BELONGS libcxx/ya.make
  951. FILE_IGNORE libcxx/include/any found in files: libcxx/LICENSE.TXT at line 264
  952. FILE_IGNORE libcxx/include/experimental/list found in files: libcxx/LICENSE.TXT at line 272, libcxx/LICENSE.TXT at line 275
  953. FILE_IGNORE libcxx/include/list found in files: libcxx/LICENSE.TXT at line 272, libcxx/LICENSE.TXT at line 275
  954. FILE_INCLUDE libcxxrt/COPYRIGHT found in files: libcxx/LICENSE.TXT at line 286
  955. # any and list - just words, not file reference
  956. Note: matched license text is too long. Read it in the source files.
  957. Scancode info:
  958. Original SPDX id: NCSA
  959. Score : 100.00
  960. Match type : TEXT
  961. Links : http://www.otm.illinois.edu/faculty/forms/opensource.asp, https://spdx.org/licenses/NCSA
  962. Files with this license:
  963. libcxx/LICENSE.TXT [264:289]
  964. KEEP BSD-2-Clause AND MIT b1ce5ac90fd7360272c132242b0d10e9
  965. BELONGS libcxx/ya.make
  966. License text:
  967. 2-clause BSD license instead of the MIT/UUIC license that the rest of libc++ is
  968. Scancode info:
  969. Original SPDX id: BSD-2-Clause
  970. Score : 100.00
  971. Match type : REFERENCE
  972. Links : http://opensource.org/licenses/bsd-license.php, http://www.opensource.org/licenses/BSD-2-Clause, https://spdx.org/licenses/BSD-2-Clause
  973. Files with this license:
  974. libcxx/src/support/solaris/README [3:3]
  975. Scancode info:
  976. Original SPDX id: MIT
  977. Score : 75.00
  978. Match type : REFERENCE
  979. Links : http://opensource.org/licenses/mit-license.php, https://spdx.org/licenses/MIT
  980. Files with this license:
  981. libcxx/src/support/solaris/README [3:3]
  982. KEEP Apache-2.0 WITH LLVM-exception b4f32daeb289687c0be6afeacb7df231
  983. BELONGS libcxx/ya.make
  984. License text:
  985. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  986. // See https://llvm.org/LICENSE.txt for license information.
  987. Scancode info:
  988. Original SPDX id: Apache-2.0
  989. Score : 100.00
  990. Match type : NOTICE
  991. Links : http://www.apache.org/licenses/, http://www.apache.org/licenses/LICENSE-2.0, https://spdx.org/licenses/Apache-2.0
  992. Files with this license:
  993. libcxx/include/experimental/__config [4:5]
  994. Scancode info:
  995. Original SPDX id: LLVM-exception
  996. Score : 100.00
  997. Match type : NOTICE
  998. Links : http://llvm.org/foundation/relicensing/LICENSE.txt, https://spdx.org/licenses/LLVM-exception
  999. Files with this license:
  1000. libcxx/include/experimental/__config [4:5]
  1001. KEEP Apache-2.0 WITH LLVM-exception b7566a1930e050e1090162bf1d543650
  1002. BELONGS libcxx/ya.make
  1003. License text:
  1004. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  1005. Scancode info:
  1006. Original SPDX id: Apache-2.0
  1007. Score : 100.00
  1008. Match type : TAG
  1009. Links : http://www.apache.org/licenses/, http://www.apache.org/licenses/LICENSE-2.0, https://spdx.org/licenses/Apache-2.0
  1010. Files with this license:
  1011. libcxx/include/__availability [6:6]
  1012. libcxx/include/__bit_reference [6:6]
  1013. libcxx/include/__bsd_locale_defaults.h [6:6]
  1014. libcxx/include/__bsd_locale_fallbacks.h [6:6]
  1015. libcxx/include/__config [6:6]
  1016. libcxx/include/__config_site.in [5:5]
  1017. libcxx/include/__debug [6:6]
  1018. libcxx/include/__errc [6:6]
  1019. libcxx/include/__functional_03 [6:6]
  1020. libcxx/include/__functional_base [6:6]
  1021. libcxx/include/__functional_base_03 [6:6]
  1022. libcxx/include/__hash_table [6:6]
  1023. libcxx/include/__locale [6:6]
  1024. libcxx/include/__memory/allocator_traits.h [6:6]
  1025. libcxx/include/__memory/base.h [6:6]
  1026. libcxx/include/__memory/pointer_traits.h [6:6]
  1027. libcxx/include/__memory/utilities.h [6:6]
  1028. libcxx/include/__mutex_base [6:6]
  1029. libcxx/include/__node_handle [6:6]
  1030. libcxx/include/__nullptr [6:6]
  1031. libcxx/include/__sso_allocator [6:6]
  1032. libcxx/include/__std_stream [6:6]
  1033. libcxx/include/__string [6:6]
  1034. libcxx/include/__threading_support [6:6]
  1035. libcxx/include/__tree [6:6]
  1036. libcxx/include/__tuple [6:6]
  1037. libcxx/include/__undef_macros [6:6]
  1038. libcxx/include/algorithm [6:6]
  1039. libcxx/include/any [6:6]
  1040. libcxx/include/array [6:6]
  1041. libcxx/include/atomic [6:6]
  1042. libcxx/include/barrier [6:6]
  1043. libcxx/include/bit [6:6]
  1044. libcxx/include/bitset [6:6]
  1045. libcxx/include/cassert [6:6]
  1046. libcxx/include/ccomplex [6:6]
  1047. libcxx/include/cctype [6:6]
  1048. libcxx/include/cerrno [6:6]
  1049. libcxx/include/cfenv [6:6]
  1050. libcxx/include/cfloat [6:6]
  1051. libcxx/include/charconv [6:6]
  1052. libcxx/include/chrono [6:6]
  1053. libcxx/include/cinttypes [6:6]
  1054. libcxx/include/ciso646 [6:6]
  1055. libcxx/include/climits [6:6]
  1056. libcxx/include/clocale [6:6]
  1057. libcxx/include/cmath [6:6]
  1058. libcxx/include/codecvt [6:6]
  1059. libcxx/include/compare [6:6]
  1060. libcxx/include/complex [6:6]
  1061. libcxx/include/complex.h [6:6]
  1062. libcxx/include/concepts [6:6]
  1063. libcxx/include/condition_variable [6:6]
  1064. libcxx/include/csetjmp [6:6]
  1065. libcxx/include/csignal [6:6]
  1066. libcxx/include/cstdarg [6:6]
  1067. libcxx/include/cstdbool [6:6]
  1068. libcxx/include/cstddef [6:6]
  1069. libcxx/include/cstdint [6:6]
  1070. libcxx/include/cstdio [6:6]
  1071. libcxx/include/cstdlib [6:6]
  1072. libcxx/include/cstring [6:6]
  1073. libcxx/include/ctgmath [6:6]
  1074. libcxx/include/ctime [6:6]
  1075. libcxx/include/ctype.h [6:6]
  1076. libcxx/include/cwchar [6:6]
  1077. libcxx/include/cwctype [6:6]
  1078. libcxx/include/deque [6:6]
  1079. libcxx/include/errno.h [6:6]
  1080. libcxx/include/exception [6:6]
  1081. libcxx/include/execution [6:6]
  1082. libcxx/include/experimental/__memory [6:6]
  1083. libcxx/include/experimental/algorithm [6:6]
  1084. libcxx/include/experimental/coroutine [6:6]
  1085. libcxx/include/experimental/deque [6:6]
  1086. libcxx/include/experimental/filesystem [6:6]
  1087. libcxx/include/experimental/forward_list [6:6]
  1088. libcxx/include/experimental/functional [6:6]
  1089. libcxx/include/experimental/iterator [6:6]
  1090. libcxx/include/experimental/list [6:6]
  1091. libcxx/include/experimental/map [6:6]
  1092. libcxx/include/experimental/memory_resource [6:6]
  1093. libcxx/include/experimental/propagate_const [6:6]
  1094. libcxx/include/experimental/regex [6:6]
  1095. libcxx/include/experimental/set [6:6]
  1096. libcxx/include/experimental/simd [6:6]
  1097. libcxx/include/experimental/string [6:6]
  1098. libcxx/include/experimental/type_traits [6:6]
  1099. libcxx/include/experimental/unordered_map [6:6]
  1100. libcxx/include/experimental/unordered_set [6:6]
  1101. libcxx/include/experimental/utility [6:6]
  1102. libcxx/include/experimental/vector [6:6]
  1103. libcxx/include/ext/__hash [6:6]
  1104. libcxx/include/ext/hash_map [6:6]
  1105. libcxx/include/ext/hash_set [6:6]
  1106. libcxx/include/filesystem [6:6]
  1107. libcxx/include/float.h [6:6]
  1108. libcxx/include/forward_list [6:6]
  1109. libcxx/include/fstream [6:6]
  1110. libcxx/include/functional [6:6]
  1111. libcxx/include/future [6:6]
  1112. libcxx/include/initializer_list [6:6]
  1113. libcxx/include/inttypes.h [6:6]
  1114. libcxx/include/iomanip [6:6]
  1115. libcxx/include/ios [6:6]
  1116. libcxx/include/iosfwd [6:6]
  1117. libcxx/include/iostream [6:6]
  1118. libcxx/include/istream [6:6]
  1119. libcxx/include/iterator [6:6]
  1120. libcxx/include/latch [6:6]
  1121. libcxx/include/limits [6:6]
  1122. libcxx/include/limits.h [6:6]
  1123. libcxx/include/list [6:6]
  1124. libcxx/include/locale [6:6]
  1125. libcxx/include/locale.h [6:6]
  1126. libcxx/include/map [6:6]
  1127. libcxx/include/math.h [6:6]
  1128. libcxx/include/memory [6:6]
  1129. libcxx/include/mutex [6:6]
  1130. libcxx/include/new [6:6]
  1131. libcxx/include/numbers [6:6]
  1132. libcxx/include/numeric [6:6]
  1133. libcxx/include/optional [6:6]
  1134. libcxx/include/ostream [6:6]
  1135. libcxx/include/queue [6:6]
  1136. libcxx/include/random [6:6]
  1137. libcxx/include/ratio [6:6]
  1138. libcxx/include/regex [6:6]
  1139. libcxx/include/scoped_allocator [6:6]
  1140. libcxx/include/semaphore [6:6]
  1141. libcxx/include/set [6:6]
  1142. libcxx/include/setjmp.h [6:6]
  1143. libcxx/include/shared_mutex [6:6]
  1144. libcxx/include/span [6:6]
  1145. libcxx/include/sstream [6:6]
  1146. libcxx/include/stack [6:6]
  1147. libcxx/include/stdbool.h [6:6]
  1148. libcxx/include/stddef.h [6:6]
  1149. libcxx/include/stdexcept [6:6]
  1150. libcxx/include/stdint.h [6:6]
  1151. libcxx/include/stdio.h [6:6]
  1152. libcxx/include/stdlib.h [6:6]
  1153. libcxx/include/streambuf [6:6]
  1154. libcxx/include/string [6:6]
  1155. libcxx/include/string.h [6:6]
  1156. libcxx/include/string_view [6:6]
  1157. libcxx/include/strstream [6:6]
  1158. libcxx/include/support/android/locale_bionic.h [6:6]
  1159. libcxx/include/support/fuchsia/xlocale.h [6:6]
  1160. libcxx/include/support/ibm/limits.h [6:6]
  1161. libcxx/include/support/ibm/locale_mgmt_aix.h [6:6]
  1162. libcxx/include/support/ibm/nanosleep.h [6:6]
  1163. libcxx/include/support/ibm/support.h [6:6]
  1164. libcxx/include/support/ibm/xlocale.h [6:6]
  1165. libcxx/include/support/musl/xlocale.h [6:6]
  1166. libcxx/include/support/newlib/xlocale.h [5:5]
  1167. libcxx/include/support/nuttx/xlocale.h [6:6]
  1168. libcxx/include/support/solaris/floatingpoint.h [5:5]
  1169. libcxx/include/support/solaris/wchar.h [5:5]
  1170. libcxx/include/support/solaris/xlocale.h [5:5]
  1171. libcxx/include/support/win32/limits_msvc_win32.h [6:6]
  1172. libcxx/include/support/win32/locale_win32.h [6:6]
  1173. libcxx/include/support/xlocale/__nop_locale_mgmt.h [6:6]
  1174. libcxx/include/support/xlocale/__posix_l_fallback.h [6:6]
  1175. libcxx/include/support/xlocale/__strtonum_fallback.h [6:6]
  1176. libcxx/include/system_error [6:6]
  1177. libcxx/include/tgmath.h [6:6]
  1178. libcxx/include/thread [6:6]
  1179. libcxx/include/tuple [6:6]
  1180. libcxx/include/type_traits [6:6]
  1181. libcxx/include/typeindex [6:6]
  1182. libcxx/include/typeinfo [6:6]
  1183. libcxx/include/unordered_map [6:6]
  1184. libcxx/include/unordered_set [6:6]
  1185. libcxx/include/utility [6:6]
  1186. libcxx/include/valarray [6:6]
  1187. libcxx/include/variant [6:6]
  1188. libcxx/include/vector [6:6]
  1189. libcxx/include/version [6:6]
  1190. libcxx/include/wchar.h [6:6]
  1191. libcxx/include/wctype.h [6:6]
  1192. libcxx/src/algorithm.cpp [5:5]
  1193. libcxx/src/any.cpp [5:5]
  1194. libcxx/src/atomic.cpp [5:5]
  1195. libcxx/src/barrier.cpp [5:5]
  1196. libcxx/src/bind.cpp [5:5]
  1197. libcxx/src/charconv.cpp [5:5]
  1198. libcxx/src/chrono.cpp [5:5]
  1199. libcxx/src/condition_variable.cpp [5:5]
  1200. libcxx/src/condition_variable_destructor.cpp [5:5]
  1201. libcxx/src/debug.cpp [5:5]
  1202. libcxx/src/exception.cpp [5:5]
  1203. libcxx/src/experimental/memory_resource.cpp [5:5]
  1204. libcxx/src/filesystem/directory_iterator.cpp [5:5]
  1205. libcxx/src/filesystem/filesystem_common.h [5:5]
  1206. libcxx/src/filesystem/operations.cpp [5:5]
  1207. libcxx/src/functional.cpp [5:5]
  1208. libcxx/src/future.cpp [5:5]
  1209. libcxx/src/hash.cpp [5:5]
  1210. libcxx/src/include/apple_availability.h [5:5]
  1211. libcxx/src/include/atomic_support.h [5:5]
  1212. libcxx/src/include/config_elast.h [5:5]
  1213. libcxx/src/include/refstring.h [5:5]
  1214. libcxx/src/ios.cpp [5:5]
  1215. libcxx/src/ios.instantiations.cpp [5:5]
  1216. libcxx/src/iostream.cpp [5:5]
  1217. libcxx/src/locale.cpp [5:5]
  1218. libcxx/src/memory.cpp [5:5]
  1219. libcxx/src/mutex.cpp [5:5]
  1220. libcxx/src/mutex_destructor.cpp [5:5]
  1221. libcxx/src/new.cpp [5:5]
  1222. libcxx/src/optional.cpp [5:5]
  1223. libcxx/src/random.cpp [5:5]
  1224. libcxx/src/random_shuffle.cpp [5:5]
  1225. libcxx/src/regex.cpp [5:5]
  1226. libcxx/src/shared_mutex.cpp [5:5]
  1227. libcxx/src/stdexcept.cpp [5:5]
  1228. libcxx/src/string.cpp [5:5]
  1229. libcxx/src/strstream.cpp [5:5]
  1230. libcxx/src/support/runtime/exception_fallback.ipp [6:6]
  1231. libcxx/src/support/runtime/exception_glibcxx.ipp [6:6]
  1232. libcxx/src/support/runtime/exception_libcxxabi.ipp [6:6]
  1233. libcxx/src/support/runtime/exception_libcxxrt.ipp [6:6]
  1234. libcxx/src/support/runtime/exception_msvc.ipp [6:6]
  1235. libcxx/src/support/runtime/exception_pointer_cxxabi.ipp [6:6]
  1236. libcxx/src/support/runtime/exception_pointer_glibcxx.ipp [6:6]
  1237. libcxx/src/support/runtime/exception_pointer_msvc.ipp [6:6]
  1238. libcxx/src/support/runtime/exception_pointer_unimplemented.ipp [6:6]
  1239. libcxx/src/support/runtime/new_handler_fallback.ipp [6:6]
  1240. libcxx/src/support/runtime/stdexcept_default.ipp [5:5]
  1241. libcxx/src/support/runtime/stdexcept_vcruntime.ipp [5:5]
  1242. libcxx/src/support/solaris/xlocale.cpp [5:5]
  1243. libcxx/src/support/win32/locale_win32.cpp [6:6]
  1244. libcxx/src/support/win32/support.cpp [6:6]
  1245. libcxx/src/support/win32/thread_win32.cpp [6:6]
  1246. libcxx/src/system_error.cpp [5:5]
  1247. libcxx/src/thread.cpp [5:5]
  1248. libcxx/src/typeinfo.cpp [5:5]
  1249. libcxx/src/utility.cpp [5:5]
  1250. libcxx/src/valarray.cpp [5:5]
  1251. libcxx/src/variant.cpp [5:5]
  1252. libcxx/src/vector.cpp [5:5]
  1253. Scancode info:
  1254. Original SPDX id: LLVM-exception
  1255. Score : 100.00
  1256. Match type : TAG
  1257. Links : http://llvm.org/foundation/relicensing/LICENSE.txt, https://spdx.org/licenses/LLVM-exception
  1258. Files with this license:
  1259. libcxx/include/__availability [6:6]
  1260. libcxx/include/__bit_reference [6:6]
  1261. libcxx/include/__bsd_locale_defaults.h [6:6]
  1262. libcxx/include/__bsd_locale_fallbacks.h [6:6]
  1263. libcxx/include/__config [6:6]
  1264. libcxx/include/__config_site.in [5:5]
  1265. libcxx/include/__debug [6:6]
  1266. libcxx/include/__errc [6:6]
  1267. libcxx/include/__functional_03 [6:6]
  1268. libcxx/include/__functional_base [6:6]
  1269. libcxx/include/__functional_base_03 [6:6]
  1270. libcxx/include/__hash_table [6:6]
  1271. libcxx/include/__locale [6:6]
  1272. libcxx/include/__memory/allocator_traits.h [6:6]
  1273. libcxx/include/__memory/base.h [6:6]
  1274. libcxx/include/__memory/pointer_traits.h [6:6]
  1275. libcxx/include/__memory/utilities.h [6:6]
  1276. libcxx/include/__mutex_base [6:6]
  1277. libcxx/include/__node_handle [6:6]
  1278. libcxx/include/__nullptr [6:6]
  1279. libcxx/include/__sso_allocator [6:6]
  1280. libcxx/include/__std_stream [6:6]
  1281. libcxx/include/__string [6:6]
  1282. libcxx/include/__threading_support [6:6]
  1283. libcxx/include/__tree [6:6]
  1284. libcxx/include/__tuple [6:6]
  1285. libcxx/include/__undef_macros [6:6]
  1286. libcxx/include/algorithm [6:6]
  1287. libcxx/include/any [6:6]
  1288. libcxx/include/array [6:6]
  1289. libcxx/include/atomic [6:6]
  1290. libcxx/include/barrier [6:6]
  1291. libcxx/include/bit [6:6]
  1292. libcxx/include/bitset [6:6]
  1293. libcxx/include/cassert [6:6]
  1294. libcxx/include/ccomplex [6:6]
  1295. libcxx/include/cctype [6:6]
  1296. libcxx/include/cerrno [6:6]
  1297. libcxx/include/cfenv [6:6]
  1298. libcxx/include/cfloat [6:6]
  1299. libcxx/include/charconv [6:6]
  1300. libcxx/include/chrono [6:6]
  1301. libcxx/include/cinttypes [6:6]
  1302. libcxx/include/ciso646 [6:6]
  1303. libcxx/include/climits [6:6]
  1304. libcxx/include/clocale [6:6]
  1305. libcxx/include/cmath [6:6]
  1306. libcxx/include/codecvt [6:6]
  1307. libcxx/include/compare [6:6]
  1308. libcxx/include/complex [6:6]
  1309. libcxx/include/complex.h [6:6]
  1310. libcxx/include/concepts [6:6]
  1311. libcxx/include/condition_variable [6:6]
  1312. libcxx/include/csetjmp [6:6]
  1313. libcxx/include/csignal [6:6]
  1314. libcxx/include/cstdarg [6:6]
  1315. libcxx/include/cstdbool [6:6]
  1316. libcxx/include/cstddef [6:6]
  1317. libcxx/include/cstdint [6:6]
  1318. libcxx/include/cstdio [6:6]
  1319. libcxx/include/cstdlib [6:6]
  1320. libcxx/include/cstring [6:6]
  1321. libcxx/include/ctgmath [6:6]
  1322. libcxx/include/ctime [6:6]
  1323. libcxx/include/ctype.h [6:6]
  1324. libcxx/include/cwchar [6:6]
  1325. libcxx/include/cwctype [6:6]
  1326. libcxx/include/deque [6:6]
  1327. libcxx/include/errno.h [6:6]
  1328. libcxx/include/exception [6:6]
  1329. libcxx/include/execution [6:6]
  1330. libcxx/include/experimental/__memory [6:6]
  1331. libcxx/include/experimental/algorithm [6:6]
  1332. libcxx/include/experimental/coroutine [6:6]
  1333. libcxx/include/experimental/deque [6:6]
  1334. libcxx/include/experimental/filesystem [6:6]
  1335. libcxx/include/experimental/forward_list [6:6]
  1336. libcxx/include/experimental/functional [6:6]
  1337. libcxx/include/experimental/iterator [6:6]
  1338. libcxx/include/experimental/list [6:6]
  1339. libcxx/include/experimental/map [6:6]
  1340. libcxx/include/experimental/memory_resource [6:6]
  1341. libcxx/include/experimental/propagate_const [6:6]
  1342. libcxx/include/experimental/regex [6:6]
  1343. libcxx/include/experimental/set [6:6]
  1344. libcxx/include/experimental/simd [6:6]
  1345. libcxx/include/experimental/string [6:6]
  1346. libcxx/include/experimental/type_traits [6:6]
  1347. libcxx/include/experimental/unordered_map [6:6]
  1348. libcxx/include/experimental/unordered_set [6:6]
  1349. libcxx/include/experimental/utility [6:6]
  1350. libcxx/include/experimental/vector [6:6]
  1351. libcxx/include/ext/__hash [6:6]
  1352. libcxx/include/ext/hash_map [6:6]
  1353. libcxx/include/ext/hash_set [6:6]
  1354. libcxx/include/filesystem [6:6]
  1355. libcxx/include/float.h [6:6]
  1356. libcxx/include/forward_list [6:6]
  1357. libcxx/include/fstream [6:6]
  1358. libcxx/include/functional [6:6]
  1359. libcxx/include/future [6:6]
  1360. libcxx/include/initializer_list [6:6]
  1361. libcxx/include/inttypes.h [6:6]
  1362. libcxx/include/iomanip [6:6]
  1363. libcxx/include/ios [6:6]
  1364. libcxx/include/iosfwd [6:6]
  1365. libcxx/include/iostream [6:6]
  1366. libcxx/include/istream [6:6]
  1367. libcxx/include/iterator [6:6]
  1368. libcxx/include/latch [6:6]
  1369. libcxx/include/limits [6:6]
  1370. libcxx/include/limits.h [6:6]
  1371. libcxx/include/list [6:6]
  1372. libcxx/include/locale [6:6]
  1373. libcxx/include/locale.h [6:6]
  1374. libcxx/include/map [6:6]
  1375. libcxx/include/math.h [6:6]
  1376. libcxx/include/memory [6:6]
  1377. libcxx/include/mutex [6:6]
  1378. libcxx/include/new [6:6]
  1379. libcxx/include/numbers [6:6]
  1380. libcxx/include/numeric [6:6]
  1381. libcxx/include/optional [6:6]
  1382. libcxx/include/ostream [6:6]
  1383. libcxx/include/queue [6:6]
  1384. libcxx/include/random [6:6]
  1385. libcxx/include/ratio [6:6]
  1386. libcxx/include/regex [6:6]
  1387. libcxx/include/scoped_allocator [6:6]
  1388. libcxx/include/semaphore [6:6]
  1389. libcxx/include/set [6:6]
  1390. libcxx/include/setjmp.h [6:6]
  1391. libcxx/include/shared_mutex [6:6]
  1392. libcxx/include/span [6:6]
  1393. libcxx/include/sstream [6:6]
  1394. libcxx/include/stack [6:6]
  1395. libcxx/include/stdbool.h [6:6]
  1396. libcxx/include/stddef.h [6:6]
  1397. libcxx/include/stdexcept [6:6]
  1398. libcxx/include/stdint.h [6:6]
  1399. libcxx/include/stdio.h [6:6]
  1400. libcxx/include/stdlib.h [6:6]
  1401. libcxx/include/streambuf [6:6]
  1402. libcxx/include/string [6:6]
  1403. libcxx/include/string.h [6:6]
  1404. libcxx/include/string_view [6:6]
  1405. libcxx/include/strstream [6:6]
  1406. libcxx/include/support/android/locale_bionic.h [6:6]
  1407. libcxx/include/support/fuchsia/xlocale.h [6:6]
  1408. libcxx/include/support/ibm/limits.h [6:6]
  1409. libcxx/include/support/ibm/locale_mgmt_aix.h [6:6]
  1410. libcxx/include/support/ibm/nanosleep.h [6:6]
  1411. libcxx/include/support/ibm/support.h [6:6]
  1412. libcxx/include/support/ibm/xlocale.h [6:6]
  1413. libcxx/include/support/musl/xlocale.h [6:6]
  1414. libcxx/include/support/newlib/xlocale.h [5:5]
  1415. libcxx/include/support/nuttx/xlocale.h [6:6]
  1416. libcxx/include/support/solaris/floatingpoint.h [5:5]
  1417. libcxx/include/support/solaris/wchar.h [5:5]
  1418. libcxx/include/support/solaris/xlocale.h [5:5]
  1419. libcxx/include/support/win32/limits_msvc_win32.h [6:6]
  1420. libcxx/include/support/win32/locale_win32.h [6:6]
  1421. libcxx/include/support/xlocale/__nop_locale_mgmt.h [6:6]
  1422. libcxx/include/support/xlocale/__posix_l_fallback.h [6:6]
  1423. libcxx/include/support/xlocale/__strtonum_fallback.h [6:6]
  1424. libcxx/include/system_error [6:6]
  1425. libcxx/include/tgmath.h [6:6]
  1426. libcxx/include/thread [6:6]
  1427. libcxx/include/tuple [6:6]
  1428. libcxx/include/type_traits [6:6]
  1429. libcxx/include/typeindex [6:6]
  1430. libcxx/include/typeinfo [6:6]
  1431. libcxx/include/unordered_map [6:6]
  1432. libcxx/include/unordered_set [6:6]
  1433. libcxx/include/utility [6:6]
  1434. libcxx/include/valarray [6:6]
  1435. libcxx/include/variant [6:6]
  1436. libcxx/include/vector [6:6]
  1437. libcxx/include/version [6:6]
  1438. libcxx/include/wchar.h [6:6]
  1439. libcxx/include/wctype.h [6:6]
  1440. libcxx/src/algorithm.cpp [5:5]
  1441. libcxx/src/any.cpp [5:5]
  1442. libcxx/src/atomic.cpp [5:5]
  1443. libcxx/src/barrier.cpp [5:5]
  1444. libcxx/src/bind.cpp [5:5]
  1445. libcxx/src/charconv.cpp [5:5]
  1446. libcxx/src/chrono.cpp [5:5]
  1447. libcxx/src/condition_variable.cpp [5:5]
  1448. libcxx/src/condition_variable_destructor.cpp [5:5]
  1449. libcxx/src/debug.cpp [5:5]
  1450. libcxx/src/exception.cpp [5:5]
  1451. libcxx/src/experimental/memory_resource.cpp [5:5]
  1452. libcxx/src/filesystem/directory_iterator.cpp [5:5]
  1453. libcxx/src/filesystem/filesystem_common.h [5:5]
  1454. libcxx/src/filesystem/operations.cpp [5:5]
  1455. libcxx/src/functional.cpp [5:5]
  1456. libcxx/src/future.cpp [5:5]
  1457. libcxx/src/hash.cpp [5:5]
  1458. libcxx/src/include/apple_availability.h [5:5]
  1459. libcxx/src/include/atomic_support.h [5:5]
  1460. libcxx/src/include/config_elast.h [5:5]
  1461. libcxx/src/include/refstring.h [5:5]
  1462. libcxx/src/ios.cpp [5:5]
  1463. libcxx/src/ios.instantiations.cpp [5:5]
  1464. libcxx/src/iostream.cpp [5:5]
  1465. libcxx/src/locale.cpp [5:5]
  1466. libcxx/src/memory.cpp [5:5]
  1467. libcxx/src/mutex.cpp [5:5]
  1468. libcxx/src/mutex_destructor.cpp [5:5]
  1469. libcxx/src/new.cpp [5:5]
  1470. libcxx/src/optional.cpp [5:5]
  1471. libcxx/src/random.cpp [5:5]
  1472. libcxx/src/random_shuffle.cpp [5:5]
  1473. libcxx/src/regex.cpp [5:5]
  1474. libcxx/src/shared_mutex.cpp [5:5]
  1475. libcxx/src/stdexcept.cpp [5:5]
  1476. libcxx/src/string.cpp [5:5]
  1477. libcxx/src/strstream.cpp [5:5]
  1478. libcxx/src/support/runtime/exception_fallback.ipp [6:6]
  1479. libcxx/src/support/runtime/exception_glibcxx.ipp [6:6]
  1480. libcxx/src/support/runtime/exception_libcxxabi.ipp [6:6]
  1481. libcxx/src/support/runtime/exception_libcxxrt.ipp [6:6]
  1482. libcxx/src/support/runtime/exception_msvc.ipp [6:6]
  1483. libcxx/src/support/runtime/exception_pointer_cxxabi.ipp [6:6]
  1484. libcxx/src/support/runtime/exception_pointer_glibcxx.ipp [6:6]
  1485. libcxx/src/support/runtime/exception_pointer_msvc.ipp [6:6]
  1486. libcxx/src/support/runtime/exception_pointer_unimplemented.ipp [6:6]
  1487. libcxx/src/support/runtime/new_handler_fallback.ipp [6:6]
  1488. libcxx/src/support/runtime/stdexcept_default.ipp [5:5]
  1489. libcxx/src/support/runtime/stdexcept_vcruntime.ipp [5:5]
  1490. libcxx/src/support/solaris/xlocale.cpp [5:5]
  1491. libcxx/src/support/win32/locale_win32.cpp [6:6]
  1492. libcxx/src/support/win32/support.cpp [6:6]
  1493. libcxx/src/support/win32/thread_win32.cpp [6:6]
  1494. libcxx/src/system_error.cpp [5:5]
  1495. libcxx/src/thread.cpp [5:5]
  1496. libcxx/src/typeinfo.cpp [5:5]
  1497. libcxx/src/utility.cpp [5:5]
  1498. libcxx/src/valarray.cpp [5:5]
  1499. libcxx/src/variant.cpp [5:5]
  1500. libcxx/src/vector.cpp [5:5]
  1501. KEEP Apache-2.0 WITH LLVM-exception c1e6c6536fcc444f916047679115c618
  1502. BELONGS libcxx/ya.make
  1503. License text:
  1504. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  1505. Scancode info:
  1506. Original SPDX id: Apache-2.0
  1507. Score : 100.00
  1508. Match type : TAG
  1509. Links : http://www.apache.org/licenses/, http://www.apache.org/licenses/LICENSE-2.0, https://spdx.org/licenses/Apache-2.0
  1510. Files with this license:
  1511. libcxx/src/filesystem/int128_builtins.cpp [5:5]
  1512. Scancode info:
  1513. Original SPDX id: LLVM-exception
  1514. Score : 100.00
  1515. Match type : TAG
  1516. Links : http://llvm.org/foundation/relicensing/LICENSE.txt, https://spdx.org/licenses/LLVM-exception
  1517. Files with this license:
  1518. libcxx/src/filesystem/int128_builtins.cpp [5:5]
  1519. KEEP NCSA c26d0b72f92421989c4471ae0acbc943
  1520. BELONGS libcxx/ya.make
  1521. License text:
  1522. University of Illinois/NCSA
  1523. Open Source License
  1524. Scancode info:
  1525. Original SPDX id: NCSA
  1526. Score : 100.00
  1527. Match type : REFERENCE
  1528. Links : http://www.otm.illinois.edu/faculty/forms/opensource.asp, https://spdx.org/licenses/NCSA
  1529. Files with this license:
  1530. libcxx/LICENSE.TXT [249:250]
  1531. KEEP NCSA AND MIT d2725783fa0a2f24d855943aac3dbdf9
  1532. BELONGS openmp/ya.make
  1533. FILE_INCLUDE builtins/LICENSE.txt found in files: openmp/z_Windows_NT-586_asm.asm at line 10
  1534. License text:
  1535. ;// This file is dual licensed under the MIT and the University of Illinois Open
  1536. ;// Source Licenses. See LICENSE.txt for details.
  1537. Scancode info:
  1538. Original SPDX id: NCSA
  1539. Score : 100.00
  1540. Match type : NOTICE
  1541. Links : http://www.otm.illinois.edu/faculty/forms/opensource.asp, https://spdx.org/licenses/NCSA
  1542. Files with this license:
  1543. openmp/z_Windows_NT-586_asm.asm [9:10]
  1544. Scancode info:
  1545. Original SPDX id: MIT
  1546. Score : 100.00
  1547. Match type : NOTICE
  1548. Links : http://opensource.org/licenses/mit-license.php, https://spdx.org/licenses/MIT
  1549. Files with this license:
  1550. openmp/z_Windows_NT-586_asm.asm [9:10]
  1551. SKIP LicenseRef-scancode-unknown-license-reference d4fd839c20b32e384ccf02a801e876d1
  1552. BELONGS libcxx/ya.make
  1553. # part of bsd-2-clause text
  1554. License text:
  1555. distributed under.
  1556. Scancode info:
  1557. Original SPDX id: LicenseRef-scancode-unknown-license-reference
  1558. Score : 11.00
  1559. Match type : INTRO
  1560. Links : https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/unknown-license-reference.LICENSE
  1561. Files with this license:
  1562. libcxx/src/support/solaris/README [4:4]
  1563. KEEP Apache-2.0 WITH LLVM-exception df18889e552d44a4679aff552267f802
  1564. BELONGS libcxx/ya.make
  1565. License text:
  1566. The LLVM Project is under the Apache License v2.0 with LLVM Exceptions:
  1567. Scancode info:
  1568. Original SPDX id: Apache-2.0
  1569. Score : 100.00
  1570. Match type : NOTICE
  1571. Links : http://www.apache.org/licenses/, http://www.apache.org/licenses/LICENSE-2.0, https://spdx.org/licenses/Apache-2.0
  1572. Files with this license:
  1573. libcxx/LICENSE.TXT [2:2]
  1574. Scancode info:
  1575. Original SPDX id: LLVM-exception
  1576. Score : 100.00
  1577. Match type : NOTICE
  1578. Links : http://llvm.org/foundation/relicensing/LICENSE.txt, https://spdx.org/licenses/LLVM-exception
  1579. Files with this license:
  1580. libcxx/LICENSE.TXT [2:2]
  1581. KEEP NCSA AND MIT e56769dac6aaa0678164025adda8a1da
  1582. BELONGS openmp/ya.make
  1583. FILE_INCLUDE builtins/LICENSE.txt found in files: openmp/i18n/en_US.txt at line 9
  1584. License text:
  1585. \#// This file is dual licensed under the MIT and the University of Illinois Open
  1586. \#// Source Licenses. See LICENSE.txt for details.
  1587. Scancode info:
  1588. Original SPDX id: NCSA
  1589. Score : 100.00
  1590. Match type : NOTICE
  1591. Links : http://www.otm.illinois.edu/faculty/forms/opensource.asp, https://spdx.org/licenses/NCSA
  1592. Files with this license:
  1593. openmp/i18n/en_US.txt [8:9]
  1594. Scancode info:
  1595. Original SPDX id: MIT
  1596. Score : 100.00
  1597. Match type : NOTICE
  1598. Links : http://opensource.org/licenses/mit-license.php, https://spdx.org/licenses/MIT
  1599. Files with this license:
  1600. openmp/i18n/en_US.txt [8:9]
  1601. KEEP BSD-2-Clause f59cebb43ee786218189ac014af76fbb
  1602. BELONGS libcxx/ya.make
  1603. FILE_IGNORE libcxx/include/experimental/list found in files: libcxx/src/support/solaris/mbsnrtowcs.inc at line 13, libcxx/src/support/solaris/mbsnrtowcs.inc at line 15, libcxx/src/support/solaris/wcsnrtombs.inc at line 10, libcxx/src/support/solaris/wcsnrtombs.inc at line 8
  1604. FILE_IGNORE libcxx/include/list found in files: libcxx/src/support/solaris/mbsnrtowcs.inc at line 13, libcxx/src/support/solaris/mbsnrtowcs.inc at line 15, libcxx/src/support/solaris/wcsnrtombs.inc at line 10, libcxx/src/support/solaris/wcsnrtombs.inc at line 8
  1605. # list - just word, not file reference
  1606. Note: matched license text is too long. Read it in the source files.
  1607. Scancode info:
  1608. Original SPDX id: BSD-2-Clause
  1609. Score : 100.00
  1610. Match type : TEXT
  1611. Links : http://opensource.org/licenses/bsd-license.php, http://www.opensource.org/licenses/BSD-2-Clause, https://spdx.org/licenses/BSD-2-Clause
  1612. Files with this license:
  1613. libcxx/src/support/solaris/mbsnrtowcs.inc [9:28]
  1614. libcxx/src/support/solaris/wcsnrtombs.inc [4:23]
  1615. KEEP BSD-2-Clause-Views fa822847a0868c8922cbd110b73455fc
  1616. BELONGS libcxxrt/ya.make
  1617. FILE_IGNORE libcxx/include/experimental/list found in files: libcxxrt/LICENSE at line 7, libcxxrt/LICENSE at line 8
  1618. FILE_IGNORE libcxx/include/list found in files: libcxxrt/LICENSE at line 7, libcxxrt/LICENSE at line 8
  1619. FILE_INCLUDE libcxxrt/COPYRIGHT found in files: libcxxrt/LICENSE at line 12
  1620. # list - just word, not file reference
  1621. Note: matched license text is too long. Read it in the source files.
  1622. Scancode info:
  1623. Original SPDX id: BSD-2-Clause-Views
  1624. Score : 98.16
  1625. Match type : TEXT
  1626. Links : https://github.com/protegeproject/protege/blob/master/license.txt, https://spdx.org/licenses/BSD-2-Clause-Views, https://www.freebsd.org/copyright/freebsd-license.html
  1627. Files with this license:
  1628. libcxxrt/LICENSE [5:14]