├── .coveragerc ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYING.txt ├── README.md ├── appveyor.yml ├── autoload └── youcompleteme.vim ├── ci ├── appveyor │ └── appveyor_install.bat └── travis │ ├── travis_install.linux.sh │ ├── travis_install.osx.sh │ └── travis_install.sh ├── codecov.yml ├── doc └── youcompleteme.txt ├── install.py ├── install.sh ├── plugin └── youcompleteme.vim ├── print_todos.sh ├── python ├── .ycm_extra_conf.py ├── test_requirements.txt └── ycm │ ├── __init__.py │ ├── base.py │ ├── client │ ├── __init__.py │ ├── base_request.py │ ├── command_request.py │ ├── completer_available_request.py │ ├── completion_request.py │ ├── debug_info_request.py │ ├── event_notification.py │ ├── omni_completion_request.py │ ├── shutdown_request.py │ └── ycmd_keepalive.py │ ├── diagnostic_filter.py │ ├── diagnostic_interface.py │ ├── omni_completer.py │ ├── paths.py │ ├── setup.py │ ├── syntax_parse.py │ ├── tests │ ├── __init__.py │ ├── base_test.py │ ├── client │ │ ├── __init__.py │ │ ├── command_request_test.py │ │ ├── completion_request_test.py │ │ ├── debug_info_request_test.py │ │ └── omni_completion_request_tests.py │ ├── command_test.py │ ├── completion_test.py │ ├── diagnostic_filter_test.py │ ├── event_notification_test.py │ ├── omni_completer_test.py │ ├── paths_test.py │ ├── postcomplete_test.py │ ├── syntax_parse_test.py │ ├── test_utils.py │ ├── testdata │ │ ├── cpp_syntax │ │ ├── java_syntax │ │ ├── php_syntax │ │ ├── python_syntax │ │ └── uni¢𐍈d€ │ │ │ └── tags │ ├── vimsupport_test.py │ └── youcompleteme_test.py │ ├── unsafe_thread_pool_executor.py │ ├── vimsupport.py │ └── youcompleteme.py ├── run_tests.py ├── third_party ├── pythonfutures │ ├── CHANGES │ ├── LICENSE │ ├── concurrent │ │ ├── __init__.py │ │ └── futures │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ ├── _compat.py │ │ │ ├── process.py │ │ │ └── thread.py │ ├── crawl.py │ ├── docs │ │ ├── conf.py │ │ ├── index.rst │ │ └── make.bat │ ├── futures │ │ ├── __init__.py │ │ ├── process.py │ │ └── thread.py │ ├── primes.py │ ├── setup.cfg │ ├── setup.py │ ├── test_futures.py │ └── tox.ini ├── requests-futures │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── MANIFEST.in │ ├── README.rst │ ├── requests_futures │ │ ├── __init__.py │ │ └── sessions.py │ ├── requirements-python-2.7.txt │ ├── requirements-python-3.2.txt │ ├── setup.py │ └── test_requests_futures.py └── ycmd │ ├── .coveragerc │ ├── .gitignore │ ├── .gitmodules │ ├── .travis.yml │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── COPYING.txt │ ├── CORE_VERSION │ ├── DEV_SETUP.md │ ├── README.md │ ├── TESTS.md │ ├── Vagrantfile │ ├── appveyor.yml │ ├── build.py │ ├── ci │ ├── README.md │ ├── appveyor │ │ └── appveyor_install.bat │ └── travis │ │ ├── travis_install.linux.sh │ │ ├── travis_install.osx.sh │ │ └── travis_install.sh │ ├── clang_includes │ └── include │ │ ├── Intrin.h │ │ ├── __clang_cuda_cmath.h │ │ ├── __clang_cuda_intrinsics.h │ │ ├── __clang_cuda_math_forward_declares.h │ │ ├── __clang_cuda_runtime_wrapper.h │ │ ├── __stddef_max_align_t.h │ │ ├── __wmmintrin_aes.h │ │ ├── __wmmintrin_pclmul.h │ │ ├── adxintrin.h │ │ ├── altivec.h │ │ ├── ammintrin.h │ │ ├── arm_acle.h │ │ ├── avx2intrin.h │ │ ├── avx512bwintrin.h │ │ ├── avx512cdintrin.h │ │ ├── avx512dqintrin.h │ │ ├── avx512erintrin.h │ │ ├── avx512fintrin.h │ │ ├── avx512ifmaintrin.h │ │ ├── avx512ifmavlintrin.h │ │ ├── avx512pfintrin.h │ │ ├── avx512vbmiintrin.h │ │ ├── avx512vbmivlintrin.h │ │ ├── avx512vlbwintrin.h │ │ ├── avx512vlcdintrin.h │ │ ├── avx512vldqintrin.h │ │ ├── avx512vlintrin.h │ │ ├── avxintrin.h │ │ ├── bmi2intrin.h │ │ ├── bmiintrin.h │ │ ├── clflushoptintrin.h │ │ ├── cpuid.h │ │ ├── cuda_builtin_vars.h │ │ ├── emmintrin.h │ │ ├── f16cintrin.h │ │ ├── float.h │ │ ├── fma4intrin.h │ │ ├── fmaintrin.h │ │ ├── fxsrintrin.h │ │ ├── htmintrin.h │ │ ├── htmxlintrin.h │ │ ├── ia32intrin.h │ │ ├── immintrin.h │ │ ├── inttypes.h │ │ ├── iso646.h │ │ ├── limits.h │ │ ├── lzcntintrin.h │ │ ├── mm3dnow.h │ │ ├── mm_malloc.h │ │ ├── mmintrin.h │ │ ├── module.modulemap │ │ ├── mwaitxintrin.h │ │ ├── nmmintrin.h │ │ ├── opencl-c.h │ │ ├── pkuintrin.h │ │ ├── pmmintrin.h │ │ ├── popcntintrin.h │ │ ├── prfchwintrin.h │ │ ├── rdseedintrin.h │ │ ├── rtmintrin.h │ │ ├── s390intrin.h │ │ ├── shaintrin.h │ │ ├── smmintrin.h │ │ ├── stdalign.h │ │ ├── stdarg.h │ │ ├── stdatomic.h │ │ ├── stdbool.h │ │ ├── stddef.h │ │ ├── stdint.h │ │ ├── stdnoreturn.h │ │ ├── tbmintrin.h │ │ ├── tgmath.h │ │ ├── tmmintrin.h │ │ ├── unwind.h │ │ ├── vadefs.h │ │ ├── varargs.h │ │ ├── vecintrin.h │ │ ├── wmmintrin.h │ │ ├── x86intrin.h │ │ ├── xmmintrin.h │ │ ├── xopintrin.h │ │ ├── xsavecintrin.h │ │ ├── xsaveintrin.h │ │ ├── xsaveoptintrin.h │ │ ├── xsavesintrin.h │ │ └── xtestintrin.h │ ├── codecov.yml │ ├── cpp │ ├── BoostParts │ │ ├── CMakeLists.txt │ │ ├── boost │ │ │ ├── algorithm │ │ │ │ ├── cxx11 │ │ │ │ │ ├── all_of.hpp │ │ │ │ │ └── any_of.hpp │ │ │ │ ├── string.hpp │ │ │ │ ├── string │ │ │ │ │ ├── case_conv.hpp │ │ │ │ │ ├── classification.hpp │ │ │ │ │ ├── compare.hpp │ │ │ │ │ ├── concept.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── constants.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── case_conv.hpp │ │ │ │ │ │ ├── classification.hpp │ │ │ │ │ │ ├── find_format.hpp │ │ │ │ │ │ ├── find_format_all.hpp │ │ │ │ │ │ ├── find_format_store.hpp │ │ │ │ │ │ ├── find_iterator.hpp │ │ │ │ │ │ ├── finder.hpp │ │ │ │ │ │ ├── finder_regex.hpp │ │ │ │ │ │ ├── formatter.hpp │ │ │ │ │ │ ├── formatter_regex.hpp │ │ │ │ │ │ ├── predicate.hpp │ │ │ │ │ │ ├── replace_storage.hpp │ │ │ │ │ │ ├── sequence.hpp │ │ │ │ │ │ ├── trim.hpp │ │ │ │ │ │ └── util.hpp │ │ │ │ │ ├── erase.hpp │ │ │ │ │ ├── find.hpp │ │ │ │ │ ├── find_format.hpp │ │ │ │ │ ├── find_iterator.hpp │ │ │ │ │ ├── finder.hpp │ │ │ │ │ ├── formatter.hpp │ │ │ │ │ ├── iter_find.hpp │ │ │ │ │ ├── join.hpp │ │ │ │ │ ├── predicate.hpp │ │ │ │ │ ├── predicate_facade.hpp │ │ │ │ │ ├── regex.hpp │ │ │ │ │ ├── regex_find_format.hpp │ │ │ │ │ ├── replace.hpp │ │ │ │ │ ├── sequence_traits.hpp │ │ │ │ │ ├── split.hpp │ │ │ │ │ ├── std │ │ │ │ │ │ ├── list_traits.hpp │ │ │ │ │ │ ├── slist_traits.hpp │ │ │ │ │ │ └── string_traits.hpp │ │ │ │ │ ├── std_containers_traits.hpp │ │ │ │ │ ├── trim.hpp │ │ │ │ │ └── yes_no_type.hpp │ │ │ │ └── string_regex.hpp │ │ │ ├── align │ │ │ │ ├── align.hpp │ │ │ │ ├── align_up.hpp │ │ │ │ ├── align_up_forward.hpp │ │ │ │ ├── aligned_allocator_adaptor.hpp │ │ │ │ ├── aligned_allocator_adaptor_forward.hpp │ │ │ │ ├── alignment_of.hpp │ │ │ │ ├── alignment_of_forward.hpp │ │ │ │ └── detail │ │ │ │ │ ├── addressof.hpp │ │ │ │ │ ├── align.hpp │ │ │ │ │ ├── align_cxx11.hpp │ │ │ │ │ ├── align_up.hpp │ │ │ │ │ ├── alignment_of.hpp │ │ │ │ │ ├── alignment_of_clang.hpp │ │ │ │ │ ├── alignment_of_codegear.hpp │ │ │ │ │ ├── alignment_of_cxx11.hpp │ │ │ │ │ ├── alignment_of_gcc.hpp │ │ │ │ │ ├── alignment_of_msvc.hpp │ │ │ │ │ ├── element_type.hpp │ │ │ │ │ ├── integral_constant.hpp │ │ │ │ │ ├── is_alignment.hpp │ │ │ │ │ ├── is_alignment_constant.hpp │ │ │ │ │ ├── max_align.hpp │ │ │ │ │ ├── max_size.hpp │ │ │ │ │ └── min_size.hpp │ │ │ ├── aligned_storage.hpp │ │ │ ├── archive │ │ │ │ ├── archive_exception.hpp │ │ │ │ ├── basic_archive.hpp │ │ │ │ ├── basic_binary_iarchive.hpp │ │ │ │ ├── basic_binary_iprimitive.hpp │ │ │ │ ├── basic_binary_oarchive.hpp │ │ │ │ ├── basic_binary_oprimitive.hpp │ │ │ │ ├── basic_streambuf_locale_saver.hpp │ │ │ │ ├── basic_text_iarchive.hpp │ │ │ │ ├── basic_text_iprimitive.hpp │ │ │ │ ├── basic_text_oarchive.hpp │ │ │ │ ├── basic_text_oprimitive.hpp │ │ │ │ ├── basic_xml_archive.hpp │ │ │ │ ├── basic_xml_iarchive.hpp │ │ │ │ ├── basic_xml_oarchive.hpp │ │ │ │ ├── binary_iarchive.hpp │ │ │ │ ├── binary_iarchive_impl.hpp │ │ │ │ ├── binary_oarchive.hpp │ │ │ │ ├── binary_oarchive_impl.hpp │ │ │ │ ├── binary_wiarchive.hpp │ │ │ │ ├── binary_woarchive.hpp │ │ │ │ ├── codecvt_null.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── abi_prefix.hpp │ │ │ │ │ ├── abi_suffix.hpp │ │ │ │ │ ├── archive_serializer_map.hpp │ │ │ │ │ ├── auto_link_archive.hpp │ │ │ │ │ ├── auto_link_warchive.hpp │ │ │ │ │ ├── basic_iarchive.hpp │ │ │ │ │ ├── basic_iserializer.hpp │ │ │ │ │ ├── basic_oarchive.hpp │ │ │ │ │ ├── basic_oserializer.hpp │ │ │ │ │ ├── basic_pointer_iserializer.hpp │ │ │ │ │ ├── basic_pointer_oserializer.hpp │ │ │ │ │ ├── basic_serializer.hpp │ │ │ │ │ ├── basic_serializer_map.hpp │ │ │ │ │ ├── check.hpp │ │ │ │ │ ├── common_iarchive.hpp │ │ │ │ │ ├── common_oarchive.hpp │ │ │ │ │ ├── decl.hpp │ │ │ │ │ ├── helper_collection.hpp │ │ │ │ │ ├── interface_iarchive.hpp │ │ │ │ │ ├── interface_oarchive.hpp │ │ │ │ │ ├── iserializer.hpp │ │ │ │ │ ├── oserializer.hpp │ │ │ │ │ ├── register_archive.hpp │ │ │ │ │ └── utf8_codecvt_facet.hpp │ │ │ │ ├── dinkumware.hpp │ │ │ │ ├── impl │ │ │ │ │ ├── archive_serializer_map.ipp │ │ │ │ │ ├── basic_binary_iarchive.ipp │ │ │ │ │ ├── basic_binary_iprimitive.ipp │ │ │ │ │ ├── basic_binary_oarchive.ipp │ │ │ │ │ ├── basic_binary_oprimitive.ipp │ │ │ │ │ ├── basic_text_iarchive.ipp │ │ │ │ │ ├── basic_text_iprimitive.ipp │ │ │ │ │ ├── basic_text_oarchive.ipp │ │ │ │ │ ├── basic_text_oprimitive.ipp │ │ │ │ │ ├── basic_xml_grammar.hpp │ │ │ │ │ ├── basic_xml_iarchive.ipp │ │ │ │ │ ├── basic_xml_oarchive.ipp │ │ │ │ │ ├── text_iarchive_impl.ipp │ │ │ │ │ ├── text_oarchive_impl.ipp │ │ │ │ │ ├── text_wiarchive_impl.ipp │ │ │ │ │ ├── text_woarchive_impl.ipp │ │ │ │ │ ├── xml_iarchive_impl.ipp │ │ │ │ │ ├── xml_oarchive_impl.ipp │ │ │ │ │ ├── xml_wiarchive_impl.ipp │ │ │ │ │ └── xml_woarchive_impl.ipp │ │ │ │ ├── iterators │ │ │ │ │ ├── base64_from_binary.hpp │ │ │ │ │ ├── binary_from_base64.hpp │ │ │ │ │ ├── dataflow_exception.hpp │ │ │ │ │ ├── escape.hpp │ │ │ │ │ ├── insert_linebreaks.hpp │ │ │ │ │ ├── istream_iterator.hpp │ │ │ │ │ ├── mb_from_wchar.hpp │ │ │ │ │ ├── ostream_iterator.hpp │ │ │ │ │ ├── remove_whitespace.hpp │ │ │ │ │ ├── transform_width.hpp │ │ │ │ │ ├── unescape.hpp │ │ │ │ │ ├── wchar_from_mb.hpp │ │ │ │ │ ├── xml_escape.hpp │ │ │ │ │ └── xml_unescape.hpp │ │ │ │ ├── polymorphic_iarchive.hpp │ │ │ │ ├── polymorphic_oarchive.hpp │ │ │ │ ├── text_iarchive.hpp │ │ │ │ ├── text_oarchive.hpp │ │ │ │ ├── text_wiarchive.hpp │ │ │ │ ├── text_woarchive.hpp │ │ │ │ ├── wcslen.hpp │ │ │ │ ├── xml_archive_exception.hpp │ │ │ │ ├── xml_iarchive.hpp │ │ │ │ ├── xml_oarchive.hpp │ │ │ │ ├── xml_wiarchive.hpp │ │ │ │ └── xml_woarchive.hpp │ │ │ ├── array.hpp │ │ │ ├── assert.hpp │ │ │ ├── assign.hpp │ │ │ ├── assign │ │ │ │ ├── assignment_exception.hpp │ │ │ │ ├── list_inserter.hpp │ │ │ │ ├── list_of.hpp │ │ │ │ ├── ptr_list_inserter.hpp │ │ │ │ ├── ptr_list_of.hpp │ │ │ │ ├── ptr_map_inserter.hpp │ │ │ │ ├── std.hpp │ │ │ │ └── std │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── queue.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── slist.hpp │ │ │ │ │ ├── stack.hpp │ │ │ │ │ └── vector.hpp │ │ │ ├── atomic.hpp │ │ │ ├── atomic │ │ │ │ ├── atomic.hpp │ │ │ │ ├── atomic_flag.hpp │ │ │ │ ├── capabilities.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── atomic_flag.hpp │ │ │ │ │ ├── atomic_template.hpp │ │ │ │ │ ├── bitwise_cast.hpp │ │ │ │ │ ├── caps_gcc_alpha.hpp │ │ │ │ │ ├── caps_gcc_arm.hpp │ │ │ │ │ ├── caps_gcc_atomic.hpp │ │ │ │ │ ├── caps_gcc_ppc.hpp │ │ │ │ │ ├── caps_gcc_sparc.hpp │ │ │ │ │ ├── caps_gcc_sync.hpp │ │ │ │ │ ├── caps_gcc_x86.hpp │ │ │ │ │ ├── caps_linux_arm.hpp │ │ │ │ │ ├── caps_msvc_arm.hpp │ │ │ │ │ ├── caps_msvc_x86.hpp │ │ │ │ │ ├── caps_windows.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── int_sizes.hpp │ │ │ │ │ ├── interlocked.hpp │ │ │ │ │ ├── link.hpp │ │ │ │ │ ├── lockpool.hpp │ │ │ │ │ ├── operations.hpp │ │ │ │ │ ├── operations_fwd.hpp │ │ │ │ │ ├── operations_lockfree.hpp │ │ │ │ │ ├── ops_cas_based.hpp │ │ │ │ │ ├── ops_emulated.hpp │ │ │ │ │ ├── ops_extending_cas_based.hpp │ │ │ │ │ ├── ops_gcc_alpha.hpp │ │ │ │ │ ├── ops_gcc_arm.hpp │ │ │ │ │ ├── ops_gcc_atomic.hpp │ │ │ │ │ ├── ops_gcc_ppc.hpp │ │ │ │ │ ├── ops_gcc_sparc.hpp │ │ │ │ │ ├── ops_gcc_sync.hpp │ │ │ │ │ ├── ops_gcc_x86.hpp │ │ │ │ │ ├── ops_gcc_x86_dcas.hpp │ │ │ │ │ ├── ops_linux_arm.hpp │ │ │ │ │ ├── ops_msvc_arm.hpp │ │ │ │ │ ├── ops_msvc_common.hpp │ │ │ │ │ ├── ops_msvc_x86.hpp │ │ │ │ │ ├── ops_windows.hpp │ │ │ │ │ ├── pause.hpp │ │ │ │ │ ├── platform.hpp │ │ │ │ │ └── storage_type.hpp │ │ │ │ └── fences.hpp │ │ │ ├── bind.hpp │ │ │ ├── bind │ │ │ │ ├── arg.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── bind_cc.hpp │ │ │ │ ├── bind_mf2_cc.hpp │ │ │ │ ├── bind_mf_cc.hpp │ │ │ │ ├── bind_template.hpp │ │ │ │ ├── mem_fn.hpp │ │ │ │ ├── mem_fn_cc.hpp │ │ │ │ ├── mem_fn_template.hpp │ │ │ │ ├── mem_fn_vw.hpp │ │ │ │ ├── placeholders.hpp │ │ │ │ ├── protect.hpp │ │ │ │ └── storage.hpp │ │ │ ├── call_traits.hpp │ │ │ ├── cast.hpp │ │ │ ├── cerrno.hpp │ │ │ ├── checked_delete.hpp │ │ │ ├── chrono │ │ │ │ ├── ceil.hpp │ │ │ │ ├── chrono.hpp │ │ │ │ ├── clock_string.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── inlined │ │ │ │ │ │ ├── chrono.hpp │ │ │ │ │ │ ├── mac │ │ │ │ │ │ │ ├── chrono.hpp │ │ │ │ │ │ │ ├── process_cpu_clocks.hpp │ │ │ │ │ │ │ └── thread_clock.hpp │ │ │ │ │ │ ├── posix │ │ │ │ │ │ │ ├── chrono.hpp │ │ │ │ │ │ │ ├── process_cpu_clocks.hpp │ │ │ │ │ │ │ └── thread_clock.hpp │ │ │ │ │ │ ├── process_cpu_clocks.hpp │ │ │ │ │ │ ├── thread_clock.hpp │ │ │ │ │ │ └── win │ │ │ │ │ │ │ ├── chrono.hpp │ │ │ │ │ │ │ ├── process_cpu_clocks.hpp │ │ │ │ │ │ │ └── thread_clock.hpp │ │ │ │ │ ├── is_evenly_divisible_by.hpp │ │ │ │ │ ├── static_assert.hpp │ │ │ │ │ └── system.hpp │ │ │ │ ├── duration.hpp │ │ │ │ ├── process_cpu_clocks.hpp │ │ │ │ ├── system_clocks.hpp │ │ │ │ ├── thread_clock.hpp │ │ │ │ └── time_point.hpp │ │ │ ├── circular_buffer.hpp │ │ │ ├── circular_buffer │ │ │ │ ├── base.hpp │ │ │ │ ├── debug.hpp │ │ │ │ ├── details.hpp │ │ │ │ └── space_optimized.hpp │ │ │ ├── circular_buffer_fwd.hpp │ │ │ ├── compressed_pair.hpp │ │ │ ├── concept │ │ │ │ ├── assert.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── backward_compatibility.hpp │ │ │ │ │ ├── borland.hpp │ │ │ │ │ ├── concept_def.hpp │ │ │ │ │ ├── concept_undef.hpp │ │ │ │ │ ├── general.hpp │ │ │ │ │ ├── has_constraints.hpp │ │ │ │ │ └── msvc.hpp │ │ │ │ └── usage.hpp │ │ │ ├── concept_archetype.hpp │ │ │ ├── concept_check.hpp │ │ │ ├── config.hpp │ │ │ ├── config │ │ │ │ ├── abi │ │ │ │ │ ├── borland_prefix.hpp │ │ │ │ │ ├── borland_suffix.hpp │ │ │ │ │ ├── msvc_prefix.hpp │ │ │ │ │ └── msvc_suffix.hpp │ │ │ │ ├── abi_prefix.hpp │ │ │ │ ├── abi_suffix.hpp │ │ │ │ ├── auto_link.hpp │ │ │ │ ├── compiler │ │ │ │ │ ├── borland.hpp │ │ │ │ │ ├── clang.hpp │ │ │ │ │ ├── codegear.hpp │ │ │ │ │ ├── comeau.hpp │ │ │ │ │ ├── common_edg.hpp │ │ │ │ │ ├── compaq_cxx.hpp │ │ │ │ │ ├── cray.hpp │ │ │ │ │ ├── digitalmars.hpp │ │ │ │ │ ├── gcc.hpp │ │ │ │ │ ├── gcc_xml.hpp │ │ │ │ │ ├── greenhills.hpp │ │ │ │ │ ├── hp_acc.hpp │ │ │ │ │ ├── intel.hpp │ │ │ │ │ ├── kai.hpp │ │ │ │ │ ├── metrowerks.hpp │ │ │ │ │ ├── mpw.hpp │ │ │ │ │ ├── nvcc.hpp │ │ │ │ │ ├── pathscale.hpp │ │ │ │ │ ├── pgi.hpp │ │ │ │ │ ├── sgi_mipspro.hpp │ │ │ │ │ ├── sunpro_cc.hpp │ │ │ │ │ ├── vacpp.hpp │ │ │ │ │ ├── visualc.hpp │ │ │ │ │ └── xlcpp.hpp │ │ │ │ ├── no_tr1 │ │ │ │ │ ├── cmath.hpp │ │ │ │ │ ├── complex.hpp │ │ │ │ │ ├── functional.hpp │ │ │ │ │ ├── memory.hpp │ │ │ │ │ └── utility.hpp │ │ │ │ ├── platform │ │ │ │ │ ├── aix.hpp │ │ │ │ │ ├── amigaos.hpp │ │ │ │ │ ├── beos.hpp │ │ │ │ │ ├── bsd.hpp │ │ │ │ │ ├── cloudabi.hpp │ │ │ │ │ ├── cray.hpp │ │ │ │ │ ├── cygwin.hpp │ │ │ │ │ ├── haiku.hpp │ │ │ │ │ ├── hpux.hpp │ │ │ │ │ ├── irix.hpp │ │ │ │ │ ├── linux.hpp │ │ │ │ │ ├── macos.hpp │ │ │ │ │ ├── qnxnto.hpp │ │ │ │ │ ├── solaris.hpp │ │ │ │ │ ├── symbian.hpp │ │ │ │ │ ├── vms.hpp │ │ │ │ │ ├── vxworks.hpp │ │ │ │ │ └── win32.hpp │ │ │ │ ├── posix_features.hpp │ │ │ │ ├── requires_threads.hpp │ │ │ │ ├── select_compiler_config.hpp │ │ │ │ ├── select_platform_config.hpp │ │ │ │ ├── select_stdlib_config.hpp │ │ │ │ ├── stdlib │ │ │ │ │ ├── dinkumware.hpp │ │ │ │ │ ├── libcomo.hpp │ │ │ │ │ ├── libcpp.hpp │ │ │ │ │ ├── libstdcpp3.hpp │ │ │ │ │ ├── modena.hpp │ │ │ │ │ ├── msl.hpp │ │ │ │ │ ├── roguewave.hpp │ │ │ │ │ ├── sgi.hpp │ │ │ │ │ ├── stlport.hpp │ │ │ │ │ └── vacpp.hpp │ │ │ │ ├── suffix.hpp │ │ │ │ ├── user.hpp │ │ │ │ └── warning_disable.hpp │ │ │ ├── container │ │ │ │ ├── allocator_traits.hpp │ │ │ │ ├── container_fwd.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── addressof.hpp │ │ │ │ │ ├── advanced_insert_int.hpp │ │ │ │ │ ├── algorithm.hpp │ │ │ │ │ ├── alloc_helpers.hpp │ │ │ │ │ ├── allocation_type.hpp │ │ │ │ │ ├── allocator_version_traits.hpp │ │ │ │ │ ├── compare_functors.hpp │ │ │ │ │ ├── config_begin.hpp │ │ │ │ │ ├── config_end.hpp │ │ │ │ │ ├── construct_in_place.hpp │ │ │ │ │ ├── copy_move_algo.hpp │ │ │ │ │ ├── destroyers.hpp │ │ │ │ │ ├── dispatch_uses_allocator.hpp │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ ├── iterator_to_raw_pointer.hpp │ │ │ │ │ ├── iterators.hpp │ │ │ │ │ ├── min_max.hpp │ │ │ │ │ ├── minimal_char_traits_header.hpp │ │ │ │ │ ├── mpl.hpp │ │ │ │ │ ├── multiallocation_chain.hpp │ │ │ │ │ ├── next_capacity.hpp │ │ │ │ │ ├── node_alloc_holder.hpp │ │ │ │ │ ├── pair.hpp │ │ │ │ │ ├── placement_new.hpp │ │ │ │ │ ├── std_fwd.hpp │ │ │ │ │ ├── to_raw_pointer.hpp │ │ │ │ │ ├── transform_iterator.hpp │ │ │ │ │ ├── tree.hpp │ │ │ │ │ ├── type_traits.hpp │ │ │ │ │ ├── value_init.hpp │ │ │ │ │ ├── variadic_templates_tools.hpp │ │ │ │ │ ├── version_type.hpp │ │ │ │ │ └── workaround.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── new_allocator.hpp │ │ │ │ ├── node_handle.hpp │ │ │ │ ├── options.hpp │ │ │ │ ├── scoped_allocator.hpp │ │ │ │ ├── scoped_allocator_fwd.hpp │ │ │ │ ├── string.hpp │ │ │ │ ├── throw_exception.hpp │ │ │ │ ├── uses_allocator.hpp │ │ │ │ ├── uses_allocator_fwd.hpp │ │ │ │ └── vector.hpp │ │ │ ├── core │ │ │ │ ├── addressof.hpp │ │ │ │ ├── checked_delete.hpp │ │ │ │ ├── demangle.hpp │ │ │ │ ├── enable_if.hpp │ │ │ │ ├── explicit_operator_bool.hpp │ │ │ │ ├── ignore_unused.hpp │ │ │ │ ├── is_same.hpp │ │ │ │ ├── lightweight_test.hpp │ │ │ │ ├── no_exceptions_support.hpp │ │ │ │ ├── noncopyable.hpp │ │ │ │ ├── ref.hpp │ │ │ │ ├── scoped_enum.hpp │ │ │ │ ├── swap.hpp │ │ │ │ └── typeinfo.hpp │ │ │ ├── cregex.hpp │ │ │ ├── cstdint.hpp │ │ │ ├── cstdlib.hpp │ │ │ ├── current_function.hpp │ │ │ ├── date_time │ │ │ │ ├── adjust_functors.hpp │ │ │ │ ├── c_time.hpp │ │ │ │ ├── compiler_config.hpp │ │ │ │ ├── constrained_value.hpp │ │ │ │ ├── date.hpp │ │ │ │ ├── date_clock_device.hpp │ │ │ │ ├── date_defs.hpp │ │ │ │ ├── date_duration.hpp │ │ │ │ ├── date_duration_types.hpp │ │ │ │ ├── date_facet.hpp │ │ │ │ ├── date_format_simple.hpp │ │ │ │ ├── date_formatting.hpp │ │ │ │ ├── date_formatting_limited.hpp │ │ │ │ ├── date_formatting_locales.hpp │ │ │ │ ├── date_generator_formatter.hpp │ │ │ │ ├── date_generator_parser.hpp │ │ │ │ ├── date_generators.hpp │ │ │ │ ├── date_iterator.hpp │ │ │ │ ├── date_names_put.hpp │ │ │ │ ├── date_parsing.hpp │ │ │ │ ├── dst_rules.hpp │ │ │ │ ├── filetime_functions.hpp │ │ │ │ ├── format_date_parser.hpp │ │ │ │ ├── gregorian │ │ │ │ │ ├── conversion.hpp │ │ │ │ │ ├── formatters.hpp │ │ │ │ │ ├── formatters_limited.hpp │ │ │ │ │ ├── greg_calendar.hpp │ │ │ │ │ ├── greg_date.hpp │ │ │ │ │ ├── greg_day.hpp │ │ │ │ │ ├── greg_day_of_year.hpp │ │ │ │ │ ├── greg_duration.hpp │ │ │ │ │ ├── greg_duration_types.hpp │ │ │ │ │ ├── greg_facet.hpp │ │ │ │ │ ├── greg_month.hpp │ │ │ │ │ ├── greg_weekday.hpp │ │ │ │ │ ├── greg_year.hpp │ │ │ │ │ ├── greg_ymd.hpp │ │ │ │ │ ├── gregorian.hpp │ │ │ │ │ ├── gregorian_io.hpp │ │ │ │ │ ├── gregorian_types.hpp │ │ │ │ │ └── parsers.hpp │ │ │ │ ├── gregorian_calendar.hpp │ │ │ │ ├── gregorian_calendar.ipp │ │ │ │ ├── int_adapter.hpp │ │ │ │ ├── iso_format.hpp │ │ │ │ ├── locale_config.hpp │ │ │ │ ├── microsec_time_clock.hpp │ │ │ │ ├── parse_format_base.hpp │ │ │ │ ├── period.hpp │ │ │ │ ├── period_formatter.hpp │ │ │ │ ├── period_parser.hpp │ │ │ │ ├── posix_time │ │ │ │ │ ├── conversion.hpp │ │ │ │ │ ├── date_duration_operators.hpp │ │ │ │ │ ├── posix_time_config.hpp │ │ │ │ │ ├── posix_time_duration.hpp │ │ │ │ │ ├── posix_time_system.hpp │ │ │ │ │ ├── posix_time_types.hpp │ │ │ │ │ ├── ptime.hpp │ │ │ │ │ ├── time_formatters.hpp │ │ │ │ │ └── time_period.hpp │ │ │ │ ├── special_defs.hpp │ │ │ │ ├── special_values_formatter.hpp │ │ │ │ ├── special_values_parser.hpp │ │ │ │ ├── string_convert.hpp │ │ │ │ ├── string_parse_tree.hpp │ │ │ │ ├── strings_from_facet.hpp │ │ │ │ ├── time.hpp │ │ │ │ ├── time_clock.hpp │ │ │ │ ├── time_defs.hpp │ │ │ │ ├── time_duration.hpp │ │ │ │ ├── time_formatting_streams.hpp │ │ │ │ ├── time_iterator.hpp │ │ │ │ ├── time_parsing.hpp │ │ │ │ ├── time_resolution_traits.hpp │ │ │ │ ├── time_system_counted.hpp │ │ │ │ ├── time_system_split.hpp │ │ │ │ ├── wrapping_int.hpp │ │ │ │ └── year_month_day.hpp │ │ │ ├── detail │ │ │ │ ├── allocator_utilities.hpp │ │ │ │ ├── atomic_redef_macros.hpp │ │ │ │ ├── atomic_undef_macros.hpp │ │ │ │ ├── basic_pointerbuf.hpp │ │ │ │ ├── binary_search.hpp │ │ │ │ ├── bitmask.hpp │ │ │ │ ├── call_traits.hpp │ │ │ │ ├── compressed_pair.hpp │ │ │ │ ├── container_fwd.hpp │ │ │ │ ├── dynamic_bitset.hpp │ │ │ │ ├── endian.hpp │ │ │ │ ├── fenv.hpp │ │ │ │ ├── indirect_traits.hpp │ │ │ │ ├── interlocked.hpp │ │ │ │ ├── is_incrementable.hpp │ │ │ │ ├── is_xxx.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── lcast_precision.hpp │ │ │ │ ├── lightweight_mutex.hpp │ │ │ │ ├── lightweight_test.hpp │ │ │ │ ├── no_exceptions_support.hpp │ │ │ │ ├── numeric_traits.hpp │ │ │ │ ├── reference_content.hpp │ │ │ │ ├── scoped_enum_emulation.hpp │ │ │ │ ├── select_type.hpp │ │ │ │ ├── sp_typeinfo.hpp │ │ │ │ ├── utf8_codecvt_facet.hpp │ │ │ │ ├── utf8_codecvt_facet.ipp │ │ │ │ ├── winapi │ │ │ │ │ ├── basic_types.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── get_current_process.hpp │ │ │ │ │ ├── get_current_thread.hpp │ │ │ │ │ ├── get_last_error.hpp │ │ │ │ │ ├── get_process_times.hpp │ │ │ │ │ ├── get_thread_times.hpp │ │ │ │ │ ├── time.hpp │ │ │ │ │ └── timers.hpp │ │ │ │ └── workaround.hpp │ │ │ ├── dynamic_bitset.hpp │ │ │ ├── dynamic_bitset │ │ │ │ ├── config.hpp │ │ │ │ └── dynamic_bitset.hpp │ │ │ ├── dynamic_bitset_fwd.hpp │ │ │ ├── enable_shared_from_this.hpp │ │ │ ├── exception │ │ │ │ ├── all.hpp │ │ │ │ ├── current_exception_cast.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── clone_current_exception.hpp │ │ │ │ │ ├── error_info_impl.hpp │ │ │ │ │ ├── exception_ptr.hpp │ │ │ │ │ ├── is_output_streamable.hpp │ │ │ │ │ ├── object_hex_dump.hpp │ │ │ │ │ ├── shared_ptr.hpp │ │ │ │ │ └── type_info.hpp │ │ │ │ ├── diagnostic_information.hpp │ │ │ │ ├── errinfo_api_function.hpp │ │ │ │ ├── errinfo_at_line.hpp │ │ │ │ ├── errinfo_errno.hpp │ │ │ │ ├── errinfo_file_handle.hpp │ │ │ │ ├── errinfo_file_name.hpp │ │ │ │ ├── errinfo_file_open_mode.hpp │ │ │ │ ├── errinfo_nested_exception.hpp │ │ │ │ ├── errinfo_type_info_name.hpp │ │ │ │ ├── error_info.hpp │ │ │ │ ├── exception.hpp │ │ │ │ ├── get_error_info.hpp │ │ │ │ ├── info.hpp │ │ │ │ ├── info_tuple.hpp │ │ │ │ ├── to_string.hpp │ │ │ │ └── to_string_stub.hpp │ │ │ ├── exception_ptr.hpp │ │ │ ├── filesystem.hpp │ │ │ ├── filesystem │ │ │ │ ├── config.hpp │ │ │ │ ├── convenience.hpp │ │ │ │ ├── detail │ │ │ │ │ └── utf8_codecvt_facet.hpp │ │ │ │ ├── fstream.hpp │ │ │ │ ├── operations.hpp │ │ │ │ ├── path.hpp │ │ │ │ ├── path_traits.hpp │ │ │ │ └── string_file.hpp │ │ │ ├── foreach.hpp │ │ │ ├── foreach_fwd.hpp │ │ │ ├── format.hpp │ │ │ ├── format │ │ │ │ ├── alt_sstream.hpp │ │ │ │ ├── alt_sstream_impl.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── compat_workarounds.hpp │ │ │ │ │ ├── config_macros.hpp │ │ │ │ │ ├── msvc_disambiguater.hpp │ │ │ │ │ ├── unset_macros.hpp │ │ │ │ │ ├── workarounds_gcc-2_95.hpp │ │ │ │ │ └── workarounds_stlport.hpp │ │ │ │ ├── exceptions.hpp │ │ │ │ ├── feed_args.hpp │ │ │ │ ├── format_class.hpp │ │ │ │ ├── format_fwd.hpp │ │ │ │ ├── format_implementation.hpp │ │ │ │ ├── free_funcs.hpp │ │ │ │ ├── group.hpp │ │ │ │ ├── internals.hpp │ │ │ │ ├── internals_fwd.hpp │ │ │ │ └── parsing.hpp │ │ │ ├── function.hpp │ │ │ ├── function │ │ │ │ ├── detail │ │ │ │ │ ├── function_iterate.hpp │ │ │ │ │ ├── gen_maybe_include.pl │ │ │ │ │ ├── maybe_include.hpp │ │ │ │ │ └── prologue.hpp │ │ │ │ ├── function0.hpp │ │ │ │ ├── function1.hpp │ │ │ │ ├── function10.hpp │ │ │ │ ├── function2.hpp │ │ │ │ ├── function3.hpp │ │ │ │ ├── function4.hpp │ │ │ │ ├── function5.hpp │ │ │ │ ├── function6.hpp │ │ │ │ ├── function7.hpp │ │ │ │ ├── function8.hpp │ │ │ │ ├── function9.hpp │ │ │ │ ├── function_base.hpp │ │ │ │ ├── function_fwd.hpp │ │ │ │ └── function_template.hpp │ │ │ ├── function_equal.hpp │ │ │ ├── functional.hpp │ │ │ ├── functional │ │ │ │ ├── hash.hpp │ │ │ │ ├── hash │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── float_functions.hpp │ │ │ │ │ │ ├── hash_float.hpp │ │ │ │ │ │ └── limits.hpp │ │ │ │ │ ├── extensions.hpp │ │ │ │ │ ├── hash.hpp │ │ │ │ │ └── hash_fwd.hpp │ │ │ │ └── hash_fwd.hpp │ │ │ ├── get_pointer.hpp │ │ │ ├── graph │ │ │ │ ├── adjacency_iterator.hpp │ │ │ │ ├── adjacency_list.hpp │ │ │ │ ├── breadth_first_search.hpp │ │ │ │ ├── buffer_concepts.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── adj_list_edge_iterator.hpp │ │ │ │ │ ├── adjacency_list.hpp │ │ │ │ │ ├── d_ary_heap.hpp │ │ │ │ │ └── edge.hpp │ │ │ │ ├── distributed │ │ │ │ │ ├── breadth_first_search.hpp │ │ │ │ │ ├── concepts.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── filtered_queue.hpp │ │ │ │ │ │ └── queue.ipp │ │ │ │ │ ├── queue.hpp │ │ │ │ │ └── two_bit_color_map.hpp │ │ │ │ ├── graph_concepts.hpp │ │ │ │ ├── graph_mutability_traits.hpp │ │ │ │ ├── graph_selectors.hpp │ │ │ │ ├── graph_traits.hpp │ │ │ │ ├── iteration_macros.hpp │ │ │ │ ├── named_function_params.hpp │ │ │ │ ├── named_graph.hpp │ │ │ │ ├── numeric_values.hpp │ │ │ │ ├── overloading.hpp │ │ │ │ ├── parallel │ │ │ │ │ ├── algorithm.hpp │ │ │ │ │ ├── container_traits.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ └── inplace_all_to_all.hpp │ │ │ │ │ ├── process_group.hpp │ │ │ │ │ ├── properties.hpp │ │ │ │ │ └── simple_trigger.hpp │ │ │ │ ├── properties.hpp │ │ │ │ ├── property_maps │ │ │ │ │ ├── constant_property_map.hpp │ │ │ │ │ └── null_property_map.hpp │ │ │ │ ├── reverse_graph.hpp │ │ │ │ ├── two_bit_color_map.hpp │ │ │ │ └── visitors.hpp │ │ │ ├── implicit_cast.hpp │ │ │ ├── indirect_reference.hpp │ │ │ ├── integer.hpp │ │ │ ├── integer │ │ │ │ ├── common_factor_rt.hpp │ │ │ │ ├── integer_log2.hpp │ │ │ │ └── static_log2.hpp │ │ │ ├── integer_fwd.hpp │ │ │ ├── integer_traits.hpp │ │ │ ├── interprocess │ │ │ │ ├── allocators │ │ │ │ │ ├── allocator.hpp │ │ │ │ │ └── detail │ │ │ │ │ │ └── allocator_common.hpp │ │ │ │ ├── containers │ │ │ │ │ ├── allocation_type.hpp │ │ │ │ │ └── version_type.hpp │ │ │ │ ├── creation_tags.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── atomic.hpp │ │ │ │ │ ├── cast_tags.hpp │ │ │ │ │ ├── config_begin.hpp │ │ │ │ │ ├── config_end.hpp │ │ │ │ │ ├── config_external_begin.hpp │ │ │ │ │ ├── config_external_end.hpp │ │ │ │ │ ├── in_place_interface.hpp │ │ │ │ │ ├── intermodule_singleton_common.hpp │ │ │ │ │ ├── interprocess_tester.hpp │ │ │ │ │ ├── managed_memory_impl.hpp │ │ │ │ │ ├── managed_open_or_create_impl.hpp │ │ │ │ │ ├── math_functions.hpp │ │ │ │ │ ├── min_max.hpp │ │ │ │ │ ├── mpl.hpp │ │ │ │ │ ├── named_proxy.hpp │ │ │ │ │ ├── nothrow.hpp │ │ │ │ │ ├── os_file_functions.hpp │ │ │ │ │ ├── os_thread_functions.hpp │ │ │ │ │ ├── posix_time_types_wrk.hpp │ │ │ │ │ ├── segment_manager_helper.hpp │ │ │ │ │ ├── shared_dir_helpers.hpp │ │ │ │ │ ├── simple_swap.hpp │ │ │ │ │ ├── std_fwd.hpp │ │ │ │ │ ├── transform_iterator.hpp │ │ │ │ │ ├── type_traits.hpp │ │ │ │ │ ├── utilities.hpp │ │ │ │ │ ├── variadic_templates_tools.hpp │ │ │ │ │ ├── win32_api.hpp │ │ │ │ │ ├── windows_intermodule_singleton.hpp │ │ │ │ │ └── workaround.hpp │ │ │ │ ├── errors.hpp │ │ │ │ ├── exceptions.hpp │ │ │ │ ├── indexes │ │ │ │ │ └── iset_index.hpp │ │ │ │ ├── interprocess_fwd.hpp │ │ │ │ ├── managed_shared_memory.hpp │ │ │ │ ├── mapped_region.hpp │ │ │ │ ├── mem_algo │ │ │ │ │ ├── detail │ │ │ │ │ │ └── mem_algo_common.hpp │ │ │ │ │ └── rbtree_best_fit.hpp │ │ │ │ ├── offset_ptr.hpp │ │ │ │ ├── permissions.hpp │ │ │ │ ├── segment_manager.hpp │ │ │ │ ├── shared_memory_object.hpp │ │ │ │ ├── smart_ptr │ │ │ │ │ └── deleter.hpp │ │ │ │ ├── streams │ │ │ │ │ └── bufferstream.hpp │ │ │ │ └── sync │ │ │ │ │ ├── detail │ │ │ │ │ └── common_algorithms.hpp │ │ │ │ │ ├── interprocess_mutex.hpp │ │ │ │ │ ├── interprocess_recursive_mutex.hpp │ │ │ │ │ ├── lock_options.hpp │ │ │ │ │ ├── mutex_family.hpp │ │ │ │ │ ├── null_mutex.hpp │ │ │ │ │ ├── posix │ │ │ │ │ ├── mutex.hpp │ │ │ │ │ ├── pthread_helpers.hpp │ │ │ │ │ ├── ptime_to_timespec.hpp │ │ │ │ │ └── recursive_mutex.hpp │ │ │ │ │ ├── scoped_lock.hpp │ │ │ │ │ ├── spin │ │ │ │ │ ├── mutex.hpp │ │ │ │ │ ├── recursive_mutex.hpp │ │ │ │ │ └── wait.hpp │ │ │ │ │ └── windows │ │ │ │ │ ├── mutex.hpp │ │ │ │ │ ├── recursive_mutex.hpp │ │ │ │ │ ├── sync_utils.hpp │ │ │ │ │ ├── winapi_mutex_wrapper.hpp │ │ │ │ │ ├── winapi_semaphore_wrapper.hpp │ │ │ │ │ └── winapi_wrapper_common.hpp │ │ │ ├── intrusive │ │ │ │ ├── avl_set_hook.hpp │ │ │ │ ├── avltree.hpp │ │ │ │ ├── avltree_algorithms.hpp │ │ │ │ ├── bs_set_hook.hpp │ │ │ │ ├── bstree.hpp │ │ │ │ ├── bstree_algorithms.hpp │ │ │ │ ├── circular_slist_algorithms.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── algo_type.hpp │ │ │ │ │ ├── algorithm.hpp │ │ │ │ │ ├── array_initializer.hpp │ │ │ │ │ ├── assert.hpp │ │ │ │ │ ├── avltree_node.hpp │ │ │ │ │ ├── bstree_algorithms_base.hpp │ │ │ │ │ ├── common_slist_algorithms.hpp │ │ │ │ │ ├── config_begin.hpp │ │ │ │ │ ├── config_end.hpp │ │ │ │ │ ├── default_header_holder.hpp │ │ │ │ │ ├── ebo_functor_holder.hpp │ │ │ │ │ ├── empty_node_checker.hpp │ │ │ │ │ ├── equal_to_value.hpp │ │ │ │ │ ├── exception_disposer.hpp │ │ │ │ │ ├── function_detector.hpp │ │ │ │ │ ├── generic_hook.hpp │ │ │ │ │ ├── get_value_traits.hpp │ │ │ │ │ ├── has_member_function_callable_with.hpp │ │ │ │ │ ├── hook_traits.hpp │ │ │ │ │ ├── iiterator.hpp │ │ │ │ │ ├── is_stateful_value_traits.hpp │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ ├── key_nodeptr_comp.hpp │ │ │ │ │ ├── math.hpp │ │ │ │ │ ├── minimal_less_equal_header.hpp │ │ │ │ │ ├── minimal_pair_header.hpp │ │ │ │ │ ├── mpl.hpp │ │ │ │ │ ├── node_cloner_disposer.hpp │ │ │ │ │ ├── node_holder.hpp │ │ │ │ │ ├── parent_from_member.hpp │ │ │ │ │ ├── pointer_element.hpp │ │ │ │ │ ├── rbtree_node.hpp │ │ │ │ │ ├── reverse_iterator.hpp │ │ │ │ │ ├── simple_disposers.hpp │ │ │ │ │ ├── size_holder.hpp │ │ │ │ │ ├── slist_iterator.hpp │ │ │ │ │ ├── slist_node.hpp │ │ │ │ │ ├── std_fwd.hpp │ │ │ │ │ ├── to_raw_pointer.hpp │ │ │ │ │ ├── tree_iterator.hpp │ │ │ │ │ ├── tree_node.hpp │ │ │ │ │ ├── tree_value_compare.hpp │ │ │ │ │ ├── uncast.hpp │ │ │ │ │ └── workaround.hpp │ │ │ │ ├── intrusive_fwd.hpp │ │ │ │ ├── linear_slist_algorithms.hpp │ │ │ │ ├── link_mode.hpp │ │ │ │ ├── options.hpp │ │ │ │ ├── pack_options.hpp │ │ │ │ ├── parent_from_member.hpp │ │ │ │ ├── pointer_plus_bits.hpp │ │ │ │ ├── pointer_rebind.hpp │ │ │ │ ├── pointer_traits.hpp │ │ │ │ ├── rbtree.hpp │ │ │ │ ├── rbtree_algorithms.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── set_hook.hpp │ │ │ │ ├── sgtree.hpp │ │ │ │ ├── sgtree_algorithms.hpp │ │ │ │ ├── slist.hpp │ │ │ │ ├── slist_hook.hpp │ │ │ │ ├── splaytree.hpp │ │ │ │ └── splaytree_algorithms.hpp │ │ │ ├── intrusive_ptr.hpp │ │ │ ├── io │ │ │ │ ├── detail │ │ │ │ │ └── quoted_manip.hpp │ │ │ │ └── ios_state.hpp │ │ │ ├── io_fwd.hpp │ │ │ ├── is_placeholder.hpp │ │ │ ├── iterator.hpp │ │ │ ├── iterator │ │ │ │ ├── counting_iterator.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── config_def.hpp │ │ │ │ │ ├── config_undef.hpp │ │ │ │ │ ├── enable_if.hpp │ │ │ │ │ └── facade_iterator_category.hpp │ │ │ │ ├── filter_iterator.hpp │ │ │ │ ├── interoperable.hpp │ │ │ │ ├── iterator_adaptor.hpp │ │ │ │ ├── iterator_categories.hpp │ │ │ │ ├── iterator_concepts.hpp │ │ │ │ ├── iterator_facade.hpp │ │ │ │ ├── iterator_traits.hpp │ │ │ │ ├── minimum_category.hpp │ │ │ │ ├── reverse_iterator.hpp │ │ │ │ └── transform_iterator.hpp │ │ │ ├── lambda │ │ │ │ ├── core.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── actions.hpp │ │ │ │ │ ├── arity_code.hpp │ │ │ │ │ ├── function_adaptors.hpp │ │ │ │ │ ├── is_instance_of.hpp │ │ │ │ │ ├── lambda_config.hpp │ │ │ │ │ ├── lambda_functor_base.hpp │ │ │ │ │ ├── lambda_functors.hpp │ │ │ │ │ ├── lambda_fwd.hpp │ │ │ │ │ ├── lambda_traits.hpp │ │ │ │ │ ├── member_ptr.hpp │ │ │ │ │ ├── operator_actions.hpp │ │ │ │ │ ├── operator_lambda_func_base.hpp │ │ │ │ │ ├── operator_return_type_traits.hpp │ │ │ │ │ ├── operators.hpp │ │ │ │ │ ├── ret.hpp │ │ │ │ │ ├── return_type_traits.hpp │ │ │ │ │ └── select_functions.hpp │ │ │ │ └── lambda.hpp │ │ │ ├── lexical_cast.hpp │ │ │ ├── lexical_cast │ │ │ │ ├── bad_lexical_cast.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── converter_lexical.hpp │ │ │ │ │ ├── converter_lexical_streams.hpp │ │ │ │ │ ├── converter_numeric.hpp │ │ │ │ │ ├── inf_nan.hpp │ │ │ │ │ ├── is_character.hpp │ │ │ │ │ ├── lcast_char_constants.hpp │ │ │ │ │ ├── lcast_unsigned_converters.hpp │ │ │ │ │ └── widest_char.hpp │ │ │ │ └── try_lexical_convert.hpp │ │ │ ├── limits.hpp │ │ │ ├── lockfree │ │ │ │ ├── detail │ │ │ │ │ ├── atomic.hpp │ │ │ │ │ ├── copy_payload.hpp │ │ │ │ │ ├── freelist.hpp │ │ │ │ │ ├── parameter.hpp │ │ │ │ │ ├── prefix.hpp │ │ │ │ │ ├── tagged_ptr.hpp │ │ │ │ │ ├── tagged_ptr_dcas.hpp │ │ │ │ │ └── tagged_ptr_ptrcompression.hpp │ │ │ │ ├── lockfree_forward.hpp │ │ │ │ ├── policies.hpp │ │ │ │ ├── queue.hpp │ │ │ │ ├── spsc_queue.hpp │ │ │ │ └── stack.hpp │ │ │ ├── make_shared.hpp │ │ │ ├── math │ │ │ │ ├── policies │ │ │ │ │ └── policy.hpp │ │ │ │ ├── special_functions │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── fp_traits.hpp │ │ │ │ │ │ └── round_fwd.hpp │ │ │ │ │ ├── fpclassify.hpp │ │ │ │ │ ├── math_fwd.hpp │ │ │ │ │ └── sign.hpp │ │ │ │ └── tools │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── promotion.hpp │ │ │ │ │ ├── real_cast.hpp │ │ │ │ │ └── user.hpp │ │ │ ├── mem_fn.hpp │ │ │ ├── memory_order.hpp │ │ │ ├── move │ │ │ │ ├── adl_move_swap.hpp │ │ │ │ ├── algo │ │ │ │ │ └── move.hpp │ │ │ │ ├── algorithm.hpp │ │ │ │ ├── core.hpp │ │ │ │ ├── default_delete.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── config_begin.hpp │ │ │ │ │ ├── config_end.hpp │ │ │ │ │ ├── fwd_macros.hpp │ │ │ │ │ ├── iterator_traits.hpp │ │ │ │ │ ├── meta_utils.hpp │ │ │ │ │ ├── meta_utils_core.hpp │ │ │ │ │ ├── move_helpers.hpp │ │ │ │ │ ├── std_ns_begin.hpp │ │ │ │ │ ├── std_ns_end.hpp │ │ │ │ │ ├── type_traits.hpp │ │ │ │ │ ├── unique_ptr_meta_utils.hpp │ │ │ │ │ └── workaround.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── make_unique.hpp │ │ │ │ ├── move.hpp │ │ │ │ ├── traits.hpp │ │ │ │ ├── unique_ptr.hpp │ │ │ │ ├── utility.hpp │ │ │ │ └── utility_core.hpp │ │ │ ├── mpi.hpp │ │ │ ├── mpi │ │ │ │ ├── allocator.hpp │ │ │ │ ├── collectives.hpp │ │ │ │ ├── collectives │ │ │ │ │ ├── all_gather.hpp │ │ │ │ │ ├── all_reduce.hpp │ │ │ │ │ ├── all_to_all.hpp │ │ │ │ │ ├── broadcast.hpp │ │ │ │ │ ├── gather.hpp │ │ │ │ │ ├── gatherv.hpp │ │ │ │ │ ├── reduce.hpp │ │ │ │ │ ├── scan.hpp │ │ │ │ │ ├── scatter.hpp │ │ │ │ │ └── scatterv.hpp │ │ │ │ ├── collectives_fwd.hpp │ │ │ │ ├── communicator.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── datatype.hpp │ │ │ │ ├── datatype_fwd.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── binary_buffer_iprimitive.hpp │ │ │ │ │ ├── binary_buffer_oprimitive.hpp │ │ │ │ │ ├── broadcast_sc.hpp │ │ │ │ │ ├── communicator_sc.hpp │ │ │ │ │ ├── computation_tree.hpp │ │ │ │ │ ├── content_oarchive.hpp │ │ │ │ │ ├── forward_skeleton_iarchive.hpp │ │ │ │ │ ├── forward_skeleton_oarchive.hpp │ │ │ │ │ ├── ignore_iprimitive.hpp │ │ │ │ │ ├── ignore_oprimitive.hpp │ │ │ │ │ ├── ignore_skeleton_oarchive.hpp │ │ │ │ │ ├── mpi_datatype_cache.hpp │ │ │ │ │ ├── mpi_datatype_oarchive.hpp │ │ │ │ │ ├── mpi_datatype_primitive.hpp │ │ │ │ │ ├── packed_iprimitive.hpp │ │ │ │ │ ├── packed_oprimitive.hpp │ │ │ │ │ ├── point_to_point.hpp │ │ │ │ │ └── text_skeleton_oarchive.hpp │ │ │ │ ├── environment.hpp │ │ │ │ ├── exception.hpp │ │ │ │ ├── graph_communicator.hpp │ │ │ │ ├── group.hpp │ │ │ │ ├── inplace.hpp │ │ │ │ ├── intercommunicator.hpp │ │ │ │ ├── nonblocking.hpp │ │ │ │ ├── operations.hpp │ │ │ │ ├── packed_iarchive.hpp │ │ │ │ ├── packed_oarchive.hpp │ │ │ │ ├── python.hpp │ │ │ │ ├── python │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── serialize.hpp │ │ │ │ │ └── skeleton_and_content.hpp │ │ │ │ ├── request.hpp │ │ │ │ ├── skeleton_and_content.hpp │ │ │ │ ├── skeleton_and_content_fwd.hpp │ │ │ │ ├── status.hpp │ │ │ │ └── timer.hpp │ │ │ ├── mpl │ │ │ │ ├── O1_size.hpp │ │ │ │ ├── O1_size_fwd.hpp │ │ │ │ ├── advance.hpp │ │ │ │ ├── advance_fwd.hpp │ │ │ │ ├── always.hpp │ │ │ │ ├── and.hpp │ │ │ │ ├── apply.hpp │ │ │ │ ├── apply_fwd.hpp │ │ │ │ ├── apply_wrap.hpp │ │ │ │ ├── arg.hpp │ │ │ │ ├── arg_fwd.hpp │ │ │ │ ├── assert.hpp │ │ │ │ ├── at.hpp │ │ │ │ ├── at_fwd.hpp │ │ │ │ ├── aux_ │ │ │ │ │ ├── O1_size_impl.hpp │ │ │ │ │ ├── adl_barrier.hpp │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── arg_typedef.hpp │ │ │ │ │ ├── arithmetic_op.hpp │ │ │ │ │ ├── arity.hpp │ │ │ │ │ ├── arity_spec.hpp │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ ├── back_impl.hpp │ │ │ │ │ ├── begin_end_impl.hpp │ │ │ │ │ ├── clear_impl.hpp │ │ │ │ │ ├── common_name_wknd.hpp │ │ │ │ │ ├── comparison_op.hpp │ │ │ │ │ ├── config │ │ │ │ │ │ ├── adl.hpp │ │ │ │ │ │ ├── arrays.hpp │ │ │ │ │ │ ├── bcc.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── compiler.hpp │ │ │ │ │ │ ├── ctps.hpp │ │ │ │ │ │ ├── dependent_nttp.hpp │ │ │ │ │ │ ├── dmc_ambiguous_ctps.hpp │ │ │ │ │ │ ├── dtp.hpp │ │ │ │ │ │ ├── eti.hpp │ │ │ │ │ │ ├── forwarding.hpp │ │ │ │ │ │ ├── gcc.hpp │ │ │ │ │ │ ├── gpu.hpp │ │ │ │ │ │ ├── has_apply.hpp │ │ │ │ │ │ ├── has_xxx.hpp │ │ │ │ │ │ ├── integral.hpp │ │ │ │ │ │ ├── intel.hpp │ │ │ │ │ │ ├── lambda.hpp │ │ │ │ │ │ ├── msvc.hpp │ │ │ │ │ │ ├── msvc_typename.hpp │ │ │ │ │ │ ├── nttp.hpp │ │ │ │ │ │ ├── operators.hpp │ │ │ │ │ │ ├── overload_resolution.hpp │ │ │ │ │ │ ├── pp_counter.hpp │ │ │ │ │ │ ├── preprocessor.hpp │ │ │ │ │ │ ├── static_constant.hpp │ │ │ │ │ │ ├── ttp.hpp │ │ │ │ │ │ ├── typeof.hpp │ │ │ │ │ │ ├── use_preprocessed.hpp │ │ │ │ │ │ └── workaround.hpp │ │ │ │ │ ├── contains_impl.hpp │ │ │ │ │ ├── count_args.hpp │ │ │ │ │ ├── empty_impl.hpp │ │ │ │ │ ├── find_if_pred.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── fold_impl_body.hpp │ │ │ │ │ ├── front_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── has_apply.hpp │ │ │ │ │ ├── has_begin.hpp │ │ │ │ │ ├── has_key_impl.hpp │ │ │ │ │ ├── has_rebind.hpp │ │ │ │ │ ├── has_size.hpp │ │ │ │ │ ├── has_tag.hpp │ │ │ │ │ ├── has_type.hpp │ │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ │ ├── insert_impl.hpp │ │ │ │ │ ├── inserter_algorithm.hpp │ │ │ │ │ ├── integral_wrapper.hpp │ │ │ │ │ ├── is_msvc_eti_arg.hpp │ │ │ │ │ ├── iter_apply.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── joint_iter.hpp │ │ │ │ │ ├── lambda_arity_param.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── lambda_spec.hpp │ │ │ │ │ ├── lambda_support.hpp │ │ │ │ │ ├── largest_int.hpp │ │ │ │ │ ├── logical_op.hpp │ │ │ │ │ ├── msvc_dtw.hpp │ │ │ │ │ ├── msvc_eti_base.hpp │ │ │ │ │ ├── msvc_is_class.hpp │ │ │ │ │ ├── msvc_never_true.hpp │ │ │ │ │ ├── msvc_type.hpp │ │ │ │ │ ├── na.hpp │ │ │ │ │ ├── na_assert.hpp │ │ │ │ │ ├── na_fwd.hpp │ │ │ │ │ ├── na_spec.hpp │ │ │ │ │ ├── nested_type_wknd.hpp │ │ │ │ │ ├── nttp_decl.hpp │ │ │ │ │ ├── numeric_cast_utils.hpp │ │ │ │ │ ├── numeric_op.hpp │ │ │ │ │ ├── overload_names.hpp │ │ │ │ │ ├── pop_front_impl.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ ├── bcc │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── bcc551 │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── bcc_pre590 │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── dmc │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── gcc │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── msvc60 │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── msvc70 │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── mwcw │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ ├── no_ttp │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ │ └── plain │ │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── preprocessor │ │ │ │ │ │ ├── add.hpp │ │ │ │ │ │ ├── def_params_tail.hpp │ │ │ │ │ │ ├── default_params.hpp │ │ │ │ │ │ ├── enum.hpp │ │ │ │ │ │ ├── ext_params.hpp │ │ │ │ │ │ ├── filter_params.hpp │ │ │ │ │ │ ├── params.hpp │ │ │ │ │ │ ├── partial_spec_params.hpp │ │ │ │ │ │ ├── range.hpp │ │ │ │ │ │ ├── repeat.hpp │ │ │ │ │ │ ├── sub.hpp │ │ │ │ │ │ └── tuple.hpp │ │ │ │ │ ├── ptr_to_ref.hpp │ │ │ │ │ ├── push_back_impl.hpp │ │ │ │ │ ├── push_front_impl.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_fold_impl_body.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── sequence_wrapper.hpp │ │ │ │ │ ├── single_element_iter.hpp │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ ├── static_cast.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── template_arity_fwd.hpp │ │ │ │ │ ├── traits_lambda_spec.hpp │ │ │ │ │ ├── type_wrapper.hpp │ │ │ │ │ ├── unwrap.hpp │ │ │ │ │ ├── value_wknd.hpp │ │ │ │ │ └── yes_no.hpp │ │ │ │ ├── back.hpp │ │ │ │ ├── back_fwd.hpp │ │ │ │ ├── back_inserter.hpp │ │ │ │ ├── base.hpp │ │ │ │ ├── begin.hpp │ │ │ │ ├── begin_end.hpp │ │ │ │ ├── begin_end_fwd.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── bind_fwd.hpp │ │ │ │ ├── bool.hpp │ │ │ │ ├── bool_fwd.hpp │ │ │ │ ├── clear.hpp │ │ │ │ ├── clear_fwd.hpp │ │ │ │ ├── comparison.hpp │ │ │ │ ├── contains.hpp │ │ │ │ ├── contains_fwd.hpp │ │ │ │ ├── deref.hpp │ │ │ │ ├── distance.hpp │ │ │ │ ├── distance_fwd.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── empty_fwd.hpp │ │ │ │ ├── end.hpp │ │ │ │ ├── equal_to.hpp │ │ │ │ ├── erase_fwd.hpp │ │ │ │ ├── erase_key_fwd.hpp │ │ │ │ ├── eval_if.hpp │ │ │ │ ├── find.hpp │ │ │ │ ├── find_if.hpp │ │ │ │ ├── fold.hpp │ │ │ │ ├── for_each.hpp │ │ │ │ ├── front.hpp │ │ │ │ ├── front_fwd.hpp │ │ │ │ ├── front_inserter.hpp │ │ │ │ ├── greater.hpp │ │ │ │ ├── greater_equal.hpp │ │ │ │ ├── has_key.hpp │ │ │ │ ├── has_key_fwd.hpp │ │ │ │ ├── has_xxx.hpp │ │ │ │ ├── identity.hpp │ │ │ │ ├── if.hpp │ │ │ │ ├── insert.hpp │ │ │ │ ├── insert_fwd.hpp │ │ │ │ ├── insert_range_fwd.hpp │ │ │ │ ├── inserter.hpp │ │ │ │ ├── int.hpp │ │ │ │ ├── int_fwd.hpp │ │ │ │ ├── integral_c.hpp │ │ │ │ ├── integral_c_fwd.hpp │ │ │ │ ├── integral_c_tag.hpp │ │ │ │ ├── is_placeholder.hpp │ │ │ │ ├── is_sequence.hpp │ │ │ │ ├── iter_fold.hpp │ │ │ │ ├── iter_fold_if.hpp │ │ │ │ ├── iterator_category.hpp │ │ │ │ ├── iterator_range.hpp │ │ │ │ ├── iterator_tags.hpp │ │ │ │ ├── joint_view.hpp │ │ │ │ ├── key_type_fwd.hpp │ │ │ │ ├── lambda.hpp │ │ │ │ ├── lambda_fwd.hpp │ │ │ │ ├── less.hpp │ │ │ │ ├── less_equal.hpp │ │ │ │ ├── limits │ │ │ │ │ ├── arity.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── unrolling.hpp │ │ │ │ │ └── vector.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── list │ │ │ │ │ ├── aux_ │ │ │ │ │ │ ├── O1_size.hpp │ │ │ │ │ │ ├── begin_end.hpp │ │ │ │ │ │ ├── clear.hpp │ │ │ │ │ │ ├── empty.hpp │ │ │ │ │ │ ├── front.hpp │ │ │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ │ │ ├── item.hpp │ │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ │ ├── numbered.hpp │ │ │ │ │ │ ├── numbered_c.hpp │ │ │ │ │ │ ├── pop_front.hpp │ │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ │ └── plain │ │ │ │ │ │ │ │ ├── list10.hpp │ │ │ │ │ │ │ │ ├── list10_c.hpp │ │ │ │ │ │ │ │ ├── list20.hpp │ │ │ │ │ │ │ │ ├── list20_c.hpp │ │ │ │ │ │ │ │ ├── list30.hpp │ │ │ │ │ │ │ │ ├── list30_c.hpp │ │ │ │ │ │ │ │ ├── list40.hpp │ │ │ │ │ │ │ │ ├── list40_c.hpp │ │ │ │ │ │ │ │ ├── list50.hpp │ │ │ │ │ │ │ │ └── list50_c.hpp │ │ │ │ │ │ ├── push_back.hpp │ │ │ │ │ │ ├── push_front.hpp │ │ │ │ │ │ ├── size.hpp │ │ │ │ │ │ └── tag.hpp │ │ │ │ │ ├── list0.hpp │ │ │ │ │ ├── list0_c.hpp │ │ │ │ │ ├── list10.hpp │ │ │ │ │ ├── list10_c.hpp │ │ │ │ │ ├── list20.hpp │ │ │ │ │ ├── list20_c.hpp │ │ │ │ │ ├── list30.hpp │ │ │ │ │ ├── list30_c.hpp │ │ │ │ │ ├── list40.hpp │ │ │ │ │ ├── list40_c.hpp │ │ │ │ │ ├── list50.hpp │ │ │ │ │ └── list50_c.hpp │ │ │ │ ├── logical.hpp │ │ │ │ ├── long.hpp │ │ │ │ ├── long_fwd.hpp │ │ │ │ ├── min_max.hpp │ │ │ │ ├── minus.hpp │ │ │ │ ├── multiplies.hpp │ │ │ │ ├── negate.hpp │ │ │ │ ├── next.hpp │ │ │ │ ├── next_prior.hpp │ │ │ │ ├── not.hpp │ │ │ │ ├── not_equal_to.hpp │ │ │ │ ├── numeric_cast.hpp │ │ │ │ ├── or.hpp │ │ │ │ ├── pair.hpp │ │ │ │ ├── pair_view.hpp │ │ │ │ ├── placeholders.hpp │ │ │ │ ├── plus.hpp │ │ │ │ ├── pop_back_fwd.hpp │ │ │ │ ├── pop_front.hpp │ │ │ │ ├── pop_front_fwd.hpp │ │ │ │ ├── print.hpp │ │ │ │ ├── prior.hpp │ │ │ │ ├── protect.hpp │ │ │ │ ├── push_back.hpp │ │ │ │ ├── push_back_fwd.hpp │ │ │ │ ├── push_front.hpp │ │ │ │ ├── push_front_fwd.hpp │ │ │ │ ├── quote.hpp │ │ │ │ ├── remove_if.hpp │ │ │ │ ├── reverse_fold.hpp │ │ │ │ ├── reverse_iter_fold.hpp │ │ │ │ ├── same_as.hpp │ │ │ │ ├── sequence_tag.hpp │ │ │ │ ├── sequence_tag_fwd.hpp │ │ │ │ ├── set │ │ │ │ │ ├── aux_ │ │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ │ ├── begin_end_impl.hpp │ │ │ │ │ │ ├── clear_impl.hpp │ │ │ │ │ │ ├── empty_impl.hpp │ │ │ │ │ │ ├── erase_impl.hpp │ │ │ │ │ │ ├── erase_key_impl.hpp │ │ │ │ │ │ ├── has_key_impl.hpp │ │ │ │ │ │ ├── insert_impl.hpp │ │ │ │ │ │ ├── insert_range_impl.hpp │ │ │ │ │ │ ├── item.hpp │ │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ │ ├── key_type_impl.hpp │ │ │ │ │ │ ├── set0.hpp │ │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ │ ├── tag.hpp │ │ │ │ │ │ └── value_type_impl.hpp │ │ │ │ │ └── set0.hpp │ │ │ │ ├── single_view.hpp │ │ │ │ ├── size.hpp │ │ │ │ ├── size_fwd.hpp │ │ │ │ ├── size_t.hpp │ │ │ │ ├── size_t_fwd.hpp │ │ │ │ ├── tag.hpp │ │ │ │ ├── times.hpp │ │ │ │ ├── transform.hpp │ │ │ │ ├── value_type_fwd.hpp │ │ │ │ ├── vector.hpp │ │ │ │ ├── vector │ │ │ │ │ ├── aux_ │ │ │ │ │ │ ├── O1_size.hpp │ │ │ │ │ │ ├── at.hpp │ │ │ │ │ │ ├── back.hpp │ │ │ │ │ │ ├── begin_end.hpp │ │ │ │ │ │ ├── clear.hpp │ │ │ │ │ │ ├── empty.hpp │ │ │ │ │ │ ├── front.hpp │ │ │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ │ │ ├── item.hpp │ │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ │ ├── numbered.hpp │ │ │ │ │ │ ├── numbered_c.hpp │ │ │ │ │ │ ├── pop_back.hpp │ │ │ │ │ │ ├── pop_front.hpp │ │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ │ │ │ ├── plain │ │ │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ │ │ │ └── typeof_based │ │ │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ │ │ ├── push_back.hpp │ │ │ │ │ │ ├── push_front.hpp │ │ │ │ │ │ ├── size.hpp │ │ │ │ │ │ ├── tag.hpp │ │ │ │ │ │ └── vector0.hpp │ │ │ │ │ ├── vector0.hpp │ │ │ │ │ ├── vector0_c.hpp │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ └── vector50_c.hpp │ │ │ │ ├── void.hpp │ │ │ │ └── void_fwd.hpp │ │ │ ├── multi_index │ │ │ │ ├── detail │ │ │ │ │ ├── access_specifier.hpp │ │ │ │ │ ├── adl_swap.hpp │ │ │ │ │ ├── archive_constructed.hpp │ │ │ │ │ ├── auto_space.hpp │ │ │ │ │ ├── base_type.hpp │ │ │ │ │ ├── bidir_node_iterator.hpp │ │ │ │ │ ├── bucket_array.hpp │ │ │ │ │ ├── converter.hpp │ │ │ │ │ ├── copy_map.hpp │ │ │ │ │ ├── do_not_copy_elements_tag.hpp │ │ │ │ │ ├── duplicates_iterator.hpp │ │ │ │ │ ├── has_tag.hpp │ │ │ │ │ ├── hash_index_args.hpp │ │ │ │ │ ├── hash_index_iterator.hpp │ │ │ │ │ ├── hash_index_node.hpp │ │ │ │ │ ├── header_holder.hpp │ │ │ │ │ ├── index_base.hpp │ │ │ │ │ ├── index_loader.hpp │ │ │ │ │ ├── index_matcher.hpp │ │ │ │ │ ├── index_node_base.hpp │ │ │ │ │ ├── index_saver.hpp │ │ │ │ │ ├── invariant_assert.hpp │ │ │ │ │ ├── is_index_list.hpp │ │ │ │ │ ├── is_transparent.hpp │ │ │ │ │ ├── iter_adaptor.hpp │ │ │ │ │ ├── modify_key_adaptor.hpp │ │ │ │ │ ├── no_duplicate_tags.hpp │ │ │ │ │ ├── node_type.hpp │ │ │ │ │ ├── ord_index_args.hpp │ │ │ │ │ ├── ord_index_impl.hpp │ │ │ │ │ ├── ord_index_impl_fwd.hpp │ │ │ │ │ ├── ord_index_node.hpp │ │ │ │ │ ├── ord_index_ops.hpp │ │ │ │ │ ├── promotes_arg.hpp │ │ │ │ │ ├── raw_ptr.hpp │ │ │ │ │ ├── safe_mode.hpp │ │ │ │ │ ├── scope_guard.hpp │ │ │ │ │ ├── seq_index_node.hpp │ │ │ │ │ ├── seq_index_ops.hpp │ │ │ │ │ ├── serialization_version.hpp │ │ │ │ │ ├── uintptr_type.hpp │ │ │ │ │ ├── unbounded.hpp │ │ │ │ │ ├── value_compare.hpp │ │ │ │ │ └── vartempl_support.hpp │ │ │ │ ├── hashed_index.hpp │ │ │ │ ├── hashed_index_fwd.hpp │ │ │ │ ├── identity.hpp │ │ │ │ ├── identity_fwd.hpp │ │ │ │ ├── indexed_by.hpp │ │ │ │ ├── member.hpp │ │ │ │ ├── ordered_index.hpp │ │ │ │ ├── ordered_index_fwd.hpp │ │ │ │ ├── safe_mode_errors.hpp │ │ │ │ ├── sequenced_index.hpp │ │ │ │ ├── sequenced_index_fwd.hpp │ │ │ │ └── tag.hpp │ │ │ ├── multi_index_container.hpp │ │ │ ├── multi_index_container_fwd.hpp │ │ │ ├── next_prior.hpp │ │ │ ├── non_type.hpp │ │ │ ├── noncopyable.hpp │ │ │ ├── none.hpp │ │ │ ├── none_t.hpp │ │ │ ├── numeric │ │ │ │ └── conversion │ │ │ │ │ ├── bounds.hpp │ │ │ │ │ ├── cast.hpp │ │ │ │ │ ├── conversion_traits.hpp │ │ │ │ │ ├── converter.hpp │ │ │ │ │ ├── converter_policies.hpp │ │ │ │ │ ├── detail │ │ │ │ │ ├── bounds.hpp │ │ │ │ │ ├── conversion_traits.hpp │ │ │ │ │ ├── converter.hpp │ │ │ │ │ ├── int_float_mixture.hpp │ │ │ │ │ ├── is_subranged.hpp │ │ │ │ │ ├── meta.hpp │ │ │ │ │ ├── numeric_cast_traits.hpp │ │ │ │ │ ├── old_numeric_cast.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ ├── numeric_cast_traits_common.hpp │ │ │ │ │ │ └── numeric_cast_traits_long_long.hpp │ │ │ │ │ ├── sign_mixture.hpp │ │ │ │ │ └── udt_builtin_mixture.hpp │ │ │ │ │ ├── int_float_mixture_enum.hpp │ │ │ │ │ ├── numeric_cast_traits.hpp │ │ │ │ │ ├── sign_mixture_enum.hpp │ │ │ │ │ └── udt_builtin_mixture_enum.hpp │ │ │ ├── operators.hpp │ │ │ ├── optional.hpp │ │ │ ├── optional │ │ │ │ ├── bad_optional_access.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── old_optional_implementation.hpp │ │ │ │ │ ├── optional_aligned_storage.hpp │ │ │ │ │ ├── optional_config.hpp │ │ │ │ │ ├── optional_factory_support.hpp │ │ │ │ │ ├── optional_reference_spec.hpp │ │ │ │ │ ├── optional_relops.hpp │ │ │ │ │ └── optional_swap.hpp │ │ │ │ ├── optional.hpp │ │ │ │ └── optional_fwd.hpp │ │ │ ├── parameter │ │ │ │ ├── aux_ │ │ │ │ │ ├── arg_list.hpp │ │ │ │ │ ├── default.hpp │ │ │ │ │ ├── is_maybe.hpp │ │ │ │ │ ├── overloads.hpp │ │ │ │ │ ├── parameter_requirements.hpp │ │ │ │ │ ├── result_of0.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── tag.hpp │ │ │ │ │ ├── tagged_argument.hpp │ │ │ │ │ ├── template_keyword.hpp │ │ │ │ │ ├── unwrap_cv_reference.hpp │ │ │ │ │ ├── void.hpp │ │ │ │ │ └── yesno.hpp │ │ │ │ ├── binding.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── keyword.hpp │ │ │ │ ├── name.hpp │ │ │ │ ├── parameters.hpp │ │ │ │ └── value_type.hpp │ │ │ ├── pending │ │ │ │ ├── container_traits.hpp │ │ │ │ ├── detail │ │ │ │ │ └── property.hpp │ │ │ │ ├── integer_log2.hpp │ │ │ │ ├── lowest_bit.hpp │ │ │ │ ├── property.hpp │ │ │ │ └── queue.hpp │ │ │ ├── pointee.hpp │ │ │ ├── pointer_to_other.hpp │ │ │ ├── polymorphic_cast.hpp │ │ │ ├── predef.h │ │ │ ├── predef │ │ │ │ ├── architecture.h │ │ │ │ ├── architecture │ │ │ │ │ ├── alpha.h │ │ │ │ │ ├── arm.h │ │ │ │ │ ├── blackfin.h │ │ │ │ │ ├── convex.h │ │ │ │ │ ├── ia64.h │ │ │ │ │ ├── m68k.h │ │ │ │ │ ├── mips.h │ │ │ │ │ ├── parisc.h │ │ │ │ │ ├── ppc.h │ │ │ │ │ ├── pyramid.h │ │ │ │ │ ├── rs6k.h │ │ │ │ │ ├── sparc.h │ │ │ │ │ ├── superh.h │ │ │ │ │ ├── sys370.h │ │ │ │ │ ├── sys390.h │ │ │ │ │ ├── x86.h │ │ │ │ │ ├── x86 │ │ │ │ │ │ ├── 32.h │ │ │ │ │ │ └── 64.h │ │ │ │ │ └── z.h │ │ │ │ ├── compiler.h │ │ │ │ ├── compiler │ │ │ │ │ ├── borland.h │ │ │ │ │ ├── clang.h │ │ │ │ │ ├── comeau.h │ │ │ │ │ ├── compaq.h │ │ │ │ │ ├── diab.h │ │ │ │ │ ├── digitalmars.h │ │ │ │ │ ├── dignus.h │ │ │ │ │ ├── edg.h │ │ │ │ │ ├── ekopath.h │ │ │ │ │ ├── gcc.h │ │ │ │ │ ├── gcc_xml.h │ │ │ │ │ ├── greenhills.h │ │ │ │ │ ├── hp_acc.h │ │ │ │ │ ├── iar.h │ │ │ │ │ ├── ibm.h │ │ │ │ │ ├── intel.h │ │ │ │ │ ├── kai.h │ │ │ │ │ ├── llvm.h │ │ │ │ │ ├── metaware.h │ │ │ │ │ ├── metrowerks.h │ │ │ │ │ ├── microtec.h │ │ │ │ │ ├── mpw.h │ │ │ │ │ ├── palm.h │ │ │ │ │ ├── pgi.h │ │ │ │ │ ├── sgi_mipspro.h │ │ │ │ │ ├── sunpro.h │ │ │ │ │ ├── tendra.h │ │ │ │ │ ├── visualc.h │ │ │ │ │ └── watcom.h │ │ │ │ ├── detail │ │ │ │ │ ├── _cassert.h │ │ │ │ │ ├── _exception.h │ │ │ │ │ ├── comp_detected.h │ │ │ │ │ ├── endian_compat.h │ │ │ │ │ ├── os_detected.h │ │ │ │ │ ├── platform_detected.h │ │ │ │ │ └── test.h │ │ │ │ ├── hardware.h │ │ │ │ ├── hardware │ │ │ │ │ ├── simd.h │ │ │ │ │ └── simd │ │ │ │ │ │ ├── arm.h │ │ │ │ │ │ ├── arm │ │ │ │ │ │ └── versions.h │ │ │ │ │ │ ├── ppc.h │ │ │ │ │ │ ├── ppc │ │ │ │ │ │ └── versions.h │ │ │ │ │ │ ├── x86.h │ │ │ │ │ │ ├── x86 │ │ │ │ │ │ └── versions.h │ │ │ │ │ │ ├── x86_amd.h │ │ │ │ │ │ └── x86_amd │ │ │ │ │ │ └── versions.h │ │ │ │ ├── language.h │ │ │ │ ├── language │ │ │ │ │ ├── objc.h │ │ │ │ │ ├── stdc.h │ │ │ │ │ └── stdcpp.h │ │ │ │ ├── library.h │ │ │ │ ├── library │ │ │ │ │ ├── c.h │ │ │ │ │ ├── c │ │ │ │ │ │ ├── _prefix.h │ │ │ │ │ │ ├── gnu.h │ │ │ │ │ │ ├── uc.h │ │ │ │ │ │ ├── vms.h │ │ │ │ │ │ └── zos.h │ │ │ │ │ ├── std.h │ │ │ │ │ └── std │ │ │ │ │ │ ├── _prefix.h │ │ │ │ │ │ ├── cxx.h │ │ │ │ │ │ ├── dinkumware.h │ │ │ │ │ │ ├── libcomo.h │ │ │ │ │ │ ├── modena.h │ │ │ │ │ │ ├── msl.h │ │ │ │ │ │ ├── roguewave.h │ │ │ │ │ │ ├── sgi.h │ │ │ │ │ │ ├── stdcpp3.h │ │ │ │ │ │ ├── stlport.h │ │ │ │ │ │ └── vacpp.h │ │ │ │ ├── make.h │ │ │ │ ├── os.h │ │ │ │ ├── os │ │ │ │ │ ├── aix.h │ │ │ │ │ ├── amigaos.h │ │ │ │ │ ├── android.h │ │ │ │ │ ├── beos.h │ │ │ │ │ ├── bsd.h │ │ │ │ │ ├── bsd │ │ │ │ │ │ ├── bsdi.h │ │ │ │ │ │ ├── dragonfly.h │ │ │ │ │ │ ├── free.h │ │ │ │ │ │ ├── net.h │ │ │ │ │ │ └── open.h │ │ │ │ │ ├── cygwin.h │ │ │ │ │ ├── haiku.h │ │ │ │ │ ├── hpux.h │ │ │ │ │ ├── ios.h │ │ │ │ │ ├── irix.h │ │ │ │ │ ├── linux.h │ │ │ │ │ ├── macos.h │ │ │ │ │ ├── os400.h │ │ │ │ │ ├── qnxnto.h │ │ │ │ │ ├── solaris.h │ │ │ │ │ ├── unix.h │ │ │ │ │ ├── vms.h │ │ │ │ │ └── windows.h │ │ │ │ ├── other.h │ │ │ │ ├── other │ │ │ │ │ └── endian.h │ │ │ │ ├── platform.h │ │ │ │ ├── platform │ │ │ │ │ ├── mingw.h │ │ │ │ │ ├── windows_desktop.h │ │ │ │ │ ├── windows_phone.h │ │ │ │ │ ├── windows_runtime.h │ │ │ │ │ └── windows_store.h │ │ │ │ ├── version.h │ │ │ │ └── version_number.h │ │ │ ├── preprocessor.hpp │ │ │ ├── preprocessor │ │ │ │ ├── arithmetic.hpp │ │ │ │ ├── arithmetic │ │ │ │ │ ├── add.hpp │ │ │ │ │ ├── dec.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ └── div_base.hpp │ │ │ │ │ ├── div.hpp │ │ │ │ │ ├── inc.hpp │ │ │ │ │ ├── mod.hpp │ │ │ │ │ ├── mul.hpp │ │ │ │ │ └── sub.hpp │ │ │ │ ├── array.hpp │ │ │ │ ├── array │ │ │ │ │ ├── data.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ └── get_data.hpp │ │ │ │ │ ├── elem.hpp │ │ │ │ │ ├── enum.hpp │ │ │ │ │ ├── insert.hpp │ │ │ │ │ ├── pop_back.hpp │ │ │ │ │ ├── pop_front.hpp │ │ │ │ │ ├── push_back.hpp │ │ │ │ │ ├── push_front.hpp │ │ │ │ │ ├── remove.hpp │ │ │ │ │ ├── replace.hpp │ │ │ │ │ ├── reverse.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ ├── to_list.hpp │ │ │ │ │ ├── to_seq.hpp │ │ │ │ │ └── to_tuple.hpp │ │ │ │ ├── cat.hpp │ │ │ │ ├── comma_if.hpp │ │ │ │ ├── comparison.hpp │ │ │ │ ├── comparison │ │ │ │ │ ├── equal.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ └── not_equal.hpp │ │ │ │ ├── config │ │ │ │ │ ├── config.hpp │ │ │ │ │ └── limits.hpp │ │ │ │ ├── control.hpp │ │ │ │ ├── control │ │ │ │ │ ├── deduce_d.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── dmc │ │ │ │ │ │ │ └── while.hpp │ │ │ │ │ │ ├── edg │ │ │ │ │ │ │ └── while.hpp │ │ │ │ │ │ ├── msvc │ │ │ │ │ │ │ └── while.hpp │ │ │ │ │ │ └── while.hpp │ │ │ │ │ ├── expr_if.hpp │ │ │ │ │ ├── expr_iif.hpp │ │ │ │ │ ├── if.hpp │ │ │ │ │ ├── iif.hpp │ │ │ │ │ └── while.hpp │ │ │ │ ├── debug.hpp │ │ │ │ ├── debug │ │ │ │ │ ├── assert.hpp │ │ │ │ │ ├── error.hpp │ │ │ │ │ └── line.hpp │ │ │ │ ├── dec.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── auto_rec.hpp │ │ │ │ │ ├── check.hpp │ │ │ │ │ ├── dmc │ │ │ │ │ │ └── auto_rec.hpp │ │ │ │ │ ├── is_binary.hpp │ │ │ │ │ ├── is_unary.hpp │ │ │ │ │ └── split.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── enum_params.hpp │ │ │ │ ├── enum_params_with_a_default.hpp │ │ │ │ ├── enum_params_with_defaults.hpp │ │ │ │ ├── enum_shifted_params.hpp │ │ │ │ ├── expr_if.hpp │ │ │ │ ├── facilities.hpp │ │ │ │ ├── facilities │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ └── is_empty.hpp │ │ │ │ │ ├── empty.hpp │ │ │ │ │ ├── expand.hpp │ │ │ │ │ ├── identity.hpp │ │ │ │ │ ├── intercept.hpp │ │ │ │ │ ├── is_1.hpp │ │ │ │ │ ├── is_empty.hpp │ │ │ │ │ ├── is_empty_variadic.hpp │ │ │ │ │ └── overload.hpp │ │ │ │ ├── identity.hpp │ │ │ │ ├── if.hpp │ │ │ │ ├── inc.hpp │ │ │ │ ├── iterate.hpp │ │ │ │ ├── iteration.hpp │ │ │ │ ├── iteration │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── bounds │ │ │ │ │ │ │ ├── lower1.hpp │ │ │ │ │ │ │ ├── lower2.hpp │ │ │ │ │ │ │ ├── lower3.hpp │ │ │ │ │ │ │ ├── lower4.hpp │ │ │ │ │ │ │ ├── lower5.hpp │ │ │ │ │ │ │ ├── upper1.hpp │ │ │ │ │ │ │ ├── upper2.hpp │ │ │ │ │ │ │ ├── upper3.hpp │ │ │ │ │ │ │ ├── upper4.hpp │ │ │ │ │ │ │ └── upper5.hpp │ │ │ │ │ │ ├── finish.hpp │ │ │ │ │ │ ├── iter │ │ │ │ │ │ │ ├── forward1.hpp │ │ │ │ │ │ │ ├── forward2.hpp │ │ │ │ │ │ │ ├── forward3.hpp │ │ │ │ │ │ │ ├── forward4.hpp │ │ │ │ │ │ │ ├── forward5.hpp │ │ │ │ │ │ │ ├── reverse1.hpp │ │ │ │ │ │ │ ├── reverse2.hpp │ │ │ │ │ │ │ ├── reverse3.hpp │ │ │ │ │ │ │ ├── reverse4.hpp │ │ │ │ │ │ │ └── reverse5.hpp │ │ │ │ │ │ ├── local.hpp │ │ │ │ │ │ ├── rlocal.hpp │ │ │ │ │ │ ├── self.hpp │ │ │ │ │ │ └── start.hpp │ │ │ │ │ ├── iterate.hpp │ │ │ │ │ ├── local.hpp │ │ │ │ │ └── self.hpp │ │ │ │ ├── library.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── list │ │ │ │ │ ├── adt.hpp │ │ │ │ │ ├── append.hpp │ │ │ │ │ ├── at.hpp │ │ │ │ │ ├── cat.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── dmc │ │ │ │ │ │ │ └── fold_left.hpp │ │ │ │ │ │ ├── edg │ │ │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ │ │ └── fold_right.hpp │ │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ │ └── fold_right.hpp │ │ │ │ │ ├── enum.hpp │ │ │ │ │ ├── filter.hpp │ │ │ │ │ ├── first_n.hpp │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ ├── fold_right.hpp │ │ │ │ │ ├── for_each.hpp │ │ │ │ │ ├── for_each_i.hpp │ │ │ │ │ ├── for_each_product.hpp │ │ │ │ │ ├── rest_n.hpp │ │ │ │ │ ├── reverse.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ ├── to_array.hpp │ │ │ │ │ ├── to_seq.hpp │ │ │ │ │ ├── to_tuple.hpp │ │ │ │ │ └── transform.hpp │ │ │ │ ├── logical.hpp │ │ │ │ ├── logical │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitnor.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── bool.hpp │ │ │ │ │ ├── compl.hpp │ │ │ │ │ ├── nor.hpp │ │ │ │ │ ├── not.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ └── xor.hpp │ │ │ │ ├── punctuation.hpp │ │ │ │ ├── punctuation │ │ │ │ │ ├── comma.hpp │ │ │ │ │ ├── comma_if.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ └── is_begin_parens.hpp │ │ │ │ │ ├── is_begin_parens.hpp │ │ │ │ │ ├── paren.hpp │ │ │ │ │ ├── paren_if.hpp │ │ │ │ │ └── remove_parens.hpp │ │ │ │ ├── repeat.hpp │ │ │ │ ├── repeat_2nd.hpp │ │ │ │ ├── repeat_from_to.hpp │ │ │ │ ├── repetition.hpp │ │ │ │ ├── repetition │ │ │ │ │ ├── deduce_r.hpp │ │ │ │ │ ├── deduce_z.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── dmc │ │ │ │ │ │ │ └── for.hpp │ │ │ │ │ │ ├── edg │ │ │ │ │ │ │ └── for.hpp │ │ │ │ │ │ ├── for.hpp │ │ │ │ │ │ └── msvc │ │ │ │ │ │ │ └── for.hpp │ │ │ │ │ ├── enum.hpp │ │ │ │ │ ├── enum_binary_params.hpp │ │ │ │ │ ├── enum_params.hpp │ │ │ │ │ ├── enum_params_with_a_default.hpp │ │ │ │ │ ├── enum_params_with_defaults.hpp │ │ │ │ │ ├── enum_shifted.hpp │ │ │ │ │ ├── enum_shifted_binary_params.hpp │ │ │ │ │ ├── enum_shifted_params.hpp │ │ │ │ │ ├── enum_trailing.hpp │ │ │ │ │ ├── enum_trailing_binary_params.hpp │ │ │ │ │ ├── enum_trailing_params.hpp │ │ │ │ │ ├── for.hpp │ │ │ │ │ ├── repeat.hpp │ │ │ │ │ └── repeat_from_to.hpp │ │ │ │ ├── selection.hpp │ │ │ │ ├── selection │ │ │ │ │ ├── max.hpp │ │ │ │ │ └── min.hpp │ │ │ │ ├── seq.hpp │ │ │ │ ├── seq │ │ │ │ │ ├── cat.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── binary_transform.hpp │ │ │ │ │ │ ├── is_empty.hpp │ │ │ │ │ │ └── split.hpp │ │ │ │ │ ├── elem.hpp │ │ │ │ │ ├── enum.hpp │ │ │ │ │ ├── filter.hpp │ │ │ │ │ ├── first_n.hpp │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ ├── fold_right.hpp │ │ │ │ │ ├── for_each.hpp │ │ │ │ │ ├── for_each_i.hpp │ │ │ │ │ ├── for_each_product.hpp │ │ │ │ │ ├── insert.hpp │ │ │ │ │ ├── pop_back.hpp │ │ │ │ │ ├── pop_front.hpp │ │ │ │ │ ├── push_back.hpp │ │ │ │ │ ├── push_front.hpp │ │ │ │ │ ├── remove.hpp │ │ │ │ │ ├── replace.hpp │ │ │ │ │ ├── rest_n.hpp │ │ │ │ │ ├── reverse.hpp │ │ │ │ │ ├── seq.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ ├── subseq.hpp │ │ │ │ │ ├── to_array.hpp │ │ │ │ │ ├── to_list.hpp │ │ │ │ │ ├── to_tuple.hpp │ │ │ │ │ ├── transform.hpp │ │ │ │ │ └── variadic_seq_to_seq.hpp │ │ │ │ ├── slot.hpp │ │ │ │ ├── slot │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── counter.hpp │ │ │ │ │ │ ├── def.hpp │ │ │ │ │ │ ├── shared.hpp │ │ │ │ │ │ ├── slot1.hpp │ │ │ │ │ │ ├── slot2.hpp │ │ │ │ │ │ ├── slot3.hpp │ │ │ │ │ │ ├── slot4.hpp │ │ │ │ │ │ └── slot5.hpp │ │ │ │ │ └── slot.hpp │ │ │ │ ├── stringize.hpp │ │ │ │ ├── tuple.hpp │ │ │ │ ├── tuple │ │ │ │ │ ├── detail │ │ │ │ │ │ └── is_single_return.hpp │ │ │ │ │ ├── eat.hpp │ │ │ │ │ ├── elem.hpp │ │ │ │ │ ├── enum.hpp │ │ │ │ │ ├── insert.hpp │ │ │ │ │ ├── pop_back.hpp │ │ │ │ │ ├── pop_front.hpp │ │ │ │ │ ├── push_back.hpp │ │ │ │ │ ├── push_front.hpp │ │ │ │ │ ├── rem.hpp │ │ │ │ │ ├── remove.hpp │ │ │ │ │ ├── replace.hpp │ │ │ │ │ ├── reverse.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ ├── to_array.hpp │ │ │ │ │ ├── to_list.hpp │ │ │ │ │ └── to_seq.hpp │ │ │ │ ├── variadic.hpp │ │ │ │ ├── variadic │ │ │ │ │ ├── detail │ │ │ │ │ │ └── is_single_return.hpp │ │ │ │ │ ├── elem.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ ├── to_array.hpp │ │ │ │ │ ├── to_list.hpp │ │ │ │ │ ├── to_seq.hpp │ │ │ │ │ └── to_tuple.hpp │ │ │ │ └── wstringize.hpp │ │ │ ├── property_map │ │ │ │ ├── parallel │ │ │ │ │ ├── basic_reduce.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ └── untracked_pair.hpp │ │ │ │ │ ├── distributed_property_map.hpp │ │ │ │ │ ├── impl │ │ │ │ │ │ └── distributed_property_map.ipp │ │ │ │ │ ├── local_property_map.hpp │ │ │ │ │ ├── parallel_property_maps.hpp │ │ │ │ │ ├── process_group.hpp │ │ │ │ │ ├── simple_trigger.hpp │ │ │ │ │ ├── unsafe_serialize.hpp │ │ │ │ │ └── vector_property_map.hpp │ │ │ │ ├── property_map.hpp │ │ │ │ ├── shared_array_property_map.hpp │ │ │ │ └── vector_property_map.hpp │ │ │ ├── ptr_container │ │ │ │ ├── clone_allocator.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── associative_ptr_container.hpp │ │ │ │ │ ├── default_deleter.hpp │ │ │ │ │ ├── is_convertible.hpp │ │ │ │ │ ├── map_iterator.hpp │ │ │ │ │ ├── meta_functions.hpp │ │ │ │ │ ├── move.hpp │ │ │ │ │ ├── reversible_ptr_container.hpp │ │ │ │ │ ├── scoped_deleter.hpp │ │ │ │ │ ├── static_move_ptr.hpp │ │ │ │ │ ├── throw_exception.hpp │ │ │ │ │ └── void_ptr_iterator.hpp │ │ │ │ ├── exception.hpp │ │ │ │ ├── indirect_fun.hpp │ │ │ │ ├── nullable.hpp │ │ │ │ ├── ptr_array.hpp │ │ │ │ ├── ptr_circular_buffer.hpp │ │ │ │ ├── ptr_container.hpp │ │ │ │ ├── ptr_deque.hpp │ │ │ │ ├── ptr_inserter.hpp │ │ │ │ ├── ptr_list.hpp │ │ │ │ ├── ptr_map.hpp │ │ │ │ ├── ptr_map_adapter.hpp │ │ │ │ ├── ptr_sequence_adapter.hpp │ │ │ │ ├── ptr_set.hpp │ │ │ │ ├── ptr_set_adapter.hpp │ │ │ │ ├── ptr_unordered_map.hpp │ │ │ │ ├── ptr_unordered_set.hpp │ │ │ │ └── ptr_vector.hpp │ │ │ ├── python.hpp │ │ │ ├── python │ │ │ │ ├── arg_from_python.hpp │ │ │ │ ├── args.hpp │ │ │ │ ├── args_fwd.hpp │ │ │ │ ├── back_reference.hpp │ │ │ │ ├── base_type_traits.hpp │ │ │ │ ├── bases.hpp │ │ │ │ ├── borrowed.hpp │ │ │ │ ├── call.hpp │ │ │ │ ├── call_method.hpp │ │ │ │ ├── cast.hpp │ │ │ │ ├── class.hpp │ │ │ │ ├── class_fwd.hpp │ │ │ │ ├── converter │ │ │ │ │ ├── arg_from_python.hpp │ │ │ │ │ ├── arg_to_python.hpp │ │ │ │ │ ├── arg_to_python_base.hpp │ │ │ │ │ ├── as_to_python_function.hpp │ │ │ │ │ ├── builtin_converters.hpp │ │ │ │ │ ├── constructor_function.hpp │ │ │ │ │ ├── context_result_converter.hpp │ │ │ │ │ ├── convertible_function.hpp │ │ │ │ │ ├── from_python.hpp │ │ │ │ │ ├── implicit.hpp │ │ │ │ │ ├── obj_mgr_arg_from_python.hpp │ │ │ │ │ ├── object_manager.hpp │ │ │ │ │ ├── pointer_type_id.hpp │ │ │ │ │ ├── pyobject_traits.hpp │ │ │ │ │ ├── pyobject_type.hpp │ │ │ │ │ ├── pytype_function.hpp │ │ │ │ │ ├── pytype_object_mgr_traits.hpp │ │ │ │ │ ├── registered.hpp │ │ │ │ │ ├── registered_pointee.hpp │ │ │ │ │ ├── registrations.hpp │ │ │ │ │ ├── registry.hpp │ │ │ │ │ ├── return_from_python.hpp │ │ │ │ │ ├── rvalue_from_python_data.hpp │ │ │ │ │ ├── shared_ptr_deleter.hpp │ │ │ │ │ ├── shared_ptr_from_python.hpp │ │ │ │ │ ├── shared_ptr_to_python.hpp │ │ │ │ │ └── to_python_function_type.hpp │ │ │ │ ├── copy_const_reference.hpp │ │ │ │ ├── copy_non_const_reference.hpp │ │ │ │ ├── data_members.hpp │ │ │ │ ├── def.hpp │ │ │ │ ├── def_visitor.hpp │ │ │ │ ├── default_call_policies.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── borrowed_ptr.hpp │ │ │ │ │ ├── caller.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── construct.hpp │ │ │ │ │ ├── convertible.hpp │ │ │ │ │ ├── copy_ctor_mutates_rhs.hpp │ │ │ │ │ ├── cv_category.hpp │ │ │ │ │ ├── dealloc.hpp │ │ │ │ │ ├── decorated_type_id.hpp │ │ │ │ │ ├── decref_guard.hpp │ │ │ │ │ ├── def_helper.hpp │ │ │ │ │ ├── def_helper_fwd.hpp │ │ │ │ │ ├── defaults_def.hpp │ │ │ │ │ ├── defaults_gen.hpp │ │ │ │ │ ├── dependent.hpp │ │ │ │ │ ├── destroy.hpp │ │ │ │ │ ├── exception_handler.hpp │ │ │ │ │ ├── force_instantiate.hpp │ │ │ │ │ ├── indirect_traits.hpp │ │ │ │ │ ├── invoke.hpp │ │ │ │ │ ├── is_auto_ptr.hpp │ │ │ │ │ ├── is_shared_ptr.hpp │ │ │ │ │ ├── is_wrapper.hpp │ │ │ │ │ ├── is_xxx.hpp │ │ │ │ │ ├── make_keyword_range_fn.hpp │ │ │ │ │ ├── make_tuple.hpp │ │ │ │ │ ├── map_entry.hpp │ │ │ │ │ ├── mpl_lambda.hpp │ │ │ │ │ ├── msvc_typeinfo.hpp │ │ │ │ │ ├── none.hpp │ │ │ │ │ ├── not_specified.hpp │ │ │ │ │ ├── nullary_function_adaptor.hpp │ │ │ │ │ ├── operator_id.hpp │ │ │ │ │ ├── overloads_fwd.hpp │ │ │ │ │ ├── prefix.hpp │ │ │ │ │ ├── preprocessor.hpp │ │ │ │ │ ├── python22_fixed.h │ │ │ │ │ ├── python_type.hpp │ │ │ │ │ ├── raw_pyobject.hpp │ │ │ │ │ ├── referent_storage.hpp │ │ │ │ │ ├── scope.hpp │ │ │ │ │ ├── sfinae.hpp │ │ │ │ │ ├── signature.hpp │ │ │ │ │ ├── string_literal.hpp │ │ │ │ │ ├── target.hpp │ │ │ │ │ ├── translate_exception.hpp │ │ │ │ │ ├── type_list.hpp │ │ │ │ │ ├── type_list_impl.hpp │ │ │ │ │ ├── unwind_type.hpp │ │ │ │ │ ├── unwrap_type_id.hpp │ │ │ │ │ ├── unwrap_wrapper.hpp │ │ │ │ │ ├── value_arg.hpp │ │ │ │ │ ├── value_is_shared_ptr.hpp │ │ │ │ │ ├── value_is_xxx.hpp │ │ │ │ │ ├── void_ptr.hpp │ │ │ │ │ ├── void_return.hpp │ │ │ │ │ ├── wrap_python.hpp │ │ │ │ │ └── wrapper_base.hpp │ │ │ │ ├── dict.hpp │ │ │ │ ├── docstring_options.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── errors.hpp │ │ │ │ ├── exception_translator.hpp │ │ │ │ ├── exec.hpp │ │ │ │ ├── extract.hpp │ │ │ │ ├── handle.hpp │ │ │ │ ├── handle_fwd.hpp │ │ │ │ ├── has_back_reference.hpp │ │ │ │ ├── implicit.hpp │ │ │ │ ├── import.hpp │ │ │ │ ├── init.hpp │ │ │ │ ├── instance_holder.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── long.hpp │ │ │ │ ├── lvalue_from_pytype.hpp │ │ │ │ ├── make_constructor.hpp │ │ │ │ ├── make_function.hpp │ │ │ │ ├── manage_new_object.hpp │ │ │ │ ├── module.hpp │ │ │ │ ├── module_init.hpp │ │ │ │ ├── numeric.hpp │ │ │ │ ├── numpy.hpp │ │ │ │ ├── numpy │ │ │ │ │ ├── dtype.hpp │ │ │ │ │ ├── internal.hpp │ │ │ │ │ ├── invoke_matching.hpp │ │ │ │ │ ├── matrix.hpp │ │ │ │ │ ├── ndarray.hpp │ │ │ │ │ ├── numpy_object_mgr_traits.hpp │ │ │ │ │ ├── scalars.hpp │ │ │ │ │ └── ufunc.hpp │ │ │ │ ├── object.hpp │ │ │ │ ├── object │ │ │ │ │ ├── add_to_namespace.hpp │ │ │ │ │ ├── class.hpp │ │ │ │ │ ├── class_detail.hpp │ │ │ │ │ ├── class_metadata.hpp │ │ │ │ │ ├── class_wrapper.hpp │ │ │ │ │ ├── enum_base.hpp │ │ │ │ │ ├── find_instance.hpp │ │ │ │ │ ├── forward.hpp │ │ │ │ │ ├── function.hpp │ │ │ │ │ ├── function_doc_signature.hpp │ │ │ │ │ ├── function_handle.hpp │ │ │ │ │ ├── function_object.hpp │ │ │ │ │ ├── inheritance.hpp │ │ │ │ │ ├── inheritance_query.hpp │ │ │ │ │ ├── instance.hpp │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ ├── iterator_core.hpp │ │ │ │ │ ├── life_support.hpp │ │ │ │ │ ├── make_holder.hpp │ │ │ │ │ ├── make_instance.hpp │ │ │ │ │ ├── make_ptr_instance.hpp │ │ │ │ │ ├── pickle_support.hpp │ │ │ │ │ ├── pointer_holder.hpp │ │ │ │ │ ├── py_function.hpp │ │ │ │ │ ├── stl_iterator_core.hpp │ │ │ │ │ ├── value_holder.hpp │ │ │ │ │ └── value_holder_fwd.hpp │ │ │ │ ├── object_attributes.hpp │ │ │ │ ├── object_call.hpp │ │ │ │ ├── object_core.hpp │ │ │ │ ├── object_fwd.hpp │ │ │ │ ├── object_items.hpp │ │ │ │ ├── object_operators.hpp │ │ │ │ ├── object_protocol.hpp │ │ │ │ ├── object_protocol_core.hpp │ │ │ │ ├── object_slices.hpp │ │ │ │ ├── opaque_pointer_converter.hpp │ │ │ │ ├── operators.hpp │ │ │ │ ├── other.hpp │ │ │ │ ├── overloads.hpp │ │ │ │ ├── override.hpp │ │ │ │ ├── pointee.hpp │ │ │ │ ├── proxy.hpp │ │ │ │ ├── ptr.hpp │ │ │ │ ├── pure_virtual.hpp │ │ │ │ ├── raw_function.hpp │ │ │ │ ├── refcount.hpp │ │ │ │ ├── reference_existing_object.hpp │ │ │ │ ├── register_ptr_to_python.hpp │ │ │ │ ├── return_arg.hpp │ │ │ │ ├── return_by_value.hpp │ │ │ │ ├── return_internal_reference.hpp │ │ │ │ ├── return_opaque_pointer.hpp │ │ │ │ ├── return_value_policy.hpp │ │ │ │ ├── scope.hpp │ │ │ │ ├── self.hpp │ │ │ │ ├── signature.hpp │ │ │ │ ├── slice.hpp │ │ │ │ ├── slice_nil.hpp │ │ │ │ ├── ssize_t.hpp │ │ │ │ ├── stl_iterator.hpp │ │ │ │ ├── str.hpp │ │ │ │ ├── suite │ │ │ │ │ └── indexing │ │ │ │ │ │ ├── container_utils.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ └── indexing_suite_detail.hpp │ │ │ │ │ │ ├── indexing_suite.hpp │ │ │ │ │ │ └── vector_indexing_suite.hpp │ │ │ │ ├── tag.hpp │ │ │ │ ├── to_python_converter.hpp │ │ │ │ ├── to_python_indirect.hpp │ │ │ │ ├── to_python_value.hpp │ │ │ │ ├── tuple.hpp │ │ │ │ ├── type_id.hpp │ │ │ │ ├── with_custodian_and_ward.hpp │ │ │ │ └── wrapper.hpp │ │ │ ├── range │ │ │ │ ├── algorithm │ │ │ │ │ └── equal.hpp │ │ │ │ ├── as_literal.hpp │ │ │ │ ├── begin.hpp │ │ │ │ ├── concepts.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── const_iterator.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── as_literal.hpp │ │ │ │ │ ├── begin.hpp │ │ │ │ │ ├── common.hpp │ │ │ │ │ ├── detail_str.hpp │ │ │ │ │ ├── end.hpp │ │ │ │ │ ├── extract_optional_type.hpp │ │ │ │ │ ├── has_member_size.hpp │ │ │ │ │ ├── implementation_help.hpp │ │ │ │ │ ├── misc_concept.hpp │ │ │ │ │ ├── msvc_has_iterator_workaround.hpp │ │ │ │ │ ├── remove_extent.hpp │ │ │ │ │ ├── safe_bool.hpp │ │ │ │ │ ├── sfinae.hpp │ │ │ │ │ ├── size_type.hpp │ │ │ │ │ ├── str_types.hpp │ │ │ │ │ └── value_type.hpp │ │ │ │ ├── difference_type.hpp │ │ │ │ ├── distance.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── end.hpp │ │ │ │ ├── functions.hpp │ │ │ │ ├── has_range_iterator.hpp │ │ │ │ ├── irange.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── iterator_range.hpp │ │ │ │ ├── iterator_range_core.hpp │ │ │ │ ├── iterator_range_io.hpp │ │ │ │ ├── mutable_iterator.hpp │ │ │ │ ├── range_fwd.hpp │ │ │ │ ├── rbegin.hpp │ │ │ │ ├── rend.hpp │ │ │ │ ├── reverse_iterator.hpp │ │ │ │ ├── size.hpp │ │ │ │ ├── size_type.hpp │ │ │ │ └── value_type.hpp │ │ │ ├── ratio │ │ │ │ ├── config.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── mpl │ │ │ │ │ │ ├── abs.hpp │ │ │ │ │ │ ├── gcd.hpp │ │ │ │ │ │ ├── lcm.hpp │ │ │ │ │ │ └── sign.hpp │ │ │ │ │ └── overflow_helpers.hpp │ │ │ │ ├── mpl │ │ │ │ │ └── rational_c_tag.hpp │ │ │ │ ├── ratio.hpp │ │ │ │ └── ratio_fwd.hpp │ │ │ ├── rational.hpp │ │ │ ├── ref.hpp │ │ │ ├── regex.hpp │ │ │ ├── regex │ │ │ │ ├── config.hpp │ │ │ │ ├── config │ │ │ │ │ ├── borland.hpp │ │ │ │ │ └── cwchar.hpp │ │ │ │ ├── icu.hpp │ │ │ │ ├── pattern_except.hpp │ │ │ │ ├── pending │ │ │ │ │ ├── object_cache.hpp │ │ │ │ │ ├── static_mutex.hpp │ │ │ │ │ └── unicode_iterator.hpp │ │ │ │ ├── regex_traits.hpp │ │ │ │ ├── user.hpp │ │ │ │ └── v4 │ │ │ │ │ ├── basic_regex.hpp │ │ │ │ │ ├── basic_regex_creator.hpp │ │ │ │ │ ├── basic_regex_parser.hpp │ │ │ │ │ ├── c_regex_traits.hpp │ │ │ │ │ ├── char_regex_traits.hpp │ │ │ │ │ ├── cpp_regex_traits.hpp │ │ │ │ │ ├── cregex.hpp │ │ │ │ │ ├── error_type.hpp │ │ │ │ │ ├── fileiter.hpp │ │ │ │ │ ├── instances.hpp │ │ │ │ │ ├── iterator_category.hpp │ │ │ │ │ ├── iterator_traits.hpp │ │ │ │ │ ├── match_flags.hpp │ │ │ │ │ ├── match_results.hpp │ │ │ │ │ ├── mem_block_cache.hpp │ │ │ │ │ ├── perl_matcher.hpp │ │ │ │ │ ├── perl_matcher_common.hpp │ │ │ │ │ ├── perl_matcher_non_recursive.hpp │ │ │ │ │ ├── perl_matcher_recursive.hpp │ │ │ │ │ ├── primary_transform.hpp │ │ │ │ │ ├── protected_call.hpp │ │ │ │ │ ├── regbase.hpp │ │ │ │ │ ├── regex.hpp │ │ │ │ │ ├── regex_format.hpp │ │ │ │ │ ├── regex_fwd.hpp │ │ │ │ │ ├── regex_grep.hpp │ │ │ │ │ ├── regex_iterator.hpp │ │ │ │ │ ├── regex_match.hpp │ │ │ │ │ ├── regex_merge.hpp │ │ │ │ │ ├── regex_raw_buffer.hpp │ │ │ │ │ ├── regex_replace.hpp │ │ │ │ │ ├── regex_search.hpp │ │ │ │ │ ├── regex_split.hpp │ │ │ │ │ ├── regex_token_iterator.hpp │ │ │ │ │ ├── regex_traits.hpp │ │ │ │ │ ├── regex_traits_defaults.hpp │ │ │ │ │ ├── regex_workaround.hpp │ │ │ │ │ ├── states.hpp │ │ │ │ │ ├── sub_match.hpp │ │ │ │ │ ├── syntax_type.hpp │ │ │ │ │ ├── u32regex_iterator.hpp │ │ │ │ │ ├── u32regex_token_iterator.hpp │ │ │ │ │ └── w32_regex_traits.hpp │ │ │ ├── regex_fwd.hpp │ │ │ ├── scoped_array.hpp │ │ │ ├── scoped_ptr.hpp │ │ │ ├── serialization │ │ │ │ ├── access.hpp │ │ │ │ ├── array.hpp │ │ │ │ ├── assume_abstract.hpp │ │ │ │ ├── base_object.hpp │ │ │ │ ├── collection_size_type.hpp │ │ │ │ ├── collection_traits.hpp │ │ │ │ ├── collections_load_imp.hpp │ │ │ │ ├── collections_save_imp.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── get_data.hpp │ │ │ │ │ ├── is_default_constructible.hpp │ │ │ │ │ └── stack_constructor.hpp │ │ │ │ ├── extended_type_info.hpp │ │ │ │ ├── extended_type_info_no_rtti.hpp │ │ │ │ ├── extended_type_info_typeid.hpp │ │ │ │ ├── factory.hpp │ │ │ │ ├── force_include.hpp │ │ │ │ ├── is_bitwise_serializable.hpp │ │ │ │ ├── item_version_type.hpp │ │ │ │ ├── level.hpp │ │ │ │ ├── level_enum.hpp │ │ │ │ ├── nvp.hpp │ │ │ │ ├── serialization.hpp │ │ │ │ ├── singleton.hpp │ │ │ │ ├── smart_cast.hpp │ │ │ │ ├── split_free.hpp │ │ │ │ ├── split_member.hpp │ │ │ │ ├── state_saver.hpp │ │ │ │ ├── static_warning.hpp │ │ │ │ ├── string.hpp │ │ │ │ ├── strong_typedef.hpp │ │ │ │ ├── throw_exception.hpp │ │ │ │ ├── tracking.hpp │ │ │ │ ├── tracking_enum.hpp │ │ │ │ ├── traits.hpp │ │ │ │ ├── type_info_implementation.hpp │ │ │ │ ├── utility.hpp │ │ │ │ ├── vector.hpp │ │ │ │ ├── version.hpp │ │ │ │ ├── void_cast.hpp │ │ │ │ ├── void_cast_fwd.hpp │ │ │ │ └── wrapper.hpp │ │ │ ├── shared_array.hpp │ │ │ ├── shared_ptr.hpp │ │ │ ├── smart_ptr.hpp │ │ │ ├── smart_ptr │ │ │ │ ├── allocate_shared_array.hpp │ │ │ │ ├── bad_weak_ptr.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── array_allocator.hpp │ │ │ │ │ ├── array_count_impl.hpp │ │ │ │ │ ├── array_traits.hpp │ │ │ │ │ ├── array_utility.hpp │ │ │ │ │ ├── lightweight_mutex.hpp │ │ │ │ │ ├── lwm_nop.hpp │ │ │ │ │ ├── lwm_pthreads.hpp │ │ │ │ │ ├── lwm_win32_cs.hpp │ │ │ │ │ ├── operator_bool.hpp │ │ │ │ │ ├── quick_allocator.hpp │ │ │ │ │ ├── shared_count.hpp │ │ │ │ │ ├── sp_convertible.hpp │ │ │ │ │ ├── sp_counted_base.hpp │ │ │ │ │ ├── sp_counted_base_acc_ia64.hpp │ │ │ │ │ ├── sp_counted_base_aix.hpp │ │ │ │ │ ├── sp_counted_base_clang.hpp │ │ │ │ │ ├── sp_counted_base_cw_ppc.hpp │ │ │ │ │ ├── sp_counted_base_gcc_ia64.hpp │ │ │ │ │ ├── sp_counted_base_gcc_mips.hpp │ │ │ │ │ ├── sp_counted_base_gcc_ppc.hpp │ │ │ │ │ ├── sp_counted_base_gcc_sparc.hpp │ │ │ │ │ ├── sp_counted_base_gcc_x86.hpp │ │ │ │ │ ├── sp_counted_base_nt.hpp │ │ │ │ │ ├── sp_counted_base_pt.hpp │ │ │ │ │ ├── sp_counted_base_snc_ps3.hpp │ │ │ │ │ ├── sp_counted_base_spin.hpp │ │ │ │ │ ├── sp_counted_base_std_atomic.hpp │ │ │ │ │ ├── sp_counted_base_sync.hpp │ │ │ │ │ ├── sp_counted_base_vacpp_ppc.hpp │ │ │ │ │ ├── sp_counted_base_w32.hpp │ │ │ │ │ ├── sp_counted_impl.hpp │ │ │ │ │ ├── sp_disable_deprecated.hpp │ │ │ │ │ ├── sp_forward.hpp │ │ │ │ │ ├── sp_has_sync.hpp │ │ │ │ │ ├── sp_if_array.hpp │ │ │ │ │ ├── sp_interlocked.hpp │ │ │ │ │ ├── sp_nullptr_t.hpp │ │ │ │ │ ├── spinlock.hpp │ │ │ │ │ ├── spinlock_gcc_arm.hpp │ │ │ │ │ ├── spinlock_nt.hpp │ │ │ │ │ ├── spinlock_pool.hpp │ │ │ │ │ ├── spinlock_pt.hpp │ │ │ │ │ ├── spinlock_std_atomic.hpp │ │ │ │ │ ├── spinlock_sync.hpp │ │ │ │ │ ├── spinlock_w32.hpp │ │ │ │ │ └── yield_k.hpp │ │ │ │ ├── enable_shared_from_this.hpp │ │ │ │ ├── intrusive_ptr.hpp │ │ │ │ ├── make_shared.hpp │ │ │ │ ├── make_shared_array.hpp │ │ │ │ ├── make_shared_object.hpp │ │ │ │ ├── scoped_array.hpp │ │ │ │ ├── scoped_ptr.hpp │ │ │ │ ├── shared_array.hpp │ │ │ │ ├── shared_ptr.hpp │ │ │ │ └── weak_ptr.hpp │ │ │ ├── spirit │ │ │ │ ├── home │ │ │ │ │ └── classic │ │ │ │ │ │ ├── core │ │ │ │ │ │ ├── assert.hpp │ │ │ │ │ │ ├── composite │ │ │ │ │ │ │ ├── actions.hpp │ │ │ │ │ │ │ ├── alternative.hpp │ │ │ │ │ │ │ ├── composite.hpp │ │ │ │ │ │ │ ├── difference.hpp │ │ │ │ │ │ │ ├── directives.hpp │ │ │ │ │ │ │ ├── exclusive_or.hpp │ │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ │ ├── alternative.ipp │ │ │ │ │ │ │ │ ├── difference.ipp │ │ │ │ │ │ │ │ ├── directives.ipp │ │ │ │ │ │ │ │ ├── exclusive_or.ipp │ │ │ │ │ │ │ │ ├── intersection.ipp │ │ │ │ │ │ │ │ ├── kleene_star.ipp │ │ │ │ │ │ │ │ ├── list.ipp │ │ │ │ │ │ │ │ ├── optional.ipp │ │ │ │ │ │ │ │ ├── positive.ipp │ │ │ │ │ │ │ │ ├── sequence.ipp │ │ │ │ │ │ │ │ ├── sequential_and.ipp │ │ │ │ │ │ │ │ └── sequential_or.ipp │ │ │ │ │ │ │ ├── intersection.hpp │ │ │ │ │ │ │ ├── kleene_star.hpp │ │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ │ ├── operators.hpp │ │ │ │ │ │ │ ├── optional.hpp │ │ │ │ │ │ │ ├── positive.hpp │ │ │ │ │ │ │ ├── sequence.hpp │ │ │ │ │ │ │ ├── sequential_and.hpp │ │ │ │ │ │ │ └── sequential_or.hpp │ │ │ │ │ │ ├── config.hpp │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ ├── match.ipp │ │ │ │ │ │ │ ├── match_attr_traits.ipp │ │ │ │ │ │ │ └── parser.ipp │ │ │ │ │ │ ├── match.hpp │ │ │ │ │ │ ├── nil.hpp │ │ │ │ │ │ ├── non_terminal │ │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ │ └── rule.ipp │ │ │ │ │ │ │ ├── parser_context.hpp │ │ │ │ │ │ │ ├── parser_id.hpp │ │ │ │ │ │ │ └── rule.hpp │ │ │ │ │ │ ├── parser.hpp │ │ │ │ │ │ ├── primitives │ │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ │ ├── numerics.ipp │ │ │ │ │ │ │ │ └── primitives.ipp │ │ │ │ │ │ │ ├── numerics.hpp │ │ │ │ │ │ │ ├── numerics_fwd.hpp │ │ │ │ │ │ │ └── primitives.hpp │ │ │ │ │ │ ├── safe_bool.hpp │ │ │ │ │ │ └── scanner │ │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ └── skipper.ipp │ │ │ │ │ │ │ ├── scanner.hpp │ │ │ │ │ │ │ ├── scanner_fwd.hpp │ │ │ │ │ │ │ ├── skipper.hpp │ │ │ │ │ │ │ └── skipper_fwd.hpp │ │ │ │ │ │ ├── debug.hpp │ │ │ │ │ │ ├── debug │ │ │ │ │ │ ├── debug_node.hpp │ │ │ │ │ │ └── minimal.hpp │ │ │ │ │ │ ├── meta │ │ │ │ │ │ └── as_parser.hpp │ │ │ │ │ │ ├── namespace.hpp │ │ │ │ │ │ ├── utility │ │ │ │ │ │ ├── chset.hpp │ │ │ │ │ │ ├── chset_operators.hpp │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ ├── chset.ipp │ │ │ │ │ │ │ ├── chset │ │ │ │ │ │ │ ├── basic_chset.hpp │ │ │ │ │ │ │ ├── basic_chset.ipp │ │ │ │ │ │ │ ├── range_run.hpp │ │ │ │ │ │ │ └── range_run.ipp │ │ │ │ │ │ │ └── chset_operators.ipp │ │ │ │ │ │ └── version.hpp │ │ │ │ └── include │ │ │ │ │ ├── classic_actions.hpp │ │ │ │ │ ├── classic_chset.hpp │ │ │ │ │ ├── classic_numerics.hpp │ │ │ │ │ ├── classic_operators.hpp │ │ │ │ │ └── classic_rule.hpp │ │ │ ├── static_assert.hpp │ │ │ ├── swap.hpp │ │ │ ├── system │ │ │ │ ├── api_config.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── cygwin_error.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── error_code.ipp │ │ │ │ │ └── local_free_on_destruction.hpp │ │ │ │ ├── error_code.hpp │ │ │ │ ├── linux_error.hpp │ │ │ │ ├── system_error.hpp │ │ │ │ └── windows_error.hpp │ │ │ ├── test │ │ │ │ ├── debug.hpp │ │ │ │ ├── debug_config.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── enable_warnings.hpp │ │ │ │ │ ├── fwd_decl.hpp │ │ │ │ │ ├── global_typedef.hpp │ │ │ │ │ ├── log_level.hpp │ │ │ │ │ ├── pp_variadic.hpp │ │ │ │ │ ├── suppress_warnings.hpp │ │ │ │ │ ├── throw_exception.hpp │ │ │ │ │ └── workaround.hpp │ │ │ │ ├── execution_monitor.hpp │ │ │ │ ├── framework.hpp │ │ │ │ ├── impl │ │ │ │ │ ├── compiler_log_formatter.ipp │ │ │ │ │ ├── cpp_main.ipp │ │ │ │ │ ├── debug.ipp │ │ │ │ │ ├── decorator.ipp │ │ │ │ │ ├── execution_monitor.ipp │ │ │ │ │ ├── framework.ipp │ │ │ │ │ ├── junit_log_formatter.ipp │ │ │ │ │ ├── plain_report_formatter.ipp │ │ │ │ │ ├── progress_monitor.ipp │ │ │ │ │ ├── results_collector.ipp │ │ │ │ │ ├── results_reporter.ipp │ │ │ │ │ ├── test_main.ipp │ │ │ │ │ ├── test_tools.ipp │ │ │ │ │ ├── test_tree.ipp │ │ │ │ │ ├── unit_test_log.ipp │ │ │ │ │ ├── unit_test_main.ipp │ │ │ │ │ ├── unit_test_monitor.ipp │ │ │ │ │ ├── unit_test_parameters.ipp │ │ │ │ │ ├── xml_log_formatter.ipp │ │ │ │ │ └── xml_report_formatter.ipp │ │ │ │ ├── included │ │ │ │ │ └── unit_test.hpp │ │ │ │ ├── output │ │ │ │ │ ├── compiler_log_formatter.hpp │ │ │ │ │ ├── junit_log_formatter.hpp │ │ │ │ │ ├── plain_report_formatter.hpp │ │ │ │ │ ├── xml_log_formatter.hpp │ │ │ │ │ └── xml_report_formatter.hpp │ │ │ │ ├── progress_monitor.hpp │ │ │ │ ├── results_collector.hpp │ │ │ │ ├── results_reporter.hpp │ │ │ │ ├── test_tools.hpp │ │ │ │ ├── tools │ │ │ │ │ ├── assertion.hpp │ │ │ │ │ ├── assertion_result.hpp │ │ │ │ │ ├── collection_comparison_op.hpp │ │ │ │ │ ├── context.hpp │ │ │ │ │ ├── cstring_comparison_op.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── bitwise_manip.hpp │ │ │ │ │ │ ├── expression_holder.hpp │ │ │ │ │ │ ├── fwd.hpp │ │ │ │ │ │ ├── indirections.hpp │ │ │ │ │ │ ├── it_pair.hpp │ │ │ │ │ │ ├── lexicographic_manip.hpp │ │ │ │ │ │ ├── per_element_manip.hpp │ │ │ │ │ │ ├── print_helper.hpp │ │ │ │ │ │ └── tolerance_manip.hpp │ │ │ │ │ ├── floating_point_comparison.hpp │ │ │ │ │ ├── fpc_op.hpp │ │ │ │ │ ├── fpc_tolerance.hpp │ │ │ │ │ ├── interface.hpp │ │ │ │ │ ├── old │ │ │ │ │ │ ├── impl.hpp │ │ │ │ │ │ └── interface.hpp │ │ │ │ │ └── output_test_stream.hpp │ │ │ │ ├── tree │ │ │ │ │ ├── auto_registration.hpp │ │ │ │ │ ├── decorator.hpp │ │ │ │ │ ├── fixture.hpp │ │ │ │ │ ├── global_fixture.hpp │ │ │ │ │ ├── observer.hpp │ │ │ │ │ ├── test_case_counter.hpp │ │ │ │ │ ├── test_case_template.hpp │ │ │ │ │ ├── test_unit.hpp │ │ │ │ │ ├── traverse.hpp │ │ │ │ │ └── visitor.hpp │ │ │ │ ├── unit_test.hpp │ │ │ │ ├── unit_test_log.hpp │ │ │ │ ├── unit_test_log_formatter.hpp │ │ │ │ ├── unit_test_monitor.hpp │ │ │ │ ├── unit_test_parameters.hpp │ │ │ │ ├── unit_test_suite.hpp │ │ │ │ └── utils │ │ │ │ │ ├── algorithm.hpp │ │ │ │ │ ├── assign_op.hpp │ │ │ │ │ ├── basic_cstring │ │ │ │ │ ├── basic_cstring.hpp │ │ │ │ │ ├── basic_cstring_fwd.hpp │ │ │ │ │ ├── bcs_char_traits.hpp │ │ │ │ │ ├── compare.hpp │ │ │ │ │ └── io.hpp │ │ │ │ │ ├── class_properties.hpp │ │ │ │ │ ├── custom_manip.hpp │ │ │ │ │ ├── foreach.hpp │ │ │ │ │ ├── is_cstring.hpp │ │ │ │ │ ├── is_forward_iterable.hpp │ │ │ │ │ ├── iterator │ │ │ │ │ ├── input_iterator_facade.hpp │ │ │ │ │ └── token_iterator.hpp │ │ │ │ │ ├── lazy_ostream.hpp │ │ │ │ │ ├── named_params.hpp │ │ │ │ │ ├── rtti.hpp │ │ │ │ │ ├── runtime │ │ │ │ │ ├── argument.hpp │ │ │ │ │ ├── argument_factory.hpp │ │ │ │ │ ├── cla │ │ │ │ │ │ ├── argv_traverser.hpp │ │ │ │ │ │ └── parser.hpp │ │ │ │ │ ├── env │ │ │ │ │ │ └── fetch.hpp │ │ │ │ │ ├── errors.hpp │ │ │ │ │ ├── finalize.hpp │ │ │ │ │ ├── fwd.hpp │ │ │ │ │ ├── modifier.hpp │ │ │ │ │ └── parameter.hpp │ │ │ │ │ ├── setcolor.hpp │ │ │ │ │ ├── string_cast.hpp │ │ │ │ │ ├── trivial_singleton.hpp │ │ │ │ │ ├── wrap_stringstream.hpp │ │ │ │ │ └── xml_printer.hpp │ │ │ ├── thread.hpp │ │ │ ├── thread │ │ │ │ ├── barrier.hpp │ │ │ │ ├── condition_variable.hpp │ │ │ │ ├── csbl │ │ │ │ │ ├── functional.hpp │ │ │ │ │ ├── memory │ │ │ │ │ │ ├── allocator_arg.hpp │ │ │ │ │ │ ├── allocator_traits.hpp │ │ │ │ │ │ ├── config.hpp │ │ │ │ │ │ ├── pointer_traits.hpp │ │ │ │ │ │ ├── scoped_allocator.hpp │ │ │ │ │ │ ├── shared_ptr.hpp │ │ │ │ │ │ └── unique_ptr.hpp │ │ │ │ │ ├── tuple.hpp │ │ │ │ │ └── vector.hpp │ │ │ │ ├── cv_status.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── delete.hpp │ │ │ │ │ ├── invoke.hpp │ │ │ │ │ ├── invoker.hpp │ │ │ │ │ ├── is_convertible.hpp │ │ │ │ │ ├── lockable_wrapper.hpp │ │ │ │ │ ├── make_tuple_indices.hpp │ │ │ │ │ ├── memory.hpp │ │ │ │ │ ├── move.hpp │ │ │ │ │ ├── nullary_function.hpp │ │ │ │ │ ├── platform.hpp │ │ │ │ │ ├── thread.hpp │ │ │ │ │ ├── thread_group.hpp │ │ │ │ │ ├── thread_heap_alloc.hpp │ │ │ │ │ ├── thread_interruption.hpp │ │ │ │ │ ├── tss_hooks.hpp │ │ │ │ │ ├── variadic_footer.hpp │ │ │ │ │ └── variadic_header.hpp │ │ │ │ ├── exceptional_ptr.hpp │ │ │ │ ├── exceptions.hpp │ │ │ │ ├── executor.hpp │ │ │ │ ├── executors │ │ │ │ │ ├── executor.hpp │ │ │ │ │ ├── executor_adaptor.hpp │ │ │ │ │ ├── generic_executor_ref.hpp │ │ │ │ │ └── work.hpp │ │ │ │ ├── future.hpp │ │ │ │ ├── futures │ │ │ │ │ ├── future_error.hpp │ │ │ │ │ ├── future_error_code.hpp │ │ │ │ │ ├── future_status.hpp │ │ │ │ │ ├── is_future_type.hpp │ │ │ │ │ ├── launch.hpp │ │ │ │ │ ├── wait_for_all.hpp │ │ │ │ │ └── wait_for_any.hpp │ │ │ │ ├── is_locked_by_this_thread.hpp │ │ │ │ ├── lock_algorithms.hpp │ │ │ │ ├── lock_guard.hpp │ │ │ │ ├── lock_options.hpp │ │ │ │ ├── lock_types.hpp │ │ │ │ ├── lockable_traits.hpp │ │ │ │ ├── locks.hpp │ │ │ │ ├── mutex.hpp │ │ │ │ ├── once.hpp │ │ │ │ ├── pthread │ │ │ │ │ ├── condition_variable.hpp │ │ │ │ │ ├── condition_variable_fwd.hpp │ │ │ │ │ ├── mutex.hpp │ │ │ │ │ ├── once.hpp │ │ │ │ │ ├── once_atomic.hpp │ │ │ │ │ ├── pthread_mutex_scoped_lock.hpp │ │ │ │ │ ├── recursive_mutex.hpp │ │ │ │ │ ├── shared_mutex.hpp │ │ │ │ │ ├── thread_data.hpp │ │ │ │ │ ├── thread_heap_alloc.hpp │ │ │ │ │ └── timespec.hpp │ │ │ │ ├── recursive_mutex.hpp │ │ │ │ ├── shared_lock_guard.hpp │ │ │ │ ├── shared_mutex.hpp │ │ │ │ ├── thread.hpp │ │ │ │ ├── thread_only.hpp │ │ │ │ ├── thread_time.hpp │ │ │ │ ├── tss.hpp │ │ │ │ ├── v2 │ │ │ │ │ └── thread.hpp │ │ │ │ ├── win32 │ │ │ │ │ ├── basic_recursive_mutex.hpp │ │ │ │ │ ├── basic_timed_mutex.hpp │ │ │ │ │ ├── condition_variable.hpp │ │ │ │ │ ├── interlocked_read.hpp │ │ │ │ │ ├── mutex.hpp │ │ │ │ │ ├── once.hpp │ │ │ │ │ ├── recursive_mutex.hpp │ │ │ │ │ ├── shared_mutex.hpp │ │ │ │ │ ├── thread_data.hpp │ │ │ │ │ ├── thread_heap_alloc.hpp │ │ │ │ │ └── thread_primitives.hpp │ │ │ │ └── xtime.hpp │ │ │ ├── throw_exception.hpp │ │ │ ├── timer.hpp │ │ │ ├── timer │ │ │ │ ├── config.hpp │ │ │ │ └── timer.hpp │ │ │ ├── token_functions.hpp │ │ │ ├── token_iterator.hpp │ │ │ ├── tokenizer.hpp │ │ │ ├── tuple │ │ │ │ ├── detail │ │ │ │ │ └── tuple_basic.hpp │ │ │ │ ├── tuple.hpp │ │ │ │ ├── tuple_comparison.hpp │ │ │ │ └── tuple_io.hpp │ │ │ ├── type.hpp │ │ │ ├── type_index.hpp │ │ │ ├── type_index │ │ │ │ ├── ctti_type_index.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── compile_time_type_info.hpp │ │ │ │ │ ├── ctti_register_class.hpp │ │ │ │ │ └── stl_register_class.hpp │ │ │ │ ├── stl_type_index.hpp │ │ │ │ └── type_index_facade.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── type_traits │ │ │ │ ├── add_const.hpp │ │ │ │ ├── add_cv.hpp │ │ │ │ ├── add_lvalue_reference.hpp │ │ │ │ ├── add_pointer.hpp │ │ │ │ ├── add_reference.hpp │ │ │ │ ├── add_rvalue_reference.hpp │ │ │ │ ├── add_volatile.hpp │ │ │ │ ├── aligned_storage.hpp │ │ │ │ ├── alignment_of.hpp │ │ │ │ ├── alignment_traits.hpp │ │ │ │ ├── array_traits.hpp │ │ │ │ ├── common_type.hpp │ │ │ │ ├── composite_traits.hpp │ │ │ │ ├── conditional.hpp │ │ │ │ ├── conversion_traits.hpp │ │ │ │ ├── copy_cv.hpp │ │ │ │ ├── cv_traits.hpp │ │ │ │ ├── decay.hpp │ │ │ │ ├── declval.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── bool_trait_undef.hpp │ │ │ │ │ ├── common_arithmetic_type.hpp │ │ │ │ │ ├── common_type_impl.hpp │ │ │ │ │ ├── composite_member_pointer_type.hpp │ │ │ │ │ ├── composite_pointer_type.hpp │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── has_binary_operator.hpp │ │ │ │ │ ├── has_postfix_operator.hpp │ │ │ │ │ ├── has_prefix_operator.hpp │ │ │ │ │ ├── is_function_ptr_helper.hpp │ │ │ │ │ ├── is_function_ptr_tester.hpp │ │ │ │ │ ├── is_mem_fun_pointer_impl.hpp │ │ │ │ │ ├── is_mem_fun_pointer_tester.hpp │ │ │ │ │ ├── mp_defer.hpp │ │ │ │ │ └── yes_no_type.hpp │ │ │ │ ├── extent.hpp │ │ │ │ ├── floating_point_promotion.hpp │ │ │ │ ├── function_traits.hpp │ │ │ │ ├── has_bit_and.hpp │ │ │ │ ├── has_bit_and_assign.hpp │ │ │ │ ├── has_bit_or.hpp │ │ │ │ ├── has_bit_or_assign.hpp │ │ │ │ ├── has_bit_xor.hpp │ │ │ │ ├── has_bit_xor_assign.hpp │ │ │ │ ├── has_complement.hpp │ │ │ │ ├── has_dereference.hpp │ │ │ │ ├── has_divides.hpp │ │ │ │ ├── has_divides_assign.hpp │ │ │ │ ├── has_equal_to.hpp │ │ │ │ ├── has_greater.hpp │ │ │ │ ├── has_greater_equal.hpp │ │ │ │ ├── has_left_shift.hpp │ │ │ │ ├── has_left_shift_assign.hpp │ │ │ │ ├── has_less.hpp │ │ │ │ ├── has_less_equal.hpp │ │ │ │ ├── has_logical_and.hpp │ │ │ │ ├── has_logical_not.hpp │ │ │ │ ├── has_logical_or.hpp │ │ │ │ ├── has_minus.hpp │ │ │ │ ├── has_minus_assign.hpp │ │ │ │ ├── has_modulus.hpp │ │ │ │ ├── has_modulus_assign.hpp │ │ │ │ ├── has_multiplies.hpp │ │ │ │ ├── has_multiplies_assign.hpp │ │ │ │ ├── has_negate.hpp │ │ │ │ ├── has_new_operator.hpp │ │ │ │ ├── has_not_equal_to.hpp │ │ │ │ ├── has_nothrow_assign.hpp │ │ │ │ ├── has_nothrow_constructor.hpp │ │ │ │ ├── has_nothrow_copy.hpp │ │ │ │ ├── has_nothrow_destructor.hpp │ │ │ │ ├── has_plus.hpp │ │ │ │ ├── has_plus_assign.hpp │ │ │ │ ├── has_post_decrement.hpp │ │ │ │ ├── has_post_increment.hpp │ │ │ │ ├── has_pre_decrement.hpp │ │ │ │ ├── has_pre_increment.hpp │ │ │ │ ├── has_right_shift.hpp │ │ │ │ ├── has_right_shift_assign.hpp │ │ │ │ ├── has_trivial_assign.hpp │ │ │ │ ├── has_trivial_constructor.hpp │ │ │ │ ├── has_trivial_copy.hpp │ │ │ │ ├── has_trivial_destructor.hpp │ │ │ │ ├── has_trivial_move_assign.hpp │ │ │ │ ├── has_trivial_move_constructor.hpp │ │ │ │ ├── has_unary_minus.hpp │ │ │ │ ├── has_unary_plus.hpp │ │ │ │ ├── has_virtual_destructor.hpp │ │ │ │ ├── integral_constant.hpp │ │ │ │ ├── integral_promotion.hpp │ │ │ │ ├── intrinsics.hpp │ │ │ │ ├── is_abstract.hpp │ │ │ │ ├── is_arithmetic.hpp │ │ │ │ ├── is_array.hpp │ │ │ │ ├── is_assignable.hpp │ │ │ │ ├── is_base_and_derived.hpp │ │ │ │ ├── is_base_of.hpp │ │ │ │ ├── is_class.hpp │ │ │ │ ├── is_complex.hpp │ │ │ │ ├── is_compound.hpp │ │ │ │ ├── is_const.hpp │ │ │ │ ├── is_constructible.hpp │ │ │ │ ├── is_convertible.hpp │ │ │ │ ├── is_copy_assignable.hpp │ │ │ │ ├── is_copy_constructible.hpp │ │ │ │ ├── is_default_constructible.hpp │ │ │ │ ├── is_destructible.hpp │ │ │ │ ├── is_empty.hpp │ │ │ │ ├── is_enum.hpp │ │ │ │ ├── is_final.hpp │ │ │ │ ├── is_float.hpp │ │ │ │ ├── is_floating_point.hpp │ │ │ │ ├── is_function.hpp │ │ │ │ ├── is_fundamental.hpp │ │ │ │ ├── is_integral.hpp │ │ │ │ ├── is_lvalue_reference.hpp │ │ │ │ ├── is_member_function_pointer.hpp │ │ │ │ ├── is_member_object_pointer.hpp │ │ │ │ ├── is_member_pointer.hpp │ │ │ │ ├── is_nothrow_move_assignable.hpp │ │ │ │ ├── is_nothrow_move_constructible.hpp │ │ │ │ ├── is_object.hpp │ │ │ │ ├── is_pod.hpp │ │ │ │ ├── is_pointer.hpp │ │ │ │ ├── is_polymorphic.hpp │ │ │ │ ├── is_reference.hpp │ │ │ │ ├── is_rvalue_reference.hpp │ │ │ │ ├── is_same.hpp │ │ │ │ ├── is_scalar.hpp │ │ │ │ ├── is_signed.hpp │ │ │ │ ├── is_stateless.hpp │ │ │ │ ├── is_union.hpp │ │ │ │ ├── is_unsigned.hpp │ │ │ │ ├── is_virtual_base_of.hpp │ │ │ │ ├── is_void.hpp │ │ │ │ ├── is_volatile.hpp │ │ │ │ ├── make_signed.hpp │ │ │ │ ├── make_unsigned.hpp │ │ │ │ ├── object_traits.hpp │ │ │ │ ├── promote.hpp │ │ │ │ ├── rank.hpp │ │ │ │ ├── remove_all_extents.hpp │ │ │ │ ├── remove_bounds.hpp │ │ │ │ ├── remove_const.hpp │ │ │ │ ├── remove_cv.hpp │ │ │ │ ├── remove_extent.hpp │ │ │ │ ├── remove_pointer.hpp │ │ │ │ ├── remove_reference.hpp │ │ │ │ ├── remove_volatile.hpp │ │ │ │ ├── same_traits.hpp │ │ │ │ ├── transform_traits.hpp │ │ │ │ ├── type_identity.hpp │ │ │ │ └── type_with_alignment.hpp │ │ │ ├── typeof │ │ │ │ ├── dmc │ │ │ │ │ └── typeof_impl.hpp │ │ │ │ ├── encode_decode.hpp │ │ │ │ ├── encode_decode_params.hpp │ │ │ │ ├── int_encoding.hpp │ │ │ │ ├── integral_template_param.hpp │ │ │ │ ├── message.hpp │ │ │ │ ├── modifiers.hpp │ │ │ │ ├── msvc │ │ │ │ │ └── typeof_impl.hpp │ │ │ │ ├── native.hpp │ │ │ │ ├── pointers_data_members.hpp │ │ │ │ ├── register_functions.hpp │ │ │ │ ├── register_functions_iterate.hpp │ │ │ │ ├── register_fundamental.hpp │ │ │ │ ├── register_mem_functions.hpp │ │ │ │ ├── template_encoding.hpp │ │ │ │ ├── template_template_param.hpp │ │ │ │ ├── type_encoding.hpp │ │ │ │ ├── type_template_param.hpp │ │ │ │ ├── typeof.hpp │ │ │ │ ├── typeof_impl.hpp │ │ │ │ ├── unsupported.hpp │ │ │ │ ├── vector.hpp │ │ │ │ ├── vector100.hpp │ │ │ │ ├── vector150.hpp │ │ │ │ ├── vector200.hpp │ │ │ │ └── vector50.hpp │ │ │ ├── unordered │ │ │ │ ├── detail │ │ │ │ │ ├── allocate.hpp │ │ │ │ │ ├── buckets.hpp │ │ │ │ │ ├── equivalent.hpp │ │ │ │ │ ├── extract_key.hpp │ │ │ │ │ ├── fwd.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── table.hpp │ │ │ │ │ ├── unique.hpp │ │ │ │ │ └── util.hpp │ │ │ │ ├── unordered_map.hpp │ │ │ │ ├── unordered_map_fwd.hpp │ │ │ │ ├── unordered_set.hpp │ │ │ │ └── unordered_set_fwd.hpp │ │ │ ├── unordered_map.hpp │ │ │ ├── unordered_set.hpp │ │ │ ├── utility.hpp │ │ │ ├── utility │ │ │ │ ├── addressof.hpp │ │ │ │ ├── base_from_member.hpp │ │ │ │ ├── binary.hpp │ │ │ │ ├── compare_pointees.hpp │ │ │ │ ├── declval.hpp │ │ │ │ ├── detail │ │ │ │ │ └── result_of_iterate.hpp │ │ │ │ ├── enable_if.hpp │ │ │ │ ├── identity_type.hpp │ │ │ │ ├── result_of.hpp │ │ │ │ ├── swap.hpp │ │ │ │ └── value_init.hpp │ │ │ ├── version.hpp │ │ │ ├── visit_each.hpp │ │ │ └── weak_ptr.hpp │ │ └── libs │ │ │ ├── atomic │ │ │ └── src │ │ │ │ └── lockpool.cpp │ │ │ ├── chrono │ │ │ └── src │ │ │ │ ├── chrono.cpp │ │ │ │ ├── process_cpu_clocks.cpp │ │ │ │ └── thread_clock.cpp │ │ │ ├── date_time │ │ │ └── src │ │ │ │ ├── gregorian │ │ │ │ ├── date_generators.cpp │ │ │ │ ├── greg_month.cpp │ │ │ │ ├── greg_names.hpp │ │ │ │ ├── greg_weekday.cpp │ │ │ │ └── gregorian_types.cpp │ │ │ │ └── posix_time │ │ │ │ └── posix_time_types.cpp │ │ │ ├── exception │ │ │ └── src │ │ │ │ └── clone_current_exception_non_intrusive.cpp │ │ │ ├── filesystem │ │ │ └── src │ │ │ │ ├── codecvt_error_category.cpp │ │ │ │ ├── operations.cpp │ │ │ │ ├── path.cpp │ │ │ │ ├── path_traits.cpp │ │ │ │ ├── portability.cpp │ │ │ │ ├── unique_path.cpp │ │ │ │ ├── utf8_codecvt_facet.cpp │ │ │ │ ├── windows_file_codecvt.cpp │ │ │ │ └── windows_file_codecvt.hpp │ │ │ ├── python │ │ │ └── src │ │ │ │ ├── converter │ │ │ │ ├── arg_to_python_base.cpp │ │ │ │ ├── builtin_converters.cpp │ │ │ │ ├── from_python.cpp │ │ │ │ ├── registry.cpp │ │ │ │ └── type_id.cpp │ │ │ │ ├── dict.cpp │ │ │ │ ├── errors.cpp │ │ │ │ ├── exec.cpp │ │ │ │ ├── import.cpp │ │ │ │ ├── list.cpp │ │ │ │ ├── long.cpp │ │ │ │ ├── module.cpp │ │ │ │ ├── numeric.cpp │ │ │ │ ├── object │ │ │ │ ├── class.cpp │ │ │ │ ├── enum.cpp │ │ │ │ ├── function.cpp │ │ │ │ ├── function_doc_signature.cpp │ │ │ │ ├── inheritance.cpp │ │ │ │ ├── iterator.cpp │ │ │ │ ├── life_support.cpp │ │ │ │ ├── pickle_support.cpp │ │ │ │ └── stl_iterator.cpp │ │ │ │ ├── object_operators.cpp │ │ │ │ ├── object_protocol.cpp │ │ │ │ ├── slice.cpp │ │ │ │ ├── str.cpp │ │ │ │ ├── tuple.cpp │ │ │ │ └── wrapper.cpp │ │ │ ├── regex │ │ │ └── src │ │ │ │ ├── c_regex_traits.cpp │ │ │ │ ├── cpp_regex_traits.cpp │ │ │ │ ├── cregex.cpp │ │ │ │ ├── fileiter.cpp │ │ │ │ ├── icu.cpp │ │ │ │ ├── instances.cpp │ │ │ │ ├── internals.hpp │ │ │ │ ├── posix_api.cpp │ │ │ │ ├── regex.cpp │ │ │ │ ├── regex_debug.cpp │ │ │ │ ├── regex_raw_buffer.cpp │ │ │ │ ├── regex_traits_defaults.cpp │ │ │ │ ├── static_mutex.cpp │ │ │ │ ├── usinstances.cpp │ │ │ │ ├── w32_regex_traits.cpp │ │ │ │ ├── wc_regex_traits.cpp │ │ │ │ ├── wide_posix_api.cpp │ │ │ │ └── winstances.cpp │ │ │ ├── serialization │ │ │ └── src │ │ │ │ ├── archive_exception.cpp │ │ │ │ ├── basic_archive.cpp │ │ │ │ ├── basic_iarchive.cpp │ │ │ │ ├── basic_iserializer.cpp │ │ │ │ ├── basic_oarchive.cpp │ │ │ │ ├── basic_oserializer.cpp │ │ │ │ ├── basic_pointer_iserializer.cpp │ │ │ │ ├── basic_pointer_oserializer.cpp │ │ │ │ ├── basic_serializer_map.cpp │ │ │ │ ├── basic_text_iprimitive.cpp │ │ │ │ ├── basic_text_oprimitive.cpp │ │ │ │ ├── basic_text_wiprimitive.cpp │ │ │ │ ├── basic_text_woprimitive.cpp │ │ │ │ ├── basic_xml_archive.cpp │ │ │ │ ├── basic_xml_grammar.ipp │ │ │ │ ├── binary_iarchive.cpp │ │ │ │ ├── binary_oarchive.cpp │ │ │ │ ├── binary_wiarchive.cpp │ │ │ │ ├── binary_woarchive.cpp │ │ │ │ ├── codecvt_null.cpp │ │ │ │ ├── extended_type_info.cpp │ │ │ │ ├── extended_type_info_no_rtti.cpp │ │ │ │ ├── extended_type_info_typeid.cpp │ │ │ │ ├── polymorphic_iarchive.cpp │ │ │ │ ├── polymorphic_oarchive.cpp │ │ │ │ ├── singleton.cpp │ │ │ │ ├── stl_port.cpp │ │ │ │ ├── text_iarchive.cpp │ │ │ │ ├── text_oarchive.cpp │ │ │ │ ├── text_wiarchive.cpp │ │ │ │ ├── text_woarchive.cpp │ │ │ │ ├── utf8_codecvt_facet.cpp │ │ │ │ ├── void_cast.cpp │ │ │ │ ├── xml_archive_exception.cpp │ │ │ │ ├── xml_grammar.cpp │ │ │ │ ├── xml_iarchive.cpp │ │ │ │ ├── xml_oarchive.cpp │ │ │ │ ├── xml_wgrammar.cpp │ │ │ │ └── xml_wiarchive.cpp │ │ │ ├── smart_ptr │ │ │ └── src │ │ │ │ ├── sp_collector.cpp │ │ │ │ └── sp_debug_hooks.cpp │ │ │ ├── system │ │ │ └── src │ │ │ │ └── error_code.cpp │ │ │ ├── thread │ │ │ └── src │ │ │ │ ├── future.cpp │ │ │ │ ├── pthread │ │ │ │ ├── once.cpp │ │ │ │ ├── once_atomic.cpp │ │ │ │ └── thread.cpp │ │ │ │ ├── tss_null.cpp │ │ │ │ └── win32 │ │ │ │ ├── thread.cpp │ │ │ │ ├── tss_dll.cpp │ │ │ │ └── tss_pe.cpp │ │ │ └── timer │ │ │ └── src │ │ │ ├── auto_timers_construction.cpp │ │ │ └── cpu_timer.cpp │ ├── CMakeLists.txt │ ├── llvm │ │ └── include │ │ │ └── clang-c │ │ │ ├── BuildSystem.h │ │ │ ├── CXCompilationDatabase.h │ │ │ ├── CXErrorCode.h │ │ │ ├── CXString.h │ │ │ ├── Documentation.h │ │ │ ├── Index.h │ │ │ ├── Platform.h │ │ │ └── module.modulemap │ └── ycm │ │ ├── .ycm_extra_conf.py │ │ ├── CMakeLists.txt │ │ ├── Candidate.cpp │ │ ├── Candidate.h │ │ ├── CandidateRepository.cpp │ │ ├── CandidateRepository.h │ │ ├── ClangCompleter │ │ ├── ClangCompleter.cpp │ │ ├── ClangCompleter.h │ │ ├── ClangHelpers.cpp │ │ ├── ClangHelpers.h │ │ ├── ClangUtils.cpp │ │ ├── ClangUtils.h │ │ ├── CompilationDatabase.cpp │ │ ├── CompilationDatabase.h │ │ ├── CompletionData.cpp │ │ ├── CompletionData.h │ │ ├── Diagnostic.h │ │ ├── Documentation.cpp │ │ ├── Documentation.h │ │ ├── Location.h │ │ ├── Range.cpp │ │ ├── Range.h │ │ ├── TranslationUnit.cpp │ │ ├── TranslationUnit.h │ │ ├── TranslationUnitStore.cpp │ │ ├── TranslationUnitStore.h │ │ └── UnsavedFile.h │ │ ├── DLLDefines.h │ │ ├── IdentifierCompleter.cpp │ │ ├── IdentifierCompleter.h │ │ ├── IdentifierDatabase.cpp │ │ ├── IdentifierDatabase.h │ │ ├── IdentifierUtils.cpp │ │ ├── IdentifierUtils.h │ │ ├── LetterNode.cpp │ │ ├── LetterNode.h │ │ ├── LetterNodeListMap.cpp │ │ ├── LetterNodeListMap.h │ │ ├── PythonSupport.cpp │ │ ├── PythonSupport.h │ │ ├── ReleaseGil.h │ │ ├── Result.cpp │ │ ├── Result.h │ │ ├── Utils.cpp │ │ ├── Utils.h │ │ ├── exceptions.h │ │ ├── standard.h │ │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── CandidateRepository_test.cpp │ │ ├── Candidate_test.cpp │ │ ├── ClangCompleter │ │ │ ├── ClangCompleter_test.cpp │ │ │ └── TranslationUnit_test.cpp │ │ ├── IdentifierCompleter_test.cpp │ │ ├── IdentifierUtils_test.cpp │ │ ├── IndexForLetter_test.cpp │ │ ├── IsUppercase_test.cpp │ │ ├── LetterBitsetFromString_test.cpp │ │ ├── LetterNode_test.cpp │ │ ├── TestUtils.cpp │ │ ├── TestUtils.h │ │ ├── cmake │ │ │ └── FindGMock.cmake │ │ ├── gmock │ │ │ ├── CHANGES │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── configure.ac │ │ │ ├── gtest │ │ │ │ ├── CHANGES │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile.am │ │ │ │ ├── README │ │ │ │ ├── cmake │ │ │ │ │ └── internal_utils.cmake │ │ │ │ ├── codegear │ │ │ │ │ ├── gtest.cbproj │ │ │ │ │ ├── gtest.groupproj │ │ │ │ │ ├── gtest_all.cc │ │ │ │ │ ├── gtest_link.cc │ │ │ │ │ ├── gtest_main.cbproj │ │ │ │ │ └── gtest_unittest.cbproj │ │ │ │ ├── configure.ac │ │ │ │ ├── include │ │ │ │ │ └── gtest │ │ │ │ │ │ ├── gtest-death-test.h │ │ │ │ │ │ ├── gtest-message.h │ │ │ │ │ │ ├── gtest-param-test.h │ │ │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ │ ├── gtest-spi.h │ │ │ │ │ │ ├── gtest-test-part.h │ │ │ │ │ │ ├── gtest-typed-test.h │ │ │ │ │ │ ├── gtest.h │ │ │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ │ │ ├── gtest_prod.h │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ │ │ ├── gtest-filepath.h │ │ │ │ │ │ ├── gtest-internal.h │ │ │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ │ │ ├── gtest-param-util.h │ │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ │ ├── gtest-string.h │ │ │ │ │ │ ├── gtest-tuple.h │ │ │ │ │ │ ├── gtest-tuple.h.pump │ │ │ │ │ │ ├── gtest-type-util.h │ │ │ │ │ │ └── gtest-type-util.h.pump │ │ │ │ ├── m4 │ │ │ │ │ ├── acx_pthread.m4 │ │ │ │ │ └── gtest.m4 │ │ │ │ ├── msvc │ │ │ │ │ ├── gtest-md.sln │ │ │ │ │ ├── gtest-md.vcproj │ │ │ │ │ ├── gtest.sln │ │ │ │ │ ├── gtest.vcproj │ │ │ │ │ ├── gtest_main-md.vcproj │ │ │ │ │ ├── gtest_main.vcproj │ │ │ │ │ ├── gtest_prod_test-md.vcproj │ │ │ │ │ ├── gtest_prod_test.vcproj │ │ │ │ │ ├── gtest_unittest-md.vcproj │ │ │ │ │ └── gtest_unittest.vcproj │ │ │ │ ├── samples │ │ │ │ │ ├── prime_tables.h │ │ │ │ │ ├── sample1.cc │ │ │ │ │ ├── sample1.h │ │ │ │ │ ├── sample10_unittest.cc │ │ │ │ │ ├── sample1_unittest.cc │ │ │ │ │ ├── sample2.cc │ │ │ │ │ ├── sample2.h │ │ │ │ │ ├── sample2_unittest.cc │ │ │ │ │ ├── sample3-inl.h │ │ │ │ │ ├── sample3_unittest.cc │ │ │ │ │ ├── sample4.cc │ │ │ │ │ ├── sample4.h │ │ │ │ │ ├── sample4_unittest.cc │ │ │ │ │ ├── sample5_unittest.cc │ │ │ │ │ ├── sample6_unittest.cc │ │ │ │ │ ├── sample7_unittest.cc │ │ │ │ │ ├── sample8_unittest.cc │ │ │ │ │ └── sample9_unittest.cc │ │ │ │ ├── scripts │ │ │ │ │ ├── common.py │ │ │ │ │ ├── fuse_gtest_files.py │ │ │ │ │ ├── gen_gtest_pred_impl.py │ │ │ │ │ ├── gtest-config.in │ │ │ │ │ ├── pump.py │ │ │ │ │ ├── release_docs.py │ │ │ │ │ ├── upload.py │ │ │ │ │ └── upload_gtest.py │ │ │ │ ├── src │ │ │ │ │ ├── gtest-all.cc │ │ │ │ │ ├── gtest-death-test.cc │ │ │ │ │ ├── gtest-filepath.cc │ │ │ │ │ ├── gtest-internal-inl.h │ │ │ │ │ ├── gtest-port.cc │ │ │ │ │ ├── gtest-printers.cc │ │ │ │ │ ├── gtest-test-part.cc │ │ │ │ │ ├── gtest-typed-test.cc │ │ │ │ │ ├── gtest.cc │ │ │ │ │ └── gtest_main.cc │ │ │ │ ├── test │ │ │ │ │ ├── gtest-death-test_ex_test.cc │ │ │ │ │ ├── gtest-death-test_test.cc │ │ │ │ │ ├── gtest-filepath_test.cc │ │ │ │ │ ├── gtest-linked_ptr_test.cc │ │ │ │ │ ├── gtest-listener_test.cc │ │ │ │ │ ├── gtest-message_test.cc │ │ │ │ │ ├── gtest-options_test.cc │ │ │ │ │ ├── gtest-param-test2_test.cc │ │ │ │ │ ├── gtest-param-test_test.cc │ │ │ │ │ ├── gtest-param-test_test.h │ │ │ │ │ ├── gtest-port_test.cc │ │ │ │ │ ├── gtest-printers_test.cc │ │ │ │ │ ├── gtest-test-part_test.cc │ │ │ │ │ ├── gtest-tuple_test.cc │ │ │ │ │ ├── gtest-typed-test2_test.cc │ │ │ │ │ ├── gtest-typed-test_test.cc │ │ │ │ │ ├── gtest-typed-test_test.h │ │ │ │ │ ├── gtest-unittest-api_test.cc │ │ │ │ │ ├── gtest_all_test.cc │ │ │ │ │ ├── gtest_break_on_failure_unittest.py │ │ │ │ │ ├── gtest_break_on_failure_unittest_.cc │ │ │ │ │ ├── gtest_catch_exceptions_test.py │ │ │ │ │ ├── gtest_catch_exceptions_test_.cc │ │ │ │ │ ├── gtest_color_test.py │ │ │ │ │ ├── gtest_color_test_.cc │ │ │ │ │ ├── gtest_env_var_test.py │ │ │ │ │ ├── gtest_env_var_test_.cc │ │ │ │ │ ├── gtest_environment_test.cc │ │ │ │ │ ├── gtest_filter_unittest.py │ │ │ │ │ ├── gtest_filter_unittest_.cc │ │ │ │ │ ├── gtest_help_test.py │ │ │ │ │ ├── gtest_help_test_.cc │ │ │ │ │ ├── gtest_list_tests_unittest.py │ │ │ │ │ ├── gtest_list_tests_unittest_.cc │ │ │ │ │ ├── gtest_main_unittest.cc │ │ │ │ │ ├── gtest_no_test_unittest.cc │ │ │ │ │ ├── gtest_output_test.py │ │ │ │ │ ├── gtest_output_test_.cc │ │ │ │ │ ├── gtest_output_test_golden_lin.txt │ │ │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ │ │ ├── gtest_premature_exit_test.cc │ │ │ │ │ ├── gtest_prod_test.cc │ │ │ │ │ ├── gtest_repeat_test.cc │ │ │ │ │ ├── gtest_shuffle_test.py │ │ │ │ │ ├── gtest_shuffle_test_.cc │ │ │ │ │ ├── gtest_sole_header_test.cc │ │ │ │ │ ├── gtest_stress_test.cc │ │ │ │ │ ├── gtest_test_utils.py │ │ │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ │ │ ├── gtest_throw_on_failure_test.py │ │ │ │ │ ├── gtest_throw_on_failure_test_.cc │ │ │ │ │ ├── gtest_uninitialized_test.py │ │ │ │ │ ├── gtest_uninitialized_test_.cc │ │ │ │ │ ├── gtest_unittest.cc │ │ │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ │ │ ├── gtest_xml_output_unittest.py │ │ │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ │ │ ├── gtest_xml_test_utils.py │ │ │ │ │ ├── production.cc │ │ │ │ │ └── production.h │ │ │ │ └── xcode │ │ │ │ │ ├── Config │ │ │ │ │ ├── DebugProject.xcconfig │ │ │ │ │ ├── FrameworkTarget.xcconfig │ │ │ │ │ ├── General.xcconfig │ │ │ │ │ ├── ReleaseProject.xcconfig │ │ │ │ │ ├── StaticLibraryTarget.xcconfig │ │ │ │ │ └── TestTarget.xcconfig │ │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── Samples │ │ │ │ │ └── FrameworkSample │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── WidgetFramework.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ ├── runtests.sh │ │ │ │ │ │ ├── widget.cc │ │ │ │ │ │ ├── widget.h │ │ │ │ │ │ └── widget_test.cc │ │ │ │ │ ├── Scripts │ │ │ │ │ ├── runtests.sh │ │ │ │ │ └── versiongenerate.py │ │ │ │ │ └── gtest.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── include │ │ │ │ └── gmock │ │ │ │ │ ├── gmock-actions.h │ │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ │ ├── gmock-generated-function-mockers.h │ │ │ │ │ ├── gmock-generated-function-mockers.h.pump │ │ │ │ │ ├── gmock-generated-matchers.h │ │ │ │ │ ├── gmock-generated-matchers.h.pump │ │ │ │ │ ├── gmock-generated-nice-strict.h │ │ │ │ │ ├── gmock-generated-nice-strict.h.pump │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ ├── gmock-more-actions.h │ │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ │ ├── gmock.h │ │ │ │ │ └── internal │ │ │ │ │ ├── gmock-generated-internal-utils.h │ │ │ │ │ ├── gmock-generated-internal-utils.h.pump │ │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ │ └── gmock-port.h │ │ │ ├── msvc │ │ │ │ ├── 2005 │ │ │ │ │ ├── gmock.sln │ │ │ │ │ ├── gmock.vcproj │ │ │ │ │ ├── gmock_config.vsprops │ │ │ │ │ ├── gmock_main.vcproj │ │ │ │ │ └── gmock_test.vcproj │ │ │ │ └── 2010 │ │ │ │ │ ├── gmock.sln │ │ │ │ │ ├── gmock.vcxproj │ │ │ │ │ ├── gmock_config.props │ │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ │ └── gmock_test.vcxproj │ │ │ ├── scripts │ │ │ │ ├── fuse_gmock_files.py │ │ │ │ ├── generator │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README │ │ │ │ │ ├── README.cppclean │ │ │ │ │ ├── cpp │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── ast.py │ │ │ │ │ │ ├── gmock_class.py │ │ │ │ │ │ ├── gmock_class_test.py │ │ │ │ │ │ ├── keywords.py │ │ │ │ │ │ ├── tokenize.py │ │ │ │ │ │ └── utils.py │ │ │ │ │ └── gmock_gen.py │ │ │ │ ├── gmock-config.in │ │ │ │ ├── gmock_doctor.py │ │ │ │ ├── upload.py │ │ │ │ └── upload_gmock.py │ │ │ ├── src │ │ │ │ ├── gmock-all.cc │ │ │ │ ├── gmock-cardinalities.cc │ │ │ │ ├── gmock-internal-utils.cc │ │ │ │ ├── gmock-matchers.cc │ │ │ │ ├── gmock-spec-builders.cc │ │ │ │ ├── gmock.cc │ │ │ │ └── gmock_main.cc │ │ │ └── test │ │ │ │ ├── gmock-actions_test.cc │ │ │ │ ├── gmock-cardinalities_test.cc │ │ │ │ ├── gmock-generated-actions_test.cc │ │ │ │ ├── gmock-generated-function-mockers_test.cc │ │ │ │ ├── gmock-generated-internal-utils_test.cc │ │ │ │ ├── gmock-generated-matchers_test.cc │ │ │ │ ├── gmock-internal-utils_test.cc │ │ │ │ ├── gmock-matchers_test.cc │ │ │ │ ├── gmock-more-actions_test.cc │ │ │ │ ├── gmock-nice-strict_test.cc │ │ │ │ ├── gmock-port_test.cc │ │ │ │ ├── gmock-spec-builders_test.cc │ │ │ │ ├── gmock_all_test.cc │ │ │ │ ├── gmock_ex_test.cc │ │ │ │ ├── gmock_leak_test.py │ │ │ │ ├── gmock_leak_test_.cc │ │ │ │ ├── gmock_link2_test.cc │ │ │ │ ├── gmock_link_test.cc │ │ │ │ ├── gmock_link_test.h │ │ │ │ ├── gmock_output_test.py │ │ │ │ ├── gmock_output_test_.cc │ │ │ │ ├── gmock_output_test_golden.txt │ │ │ │ ├── gmock_stress_test.cc │ │ │ │ ├── gmock_test.cc │ │ │ │ └── gmock_test_utils.py │ │ ├── main.cpp │ │ └── testdata │ │ │ ├── SWObject.h │ │ │ ├── SWObject.m │ │ │ ├── basic.cpp │ │ │ ├── basic.tags │ │ │ └── goto.cpp │ │ ├── versioning.cpp │ │ ├── versioning.h │ │ └── ycm_core.cpp │ ├── examples │ ├── .ycm_extra_conf.py │ ├── LICENSE.txt │ ├── README.md │ ├── __init__.py │ ├── example_client.py │ ├── requirements.txt │ └── samples │ │ ├── some_cpp.cpp │ │ ├── some_csharp.cs │ │ ├── some_csharp.csproj │ │ ├── some_csharp.sln │ │ ├── some_javascript.js │ │ └── some_python.py │ ├── libclang.dll │ ├── run_tests.py │ ├── style_format.sh │ ├── test_requirements.txt │ ├── third_party │ ├── JediHTTP │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── jedihttp.py │ │ ├── jedihttp │ │ │ ├── __init__.py │ │ │ ├── compatibility.py │ │ │ ├── handlers.py │ │ │ ├── hmac_plugin.py │ │ │ ├── hmaclib.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── end_to_end_test.py │ │ │ │ ├── fixtures │ │ │ │ │ ├── basic.py │ │ │ │ │ ├── follow_imports │ │ │ │ │ │ ├── imported.py │ │ │ │ │ │ └── importer.py │ │ │ │ │ ├── goto.py │ │ │ │ │ ├── module │ │ │ │ │ │ ├── main.py │ │ │ │ │ │ └── some_module │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── file1.py │ │ │ │ │ │ │ ├── file2.py │ │ │ │ │ │ │ └── main.py │ │ │ │ │ ├── names.py │ │ │ │ │ ├── py3.py │ │ │ │ │ └── usages.py │ │ │ │ ├── handlers_test.py │ │ │ │ └── utils.py │ │ │ └── utils.py │ │ ├── test_requirements.txt │ │ ├── tox.ini │ │ ├── travis │ │ │ ├── install.sh │ │ │ └── run.sh │ │ └── vendor │ │ │ ├── argparse │ │ │ ├── .gitignore │ │ │ ├── .hgignore │ │ │ ├── .hgtags │ │ │ ├── LICENSE.txt │ │ │ ├── MANIFEST.in │ │ │ ├── NEWS.txt │ │ │ ├── README.txt │ │ │ ├── argparse.py │ │ │ ├── doc │ │ │ │ ├── make.bat │ │ │ │ └── source │ │ │ │ │ ├── Python-License.txt │ │ │ │ │ ├── argparse.rst │ │ │ │ │ ├── conf.py │ │ │ │ │ ├── index.rst │ │ │ │ │ └── license.rst │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ └── test │ │ │ │ └── test_argparse.py │ │ │ ├── bottle │ │ │ ├── .coveragerc │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── MANIFEST.in │ │ │ ├── README.rst │ │ │ ├── bottle.py │ │ │ ├── docs │ │ │ │ ├── _locale │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── update.sh │ │ │ │ │ └── zh_CN │ │ │ │ │ │ ├── api.po │ │ │ │ │ │ ├── async.po │ │ │ │ │ │ ├── changelog.po │ │ │ │ │ │ ├── configuration.po │ │ │ │ │ │ ├── contact.po │ │ │ │ │ │ ├── deployment.po │ │ │ │ │ │ ├── development.po │ │ │ │ │ │ ├── faq.po │ │ │ │ │ │ ├── index.po │ │ │ │ │ │ ├── plugindev.po │ │ │ │ │ │ ├── plugins.po │ │ │ │ │ │ ├── recipes.po │ │ │ │ │ │ ├── routing.po │ │ │ │ │ │ ├── stpl.po │ │ │ │ │ │ ├── tutorial.po │ │ │ │ │ │ └── tutorial_app.po │ │ │ │ ├── api.rst │ │ │ │ ├── async.rst │ │ │ │ ├── changelog.rst │ │ │ │ ├── conf.py │ │ │ │ ├── configuration.rst │ │ │ │ ├── contact.rst │ │ │ │ ├── deployment.rst │ │ │ │ ├── development.rst │ │ │ │ ├── faq.rst │ │ │ │ ├── index.rst │ │ │ │ ├── plugindev.rst │ │ │ │ ├── plugins │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── sqlite.rst │ │ │ │ │ └── werkzeug.rst │ │ │ │ ├── recipes.rst │ │ │ │ ├── routing.rst │ │ │ │ ├── stpl.rst │ │ │ │ ├── tutorial.rst │ │ │ │ └── tutorial_app.rst │ │ │ ├── plugins │ │ │ │ ├── sqlite │ │ │ │ │ ├── README │ │ │ │ │ ├── bottle_sqlite.py │ │ │ │ │ ├── setup.py │ │ │ │ │ └── test.py │ │ │ │ └── werkzeug │ │ │ │ │ ├── README │ │ │ │ │ ├── bottle_werkzeug.py │ │ │ │ │ ├── setup.py │ │ │ │ │ └── test.py │ │ │ ├── setup.py │ │ │ ├── test │ │ │ │ ├── .coveragerc │ │ │ │ ├── build_python.sh │ │ │ │ ├── servertest.py │ │ │ │ ├── test_auth.py │ │ │ │ ├── test_config.py │ │ │ │ ├── test_configdict.py │ │ │ │ ├── test_contextlocals.py │ │ │ │ ├── test_environ.py │ │ │ │ ├── test_fileupload.py │ │ │ │ ├── test_formsdict.py │ │ │ │ ├── test_importhook.py │ │ │ │ ├── test_jinja2.py │ │ │ │ ├── test_mako.py │ │ │ │ ├── test_mdict.py │ │ │ │ ├── test_mount.py │ │ │ │ ├── test_outputfilter.py │ │ │ │ ├── test_plugins.py │ │ │ │ ├── test_resources.py │ │ │ │ ├── test_route.py │ │ │ │ ├── test_router.py │ │ │ │ ├── test_securecookies.py │ │ │ │ ├── test_sendfile.py │ │ │ │ ├── test_server.py │ │ │ │ ├── test_stpl.py │ │ │ │ ├── test_wsgi.py │ │ │ │ ├── testall.py │ │ │ │ ├── tools.py │ │ │ │ ├── travis_setup.sh │ │ │ │ └── views │ │ │ │ │ ├── jinja2_base.tpl │ │ │ │ │ ├── jinja2_inherit.tpl │ │ │ │ │ ├── jinja2_simple.tpl │ │ │ │ │ ├── mako_base.tpl │ │ │ │ │ ├── mako_inherit.tpl │ │ │ │ │ ├── mako_simple.tpl │ │ │ │ │ ├── stpl_include.tpl │ │ │ │ │ ├── stpl_no_vars.tpl │ │ │ │ │ ├── stpl_simple.tpl │ │ │ │ │ ├── stpl_t2base.tpl │ │ │ │ │ ├── stpl_t2inc.tpl │ │ │ │ │ ├── stpl_t2main.tpl │ │ │ │ │ └── stpl_unicode.tpl │ │ │ └── tox.ini │ │ │ ├── jedi │ │ │ ├── .coveragerc │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS.txt │ │ │ ├── CHANGELOG.rst │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.txt │ │ │ ├── MANIFEST.in │ │ │ ├── README.rst │ │ │ ├── conftest.py │ │ │ ├── docs │ │ │ │ ├── _screenshots │ │ │ │ │ ├── screenshot_complete.png │ │ │ │ │ ├── screenshot_function.png │ │ │ │ │ └── screenshot_pydoc.png │ │ │ │ ├── _static │ │ │ │ │ ├── logo-src.txt │ │ │ │ │ └── logo.png │ │ │ │ ├── _templates │ │ │ │ │ ├── ghbuttons.html │ │ │ │ │ └── sidebarlogo.html │ │ │ │ ├── _themes │ │ │ │ │ ├── flask │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── layout.html │ │ │ │ │ │ ├── relations.html │ │ │ │ │ │ ├── static │ │ │ │ │ │ │ ├── flasky.css_t │ │ │ │ │ │ │ └── small_flask.css │ │ │ │ │ │ └── theme.conf │ │ │ │ │ └── flask_theme_support.py │ │ │ │ ├── conf.py │ │ │ │ ├── docs │ │ │ │ │ ├── development.rst │ │ │ │ │ ├── features.rst │ │ │ │ │ ├── installation.rst │ │ │ │ │ ├── plugin-api-classes.rst │ │ │ │ │ ├── plugin-api.rst │ │ │ │ │ ├── settings.rst │ │ │ │ │ ├── static_analsysis.rst │ │ │ │ │ ├── testing.rst │ │ │ │ │ └── usage.rst │ │ │ │ ├── global.rst │ │ │ │ └── index.rst │ │ │ ├── jedi │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── _compatibility.py │ │ │ │ ├── api │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── classes.py │ │ │ │ │ ├── completion.py │ │ │ │ │ ├── helpers.py │ │ │ │ │ ├── interpreter.py │ │ │ │ │ ├── keywords.py │ │ │ │ │ ├── replstartup.py │ │ │ │ │ └── usages.py │ │ │ │ ├── cache.py │ │ │ │ ├── common.py │ │ │ │ ├── debug.py │ │ │ │ ├── evaluate │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── analysis.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── compiled │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── fake.py │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── _functools.pym │ │ │ │ │ │ │ ├── _sqlite3.pym │ │ │ │ │ │ │ ├── _sre.pym │ │ │ │ │ │ │ ├── _weakref.pym │ │ │ │ │ │ │ ├── builtins.pym │ │ │ │ │ │ │ ├── datetime.pym │ │ │ │ │ │ │ ├── io.pym │ │ │ │ │ │ │ └── posix.pym │ │ │ │ │ │ └── mixed.py │ │ │ │ │ ├── docstrings.py │ │ │ │ │ ├── dynamic.py │ │ │ │ │ ├── finder.py │ │ │ │ │ ├── flow_analysis.py │ │ │ │ │ ├── helpers.py │ │ │ │ │ ├── imports.py │ │ │ │ │ ├── iterable.py │ │ │ │ │ ├── jedi_typing.py │ │ │ │ │ ├── param.py │ │ │ │ │ ├── pep0484.py │ │ │ │ │ ├── precedence.py │ │ │ │ │ ├── recursion.py │ │ │ │ │ ├── representation.py │ │ │ │ │ ├── site.py │ │ │ │ │ ├── stdlib.py │ │ │ │ │ └── sys_path.py │ │ │ │ ├── parser │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── fast.py │ │ │ │ │ ├── grammar2.7.txt │ │ │ │ │ ├── grammar3.4.txt │ │ │ │ │ ├── grammar3.5.txt │ │ │ │ │ ├── grammar3.6.txt │ │ │ │ │ ├── pgen2 │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── grammar.py │ │ │ │ │ │ ├── parse.py │ │ │ │ │ │ └── pgen.py │ │ │ │ │ ├── token.py │ │ │ │ │ ├── tokenize.py │ │ │ │ │ ├── tree.py │ │ │ │ │ └── utils.py │ │ │ │ ├── refactoring.py │ │ │ │ ├── settings.py │ │ │ │ └── utils.py │ │ │ ├── pytest.ini │ │ │ ├── scripts │ │ │ │ ├── memory_check.py │ │ │ │ ├── profile.py │ │ │ │ └── wx_check.py │ │ │ ├── setup.py │ │ │ ├── sith.py │ │ │ ├── test │ │ │ │ ├── __init__.py │ │ │ │ ├── blabla_test_documentation.py │ │ │ │ ├── completion │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── arrays.py │ │ │ │ │ ├── basic.py │ │ │ │ │ ├── classes.py │ │ │ │ │ ├── completion.py │ │ │ │ │ ├── complex.py │ │ │ │ │ ├── comprehensions.py │ │ │ │ │ ├── context.py │ │ │ │ │ ├── decorators.py │ │ │ │ │ ├── definition.py │ │ │ │ │ ├── descriptors.py │ │ │ │ │ ├── docstring.py │ │ │ │ │ ├── dynamic_arrays.py │ │ │ │ │ ├── dynamic_params.py │ │ │ │ │ ├── flow_analysis.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── generators.py │ │ │ │ │ ├── goto.py │ │ │ │ │ ├── import_tree │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── flow_import.py │ │ │ │ │ │ ├── invisible_pkg.py │ │ │ │ │ │ ├── mod1.py │ │ │ │ │ │ ├── mod2.py │ │ │ │ │ │ ├── pkg │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── mod1.py │ │ │ │ │ │ ├── random.py │ │ │ │ │ │ ├── recurse_class1.py │ │ │ │ │ │ ├── recurse_class2.py │ │ │ │ │ │ ├── rename1.py │ │ │ │ │ │ └── rename2.py │ │ │ │ │ ├── imports.py │ │ │ │ │ ├── invalid.py │ │ │ │ │ ├── isinstance.py │ │ │ │ │ ├── keywords.py │ │ │ │ │ ├── lambdas.py │ │ │ │ │ ├── named_param.py │ │ │ │ │ ├── on_import.py │ │ │ │ │ ├── ordering.py │ │ │ │ │ ├── parser.py │ │ │ │ │ ├── pep0484.py │ │ │ │ │ ├── pep0484_comments.py │ │ │ │ │ ├── pep0484_typing.py │ │ │ │ │ ├── precedence.py │ │ │ │ │ ├── recursion.py │ │ │ │ │ ├── stdlib.py │ │ │ │ │ ├── sys_path.py │ │ │ │ │ ├── thirdparty │ │ │ │ │ │ ├── PyQt4_.py │ │ │ │ │ │ ├── django_.py │ │ │ │ │ │ ├── jedi_.py │ │ │ │ │ │ ├── psycopg2_.py │ │ │ │ │ │ └── pylab_.py │ │ │ │ │ ├── types.py │ │ │ │ │ └── usages.py │ │ │ │ ├── conftest.py │ │ │ │ ├── helpers.py │ │ │ │ ├── refactor.py │ │ │ │ ├── refactor │ │ │ │ │ ├── extract.py │ │ │ │ │ ├── inline.py │ │ │ │ │ └── rename.py │ │ │ │ ├── run.py │ │ │ │ ├── speed │ │ │ │ │ └── precedence.py │ │ │ │ ├── static_analysis │ │ │ │ │ ├── arguments.py │ │ │ │ │ ├── attribute_error.py │ │ │ │ │ ├── attribute_warnings.py │ │ │ │ │ ├── branches.py │ │ │ │ │ ├── builtins.py │ │ │ │ │ ├── class_simple.py │ │ │ │ │ ├── comprehensions.py │ │ │ │ │ ├── descriptors.py │ │ │ │ │ ├── generators.py │ │ │ │ │ ├── import_tree │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── a.py │ │ │ │ │ │ └── b.py │ │ │ │ │ ├── imports.py │ │ │ │ │ ├── iterable.py │ │ │ │ │ ├── keywords.py │ │ │ │ │ ├── operations.py │ │ │ │ │ ├── python2.py │ │ │ │ │ ├── star_arguments.py │ │ │ │ │ └── try_except.py │ │ │ │ ├── test_api │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_api.py │ │ │ │ │ ├── test_api_classes_follow_definition.py │ │ │ │ │ ├── test_call_signatures.py │ │ │ │ │ ├── test_classes.py │ │ │ │ │ ├── test_completion_context.py │ │ │ │ │ ├── test_defined_names.py │ │ │ │ │ ├── test_full_name.py │ │ │ │ │ ├── test_interpreter.py │ │ │ │ │ ├── test_unicode.py │ │ │ │ │ └── test_usages.py │ │ │ │ ├── test_cache.py │ │ │ │ ├── test_debug.py │ │ │ │ ├── test_evaluate │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── absolute_import │ │ │ │ │ │ ├── local_module.py │ │ │ │ │ │ └── unittest.py │ │ │ │ │ ├── buildout_project │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ ├── binary_file │ │ │ │ │ │ │ └── empty_file │ │ │ │ │ │ ├── buildout.cfg │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── proj_name │ │ │ │ │ │ │ └── module_name.py │ │ │ │ │ ├── flask-site-packages │ │ │ │ │ │ ├── flask │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ ├── flask_baz │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ ├── flask_foo.py │ │ │ │ │ │ └── flaskext │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── bar.py │ │ │ │ │ │ │ └── moo │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── init_extension_module │ │ │ │ │ │ ├── module.c │ │ │ │ │ │ └── setup.py │ │ │ │ │ ├── namespace_package │ │ │ │ │ │ ├── ns1 │ │ │ │ │ │ │ └── pkg │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── ns1_file.py │ │ │ │ │ │ │ │ └── ns1_folder │ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ └── ns2 │ │ │ │ │ │ │ └── pkg │ │ │ │ │ │ │ ├── ns2_file.py │ │ │ │ │ │ │ └── ns2_folder │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── nested │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── nested_namespaces │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── namespace │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── pkg │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── not_in_sys_path │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── not_in_sys_path.py │ │ │ │ │ │ ├── not_in_sys_path_package │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── module.py │ │ │ │ │ │ └── pkg │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── module.py │ │ │ │ │ ├── sample_venvs │ │ │ │ │ │ ├── venv27 │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ └── python2.7 │ │ │ │ │ │ │ │ └── site-packages │ │ │ │ │ │ │ │ ├── dir-from-foo-pth │ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ │ │ ├── egg_link.egg-link │ │ │ │ │ │ │ │ ├── foo.pth │ │ │ │ │ │ │ │ ├── import_smth.pth │ │ │ │ │ │ │ │ ├── relative.egg-link │ │ │ │ │ │ │ │ └── smth.py │ │ │ │ │ │ └── venv34 │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── python3.4 │ │ │ │ │ │ │ └── site-packages │ │ │ │ │ │ │ ├── dir-from-foo-pth │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ │ ├── egg_link.egg-link │ │ │ │ │ │ │ ├── foo.pth │ │ │ │ │ │ │ ├── import_smth.pth │ │ │ │ │ │ │ ├── relative.egg-link │ │ │ │ │ │ │ └── smth.py │ │ │ │ │ ├── test_absolute_import.py │ │ │ │ │ ├── test_annotations.py │ │ │ │ │ ├── test_buildout_detection.py │ │ │ │ │ ├── test_compiled.py │ │ │ │ │ ├── test_docstring.py │ │ │ │ │ ├── test_extension.py │ │ │ │ │ ├── test_helpers.py │ │ │ │ │ ├── test_imports.py │ │ │ │ │ ├── test_namespace_package.py │ │ │ │ │ ├── test_precedence.py │ │ │ │ │ ├── test_pyc.py │ │ │ │ │ ├── test_representation.py │ │ │ │ │ ├── test_sys_path.py │ │ │ │ │ └── zipped_imports │ │ │ │ │ │ ├── not_pkg.zip │ │ │ │ │ │ └── pkg.zip │ │ │ │ ├── test_integration.py │ │ │ │ ├── test_integration_analysis.py │ │ │ │ ├── test_integration_import.py │ │ │ │ ├── test_integration_keyword.py │ │ │ │ ├── test_integration_stdlib.py │ │ │ │ ├── test_jedi_system.py │ │ │ │ ├── test_new_parser.py │ │ │ │ ├── test_parser │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_fast_parser.py │ │ │ │ │ ├── test_get_code.py │ │ │ │ │ ├── test_param_splitting.py │ │ │ │ │ ├── test_parser.py │ │ │ │ │ ├── test_parser_tree.py │ │ │ │ │ ├── test_pgen2.py │ │ │ │ │ ├── test_tokenize.py │ │ │ │ │ └── test_user_context.py │ │ │ │ ├── test_regression.py │ │ │ │ ├── test_speed.py │ │ │ │ ├── test_utils.py │ │ │ │ └── test_windows.py │ │ │ └── tox.ini │ │ │ └── waitress │ │ │ ├── .gitignore │ │ │ ├── CHANGES.txt │ │ │ ├── CONTRIBUTORS.txt │ │ │ ├── COPYRIGHT.txt │ │ │ ├── LICENSE.txt │ │ │ ├── README.rst │ │ │ ├── TODO.txt │ │ │ ├── docs │ │ │ ├── .gitignore │ │ │ ├── api.rst │ │ │ ├── arguments.rst │ │ │ ├── conf.py │ │ │ ├── design.rst │ │ │ ├── differences.rst │ │ │ ├── filewrapper.rst │ │ │ ├── glossary.rst │ │ │ ├── index.rst │ │ │ ├── rebuild │ │ │ └── runner.rst │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ ├── tox.ini │ │ │ └── waitress │ │ │ ├── __init__.py │ │ │ ├── adjustments.py │ │ │ ├── buffers.py │ │ │ ├── channel.py │ │ │ ├── compat.py │ │ │ ├── parser.py │ │ │ ├── receiver.py │ │ │ ├── runner.py │ │ │ ├── server.py │ │ │ ├── task.py │ │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── fixtureapps │ │ │ │ ├── __init__.py │ │ │ │ ├── badcl.py │ │ │ │ ├── echo.py │ │ │ │ ├── error.py │ │ │ │ ├── filewrapper.py │ │ │ │ ├── getline.py │ │ │ │ ├── groundhog1.jpg │ │ │ │ ├── nocl.py │ │ │ │ ├── runner.py │ │ │ │ ├── sleepy.py │ │ │ │ ├── toolarge.py │ │ │ │ └── writecb.py │ │ │ ├── test_adjustments.py │ │ │ ├── test_buffers.py │ │ │ ├── test_channel.py │ │ │ ├── test_compat.py │ │ │ ├── test_functional.py │ │ │ ├── test_init.py │ │ │ ├── test_parser.py │ │ │ ├── test_receiver.py │ │ │ ├── test_regression.py │ │ │ ├── test_runner.py │ │ │ ├── test_server.py │ │ │ ├── test_task.py │ │ │ ├── test_trigger.py │ │ │ └── test_utilities.py │ │ │ ├── trigger.py │ │ │ └── utilities.py │ ├── OmniSharpServer │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── .nuget │ │ │ ├── NuGet.Config │ │ │ ├── NuGet.exe │ │ │ └── NuGet.targets │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── Microsoft.Build.Evaluation │ │ │ ├── Microsoft.Build.Evaluation.csproj │ │ │ ├── Project.cs │ │ │ ├── ProjectItem.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── NRefactory │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── ICSharpCode.NRefactory.CSharp.AstVerifier │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── ICSharpCode.NRefactory.CSharp.AstVerifier.csproj │ │ │ │ └── Main.cs │ │ │ ├── ICSharpCode.NRefactory.CSharp.Refactoring │ │ │ │ ├── CodeActions │ │ │ │ │ ├── AbstractAndVirtualConversionAction.cs │ │ │ │ │ ├── AddAnotherAccessorAction.cs │ │ │ │ │ ├── AddArgumentNameAction.cs │ │ │ │ │ ├── AddBracesAction.cs │ │ │ │ │ ├── AddCatchTypeAction.cs │ │ │ │ │ ├── AddExceptionDescriptionAction.cs │ │ │ │ │ ├── AddOptionalParameterToInvocationAction.cs │ │ │ │ │ ├── AddUsingAction.cs │ │ │ │ │ ├── AutoLinqSumAction.cs │ │ │ │ │ ├── CS1105ExtensionMethodMustBeDeclaredStaticAction.cs │ │ │ │ │ ├── CS1520MethodMustHaveAReturnTypeAction.cs │ │ │ │ │ ├── ChangeAccessModifierAction.cs │ │ │ │ │ ├── CheckIfParameterIsNullAction.cs │ │ │ │ │ ├── ComputeConstantValueAction.cs │ │ │ │ │ ├── ConvertAnonymousDelegateToLambdaAction.cs │ │ │ │ │ ├── ConvertAsToCastAction.cs │ │ │ │ │ ├── ConvertAssignmentToIfAction.cs │ │ │ │ │ ├── ConvertBitwiseFlagComparisonToHasFlagsAction.cs │ │ │ │ │ ├── ConvertCastToAsAction.cs │ │ │ │ │ ├── ConvertDecToHexAction.cs │ │ │ │ │ ├── ConvertDoWhileToWhileLoopAction.cs │ │ │ │ │ ├── ConvertEqualityOperatorToEqualsAction.cs │ │ │ │ │ ├── ConvertEqualsToEqualityOperatorAction.cs │ │ │ │ │ ├── ConvertExplicitToImplicitImplementationAction.cs │ │ │ │ │ ├── ConvertForToWhileAction.cs │ │ │ │ │ ├── ConvertForeachToForAction.cs │ │ │ │ │ ├── ConvertHasFlagsToBitwiseFlagComparisonAction.cs │ │ │ │ │ ├── ConvertHexToDecAction.cs │ │ │ │ │ ├── ConvertIfStatementToConditionalTernaryExpressionAction.cs │ │ │ │ │ ├── ConvertIfStatementToNullCoalescingExpressionAction.cs │ │ │ │ │ ├── ConvertIfStatementToReturnStatementAction.cs │ │ │ │ │ ├── ConvertIfStatementToSwitchStatementAction.cs │ │ │ │ │ ├── ConvertImplicitToExplicitImplementationAction.cs │ │ │ │ │ ├── ConvertLambdaBodyExpressionToStatementAction.cs │ │ │ │ │ ├── ConvertLambdaBodyStatementToExpressionAction.cs │ │ │ │ │ ├── ConvertLambdaToAnonymousDelegateAction.cs │ │ │ │ │ ├── ConvertMethodGroupToAnonymousMethodAction.cs │ │ │ │ │ ├── ConvertMethodGroupToLambdaAction.cs │ │ │ │ │ ├── ConvertMultiplyToShiftAction.cs │ │ │ │ │ ├── ConvertNullCoalescingToConditionalExpressionAction.cs │ │ │ │ │ ├── ConvertReturnStatementToIfAction.cs │ │ │ │ │ ├── ConvertShiftToMultiplyAction.cs │ │ │ │ │ ├── ConvertSwitchToIfAction.cs │ │ │ │ │ ├── ConvertToInitializer │ │ │ │ │ │ ├── AccessPath.cs │ │ │ │ │ │ ├── ConvertInitializerToExplicitInitializationsAction.cs │ │ │ │ │ │ ├── ConvertToInitializerAction.cs │ │ │ │ │ │ └── StatementsToInitializerConverter.cs │ │ │ │ │ ├── ConvertWhileToDoWhileLoopAction.cs │ │ │ │ │ ├── CopyCommentsFromBase.cs │ │ │ │ │ ├── CopyCommentsFromInterface.cs │ │ │ │ │ ├── CreateBackingStoreAction.cs │ │ │ │ │ ├── CreateChangedEventAction.cs │ │ │ │ │ ├── CreateClassDeclarationAction.cs │ │ │ │ │ ├── CreateConstructorDeclarationAction.cs │ │ │ │ │ ├── CreateCustomEventImplementationAction.cs │ │ │ │ │ ├── CreateDelegateAction.cs │ │ │ │ │ ├── CreateEnumValue.cs │ │ │ │ │ ├── CreateEventInvocatorAction.cs │ │ │ │ │ ├── CreateFieldAction.cs │ │ │ │ │ ├── CreateIndexerAction.cs │ │ │ │ │ ├── CreateLocalVariableAction.cs │ │ │ │ │ ├── CreateMethodDeclarationAction.cs │ │ │ │ │ ├── CreateOverloadWithoutParameterAction.cs │ │ │ │ │ ├── CreatePropertyAction.cs │ │ │ │ │ ├── DeclareLocalVariableAction.cs │ │ │ │ │ ├── ExtensionMethodInvocationToStaticMethodInvocationAction.cs │ │ │ │ │ ├── ExtractAnonymousMethodAction.cs │ │ │ │ │ ├── ExtractFieldAction.cs │ │ │ │ │ ├── ExtractMethod │ │ │ │ │ │ ├── ExtractMethodAction.cs │ │ │ │ │ │ ├── StaticVisitor.cs │ │ │ │ │ │ ├── VariableLookupVisitor.cs │ │ │ │ │ │ └── VariableUsageAnalyzation.cs │ │ │ │ │ ├── ExtractWhileConditionToInternalIfStatementAction.cs │ │ │ │ │ ├── FlipEqualsTargetAndArgumentAction.cs │ │ │ │ │ ├── FlipOperatorArgumentsAction.cs │ │ │ │ │ ├── GenerateGetterAction.cs │ │ │ │ │ ├── GeneratePropertyAction.cs │ │ │ │ │ ├── GenerateSwitchLabelsAction.cs │ │ │ │ │ ├── ImplementAbstractMembersAction.cs │ │ │ │ │ ├── ImplementInterfaceAction.cs │ │ │ │ │ ├── ImplementInterfaceExplicitAction.cs │ │ │ │ │ ├── ImplementNotImplementedProperty.cs │ │ │ │ │ ├── InlineLocalVariableAction.cs │ │ │ │ │ ├── InsertAnonymousMethodSignatureAction.cs │ │ │ │ │ ├── IntroduceConstantAction.cs │ │ │ │ │ ├── IntroduceFormatItemAction.cs │ │ │ │ │ ├── InvertConditionalOperatorAction.cs │ │ │ │ │ ├── InvertIfAction.cs │ │ │ │ │ ├── InvertIfAndSimplify.cs │ │ │ │ │ ├── InvertLogicalExpressionAction.cs │ │ │ │ │ ├── IterateViaForeachAction.cs │ │ │ │ │ ├── JoinDeclarationAndAssignmentAction.cs │ │ │ │ │ ├── JoinStringAction.cs │ │ │ │ │ ├── LinqFluentToQueryAction.cs │ │ │ │ │ ├── LinqQueryToFluentAction.cs │ │ │ │ │ ├── MergeNestedIfAction.cs │ │ │ │ │ ├── MoveToOuterScopeAction.cs │ │ │ │ │ ├── NegateIsExpressionAction.cs │ │ │ │ │ ├── NegateRelationalExpressionAction.cs │ │ │ │ │ ├── PutInsideUsingAction.cs │ │ │ │ │ ├── RemoveBackingStoreAction.cs │ │ │ │ │ ├── RemoveBracesAction.cs │ │ │ │ │ ├── RemoveRedundantCatchTypeAction.cs │ │ │ │ │ ├── RemoveRegionAction.cs │ │ │ │ │ ├── ReplaceAssignmentWithPostfixExpressionAction.cs │ │ │ │ │ ├── ReplaceEmptyStringAction.cs │ │ │ │ │ ├── ReplaceOperatorAssignmentWithAssignmentAction.cs │ │ │ │ │ ├── ReplacePostfixExpressionWithAssignmentAction.cs │ │ │ │ │ ├── ReplaceWithOperatorAssignmentAction.cs │ │ │ │ │ ├── ReverseDirectionForForLoopAction.cs │ │ │ │ │ ├── SimplifyIfFlowAction.cs │ │ │ │ │ ├── SimplifyIfInLoopsFlowAction.cs │ │ │ │ │ ├── SortUsingsAction.cs │ │ │ │ │ ├── SpecializedCodeAction.cs │ │ │ │ │ ├── SplitDeclarationAndAssignmentAction.cs │ │ │ │ │ ├── SplitDeclarationListAction.cs │ │ │ │ │ ├── SplitIfAction.cs │ │ │ │ │ ├── SplitStringAction.cs │ │ │ │ │ ├── UseAsAndNullCheckAction.cs │ │ │ │ │ ├── UseExplicitTypeAction.cs │ │ │ │ │ ├── UseStringFormatAction.cs │ │ │ │ │ └── UseVarKeywordAction.cs │ │ │ │ ├── CodeIssues │ │ │ │ │ ├── Custom │ │ │ │ │ │ ├── AdditionalOfTypeIssues.cs │ │ │ │ │ │ ├── BaseMethodParameterNameMismatchIssue.cs │ │ │ │ │ │ ├── CallToObjectEqualsViaBaseIssue.cs │ │ │ │ │ │ ├── CastExpressionOfIncompatibleTypeIssue.cs │ │ │ │ │ │ ├── CheckNamespaceIssue.cs │ │ │ │ │ │ ├── CompilerErrors │ │ │ │ │ │ │ ├── CS0029InvalidConversionIssue.cs │ │ │ │ │ │ │ ├── CS0126ReturnMustBeFollowedByAnyExpression.cs │ │ │ │ │ │ │ ├── CS0127ReturnMustNotBeFollowedByAnyExpression.cs │ │ │ │ │ │ │ ├── CS0152DuplicateCaseLabelValueIssue.cs │ │ │ │ │ │ │ ├── CS0169FieldIsNeverUsedIssue.cs │ │ │ │ │ │ │ ├── CS0618UsageOfObsoleteMemberIssue.cs │ │ │ │ │ │ │ ├── CS0659OverrideEqualWithoutGetHashCode.cs │ │ │ │ │ │ │ ├── CS0759RedundantPartialMethodIssue.cs │ │ │ │ │ │ │ ├── CS1729TypeHasNoConstructorWithNArgumentsIssue.cs │ │ │ │ │ │ │ ├── ExpressionIsNeverOfProvidedTypeIssue.cs │ │ │ │ │ │ │ ├── MissingInterfaceMemberImplementationIssue.cs │ │ │ │ │ │ │ └── StaticConstructorParameterIssue.cs │ │ │ │ │ │ ├── ConstantConditionIssue.cs │ │ │ │ │ │ ├── ConvertIfToAndExpressionIssue.cs │ │ │ │ │ │ ├── LockThisIssue.cs │ │ │ │ │ │ ├── MixedUseOfFieldsAndGettersIssue.cs │ │ │ │ │ │ ├── NegativeRelationalExpressionIssue.cs │ │ │ │ │ │ ├── NotImplementedExceptionIssue.cs │ │ │ │ │ │ ├── ParameterOnlyAssignedIssue.cs │ │ │ │ │ │ ├── RedundantAssignmentIssue.cs │ │ │ │ │ │ ├── RedundantInternalIssue.cs │ │ │ │ │ │ ├── RedundantPrivateIssue.cs │ │ │ │ │ │ ├── StaticEventSubscriptionIssue.cs │ │ │ │ │ │ ├── UnreachableCodeIssue.cs │ │ │ │ │ │ ├── VariableOnlyAssignedIssue.cs │ │ │ │ │ │ └── XmlDocIssue.cs │ │ │ │ │ ├── GatherVisitorBase.cs │ │ │ │ │ ├── IssueCategories.cs │ │ │ │ │ ├── NotWorking │ │ │ │ │ │ ├── AccessToClosureIssues │ │ │ │ │ │ │ ├── AccessToClosureIssue.cs │ │ │ │ │ │ │ ├── AccessToDisposedClosureIssue.cs │ │ │ │ │ │ │ ├── AccessToModifiedClosureIssue.cs │ │ │ │ │ │ │ └── LocalVariableNamePicker.cs │ │ │ │ │ │ ├── DuplicateBodyMethodIssue.cs │ │ │ │ │ │ ├── DuplicateExpressionsInConditionsIssue.cs │ │ │ │ │ │ ├── DuplicateIfInIfChainIssue.cs │ │ │ │ │ │ ├── ParameterCanBeIEnumerableIssue.cs │ │ │ │ │ │ └── VariableDeclaredInWideScopeIssue.cs │ │ │ │ │ ├── RefactoringExtensions.cs │ │ │ │ │ ├── Synced │ │ │ │ │ │ ├── CodeQuality │ │ │ │ │ │ │ ├── BaseMethodCallWithDefaultParameterIssue.cs │ │ │ │ │ │ │ ├── BitwiseOperatorOnEnumWithoutFlagsIssue.cs │ │ │ │ │ │ │ ├── CanBeReplacedWithTryCastAndCheckForNullIssue.cs │ │ │ │ │ │ │ ├── CompareNonConstrainedGenericWithNullIssue.cs │ │ │ │ │ │ │ ├── CompareOfFloatsByEqualityOperatorIssue.cs │ │ │ │ │ │ │ ├── ConditionalTernaryEqualBranchIssue.cs │ │ │ │ │ │ │ ├── DelegateSubtractionIssue.cs │ │ │ │ │ │ │ ├── DoNotCallOverridableMethodsInConstructorIssue.cs │ │ │ │ │ │ │ ├── EmptyGeneralCatchClauseIssue.cs │ │ │ │ │ │ │ ├── EqualExpressionComparisonIssue.cs │ │ │ │ │ │ │ ├── EventUnsubscriptionViaAnonymousDelegateIssue.cs │ │ │ │ │ │ │ ├── ForControlVariableIsNeverModifiedIssue.cs │ │ │ │ │ │ │ ├── FormatStringProblemIssue.cs │ │ │ │ │ │ │ ├── FunctionNeverReturnsIssue.cs │ │ │ │ │ │ │ ├── LocalVariableHidesMemberIssue.cs │ │ │ │ │ │ │ ├── LongLiteralEndingLowerLIssue.cs │ │ │ │ │ │ │ ├── MemberHidesStaticFromOuterClassIssue.cs │ │ │ │ │ │ │ ├── MethodOverloadWithOptionalParameterIssue.cs │ │ │ │ │ │ │ ├── NonReadonlyReferencedInGetHashCodeIssue.cs │ │ │ │ │ │ │ ├── NotResolvedInTextIssue.cs │ │ │ │ │ │ │ ├── ObjectCreationAsStatementIssue.cs │ │ │ │ │ │ │ ├── OperatorIsCanBeUsedIssue.cs │ │ │ │ │ │ │ ├── OptionalParameterHierarchyMismatchIssue.cs │ │ │ │ │ │ │ ├── OptionalParameterRefOutIssue.cs │ │ │ │ │ │ │ ├── ParameterHidesMemberIssue.cs │ │ │ │ │ │ │ ├── PartialMethodParameterNameMismatchIssue.cs │ │ │ │ │ │ │ ├── PolymorphicFieldLikeEventInvocationIssue.cs │ │ │ │ │ │ │ ├── PossibleAssignmentToReadonlyFieldIssue.cs │ │ │ │ │ │ │ ├── PossibleMultipleEnumerationIssue.cs │ │ │ │ │ │ │ ├── StaticFieldInGenericTypeIssue.cs │ │ │ │ │ │ │ ├── ThreadStaticAtInstanceFieldIssue.cs │ │ │ │ │ │ │ └── ValueParameterNotUsedIssue.cs │ │ │ │ │ │ ├── CompilerErrors │ │ │ │ │ │ │ └── ProhibitedModifiersIssue.cs │ │ │ │ │ │ ├── CompilerWarnings │ │ │ │ │ │ │ ├── CS0183ExpressionIsAlwaysOfProvidedTypeIssue.cs │ │ │ │ │ │ │ ├── CS1573ParameterHasNoMatchingParamTagIssue.cs │ │ │ │ │ │ │ ├── CS1717AssignmentMadeToSameVariableIssue.cs │ │ │ │ │ │ │ └── UnassignedReadonlyFieldIssue.cs │ │ │ │ │ │ ├── ConstraintViolations │ │ │ │ │ │ │ └── InconsistentNamingIssue │ │ │ │ │ │ │ │ ├── AffectedEntity.cs │ │ │ │ │ │ │ │ ├── DefaultRules.cs │ │ │ │ │ │ │ │ ├── InconsistentNamingIssue.cs │ │ │ │ │ │ │ │ ├── NamingConventionService.cs │ │ │ │ │ │ │ │ ├── NamingRule.cs │ │ │ │ │ │ │ │ └── NamingStyle.cs │ │ │ │ │ │ ├── NUnit │ │ │ │ │ │ │ └── NonPublicMethodWithTestAttributeIssue.cs │ │ │ │ │ │ ├── Opportunities │ │ │ │ │ │ │ ├── ConvertClosureToMethodGroupIssue.cs │ │ │ │ │ │ │ ├── ConvertConditionalTernaryToNullCoalescingIssue.cs │ │ │ │ │ │ │ ├── ConvertIfStatementToConditionalTernaryExpressionIssue.cs │ │ │ │ │ │ │ ├── ConvertIfStatementToNullCoalescingExpressionIssue.cs │ │ │ │ │ │ │ ├── ConvertIfStatementToSwitchStatementIssue.cs │ │ │ │ │ │ │ ├── ConvertNullableToShortFormIssue.cs │ │ │ │ │ │ │ ├── ConvertToAutoPropertyIssue.cs │ │ │ │ │ │ │ ├── ConvertToLambdaExpressionIssue.cs │ │ │ │ │ │ │ ├── ConvertToStaticTypeIssue.cs │ │ │ │ │ │ │ ├── ForCanBeConvertedToForeachIssue.cs │ │ │ │ │ │ │ ├── InvokeAsExtensionMethodIssue.cs │ │ │ │ │ │ │ ├── RewriteIfReturnToReturnIssue.cs │ │ │ │ │ │ │ └── SuggestUseVarKeywordEvidentIssue.cs │ │ │ │ │ │ ├── PracticesAndImprovements │ │ │ │ │ │ │ ├── AccessToStaticMemberViaDerivedTypeIssue.cs │ │ │ │ │ │ │ ├── BaseMemberHasParamsIssue.cs │ │ │ │ │ │ │ ├── ConvertIfDoToWhileIssue.cs │ │ │ │ │ │ │ ├── ConvertIfToOrExpressionIssue.cs │ │ │ │ │ │ │ ├── ConvertToConstantIssue.cs │ │ │ │ │ │ │ ├── EmptyEmbeddedStatementIssue.cs │ │ │ │ │ │ │ ├── FieldCanBeMadeReadOnlyIssue.cs │ │ │ │ │ │ │ ├── MemberCanBeMadeStaticIssue.cs │ │ │ │ │ │ │ ├── ParameterCanBeDeclaredWithBaseTypeIssue.cs │ │ │ │ │ │ │ ├── PossibleMistakenCallToGetTypeIssue.cs │ │ │ │ │ │ │ ├── PublicConstructorInAbstractClass.cs │ │ │ │ │ │ │ ├── ReferenceEqualsWithValueTypeIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithFirstOrDefaultIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithLastOrDefaultIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithOfTypeAny.cs │ │ │ │ │ │ │ ├── ReplaceWithOfTypeCountIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithOfTypeFirstIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithOfTypeFirstOrDefaultIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithOfTypeIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithOfTypeLastIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithOfTypeLastOrDefaultIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithOfTypeLongCountIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithOfTypeSingleIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithOfTypeSingleOrDefaultIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithOfTypeWhereIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithSimpleAssignmentIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithSingleCallToAnyIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithSingleCallToAverageIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithSingleCallToCountIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithSingleCallToFirstIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithSingleCallToFirstOrDefaultIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithSingleCallToLastIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithSingleCallToLastOrDefaultIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithSingleCallToLongCountIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithSingleCallToMaxIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithSingleCallToMinIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithSingleCallToSingleIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithSingleCallToSingleOrDefaultIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithSingleCallToSumIssue.cs │ │ │ │ │ │ │ ├── ReplaceWithStringIsNullOrEmptyIssue.cs │ │ │ │ │ │ │ ├── SimplifyConditionalTernaryExpressionIssue.cs │ │ │ │ │ │ │ ├── SimplifyLinqExpressionIssue.cs │ │ │ │ │ │ │ ├── StringCompareIsCultureSpecificIssue.cs │ │ │ │ │ │ │ ├── StringCompareToIsCultureSpecificIssue.cs │ │ │ │ │ │ │ ├── StringEndsWithIsCultureSpecificIssue.cs │ │ │ │ │ │ │ ├── StringIndexOfIsCultureSpecificIssue.cs │ │ │ │ │ │ │ ├── StringLastIndexOfIsCultureSpecificIssue.cs │ │ │ │ │ │ │ ├── StringStartsWithIsCultureSpecificIssue.cs │ │ │ │ │ │ │ ├── UseArrayCreationExpressionIssue.cs │ │ │ │ │ │ │ ├── UseIsOperatorIssue.cs │ │ │ │ │ │ │ ├── UseMethodAnyIssue.cs │ │ │ │ │ │ │ └── UseMethodIsInstanceOfTypeIssue.cs │ │ │ │ │ │ ├── RedundanciesInCode │ │ │ │ │ │ │ ├── ArrayCreationCanBeReplacedWithArrayInitializerIssue.cs │ │ │ │ │ │ │ ├── ConditionIsAlwaysTrueOrFalseIssue.cs │ │ │ │ │ │ │ ├── ConstantNullCoalescingConditionIssue.cs │ │ │ │ │ │ │ ├── DoubleNegationOperatorIssue.cs │ │ │ │ │ │ │ ├── EmptyStatementIssue.cs │ │ │ │ │ │ │ ├── ForStatementConditionIsTrueIssue.cs │ │ │ │ │ │ │ ├── RedundantAnonymousTypePropertyNameIssue.cs │ │ │ │ │ │ │ ├── RedundantArgumentDefaultValueIssue.cs │ │ │ │ │ │ │ ├── RedundantArgumentNameIssue.cs │ │ │ │ │ │ │ ├── RedundantAttributeParenthesesIssue.cs │ │ │ │ │ │ │ ├── RedundantBaseQualifierIssue.cs │ │ │ │ │ │ │ ├── RedundantBoolCompareIssue.cs │ │ │ │ │ │ │ ├── RedundantCaseLabelIssue.cs │ │ │ │ │ │ │ ├── RedundantCastIssue.cs │ │ │ │ │ │ │ ├── RedundantCatchClauseIssue.cs │ │ │ │ │ │ │ ├── RedundantCheckBeforeAssignmentIssue.cs │ │ │ │ │ │ │ ├── RedundantCommaInArrayInitializerIssue.cs │ │ │ │ │ │ │ ├── RedundantComparisonWithNullIssue.cs │ │ │ │ │ │ │ ├── RedundantDelegateCreationIssue.cs │ │ │ │ │ │ │ ├── RedundantEmptyDefaultSwitchBranchIssue.cs │ │ │ │ │ │ │ ├── RedundantEmptyFinallyBlockIssue.cs │ │ │ │ │ │ │ ├── RedundantEmptyObjectCreationArgumentListssue.cs │ │ │ │ │ │ │ ├── RedundantEnumerableCastCallIssue.cs │ │ │ │ │ │ │ ├── RedundantExplicitArrayCreationIssue.cs │ │ │ │ │ │ │ ├── RedundantExplicitArraySizeIssue.cs │ │ │ │ │ │ │ ├── RedundantExplicitNullableCreationIssue.cs │ │ │ │ │ │ │ ├── RedundantExtendsListEntryIssue.cs │ │ │ │ │ │ │ ├── RedundantIfElseBlockIssue.cs │ │ │ │ │ │ │ ├── RedundantLambdaParameterTypeIssue.cs │ │ │ │ │ │ │ ├── RedundantLambdaSignatureParenthesesIssue.cs │ │ │ │ │ │ │ ├── RedundantLogicalConditionalExpressionOperandIssue.cs │ │ │ │ │ │ │ ├── RedundantNameQualifierIssue.cs │ │ │ │ │ │ │ ├── RedundantObjectOrCollectionInitializerIssue.cs │ │ │ │ │ │ │ ├── RedundantStringToCharArrayCallIssue.cs │ │ │ │ │ │ │ ├── RedundantTernaryExpressionIssue.cs │ │ │ │ │ │ │ ├── RedundantThisQualifierIssue.cs │ │ │ │ │ │ │ ├── RedundantToStringCallForValueTypesIssue.cs │ │ │ │ │ │ │ ├── RedundantToStringCallIssue.cs │ │ │ │ │ │ │ ├── RedundantUnsafeContextIssue.cs │ │ │ │ │ │ │ ├── RedundantUsingDirectiveIssue.cs │ │ │ │ │ │ │ ├── RemoveRedundantOrStatementIssue.cs │ │ │ │ │ │ │ └── UnusedAnonymousMethodSignatureIssue.cs │ │ │ │ │ │ └── RedundanciesInDeclaration │ │ │ │ │ │ │ ├── EmptyConstructorIssue.cs │ │ │ │ │ │ │ ├── EmptyDestructorIssue.cs │ │ │ │ │ │ │ ├── EmptyNamespaceIssue.cs │ │ │ │ │ │ │ ├── EnumUnderlyingTypeIsIntIssue.cs │ │ │ │ │ │ │ ├── LocalVariableNotUsedIssue.cs │ │ │ │ │ │ │ ├── PartialTypeWithSinglePartIssue.cs │ │ │ │ │ │ │ ├── RedundantBaseConstructorCallIssue.cs │ │ │ │ │ │ │ ├── RedundantDefaultFieldInitializerIssue.cs │ │ │ │ │ │ │ ├── RedundantOverridenMemberIssue.cs │ │ │ │ │ │ │ ├── RedundantParamsIssue.cs │ │ │ │ │ │ │ ├── SealedMemberInSealedClassIssue.cs │ │ │ │ │ │ │ ├── UnusedLabelIssue.cs │ │ │ │ │ │ │ ├── UnusedParameterIssue.cs │ │ │ │ │ │ │ └── UnusedTypeParameterIssue.cs │ │ │ │ │ ├── TODO │ │ │ │ │ │ ├── ConvertTailRecursiveCallToLoopIssue.cs │ │ │ │ │ │ ├── LoopCanBeConvertedToQueryIssue.cs │ │ │ │ │ │ ├── PartOfBodyCanBeConvertedToQueryIssue.cs │ │ │ │ │ │ └── RedundantTypeArgumentsOfMethodIssue.cs │ │ │ │ │ └── Uncategorized │ │ │ │ │ │ ├── AutoAsyncIssue.cs │ │ │ │ │ │ ├── DisposeMethodInNonIDisposableTypeIssue.cs │ │ │ │ │ │ ├── DontUseLinqWhenItsVerboseAndInefficientIssue.cs │ │ │ │ │ │ ├── DuplicatedLinqToListOrArrayIssue.cs │ │ │ │ │ │ ├── ExceptionRethrowIssue.cs │ │ │ │ │ │ ├── ExplicitConversionInForEachIssue.cs │ │ │ │ │ │ ├── IncorrectCallToObjectGetHashCodeIssue.cs │ │ │ │ │ │ ├── RedundantBlockInDifferentBranchesIssue.cs │ │ │ │ │ │ ├── RedundantNotNullAttributeInNonNullableTypeIssue.cs │ │ │ │ │ │ ├── ResultOfAsyncCallShouldNotBeIgnoredIssue.cs │ │ │ │ │ │ ├── SameGuardConditionExpressionInIfelseBranchesIssue.cs │ │ │ │ │ │ ├── UnmatchedSizeSpecificationInArrayCreationIssue.cs │ │ │ │ │ │ └── UseOfMemberOfNullReference.cs │ │ │ │ ├── ICSharpCode.NRefactory.CSharp.Refactoring.csproj │ │ │ │ └── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── ICSharpCode.NRefactory.CSharp │ │ │ │ ├── Analysis │ │ │ │ │ ├── AnnotationNames.cs │ │ │ │ │ ├── ControlFlow.cs │ │ │ │ │ ├── DeclarationSpace │ │ │ │ │ │ ├── LocalDeclarationSpace.cs │ │ │ │ │ │ └── LocalDeclarationSpaceVisitor.cs │ │ │ │ │ ├── DefiniteAssignmentAnalysis.cs │ │ │ │ │ ├── NullValueAnalysis.cs │ │ │ │ │ ├── NullValueStatus.cs │ │ │ │ │ ├── ReachabilityAnalysis.cs │ │ │ │ │ └── SemanticHighlightingVisitor.cs │ │ │ │ ├── Ast │ │ │ │ │ ├── AstNode.cs │ │ │ │ │ ├── AstNodeCollection.cs │ │ │ │ │ ├── AstType.cs │ │ │ │ │ ├── CSharpModifierToken.cs │ │ │ │ │ ├── CSharpTokenNode.cs │ │ │ │ │ ├── CSharpUtil.cs │ │ │ │ │ ├── ComposedType.cs │ │ │ │ │ ├── DepthFirstAstVisitor.cs │ │ │ │ │ ├── DocumentationReference.cs │ │ │ │ │ ├── ErrorNode.cs │ │ │ │ │ ├── Expressions │ │ │ │ │ │ ├── AnonymousMethodExpression.cs │ │ │ │ │ │ ├── AnonymousTypeCreateExpression.cs │ │ │ │ │ │ ├── ArrayCreateExpression.cs │ │ │ │ │ │ ├── ArrayInitializerExpression.cs │ │ │ │ │ │ ├── AsExpression.cs │ │ │ │ │ │ ├── AssignmentExpression.cs │ │ │ │ │ │ ├── BaseReferenceExpression.cs │ │ │ │ │ │ ├── BinaryOperatorExpression.cs │ │ │ │ │ │ ├── CastExpression.cs │ │ │ │ │ │ ├── CheckedExpression.cs │ │ │ │ │ │ ├── ConditionalExpression.cs │ │ │ │ │ │ ├── DefaultValueExpression.cs │ │ │ │ │ │ ├── DirectionExpression.cs │ │ │ │ │ │ ├── ErrorExpression.cs │ │ │ │ │ │ ├── Expression.cs │ │ │ │ │ │ ├── IdentifierExpression.cs │ │ │ │ │ │ ├── IndexerExpression.cs │ │ │ │ │ │ ├── InvocationExpression.cs │ │ │ │ │ │ ├── IsExpression.cs │ │ │ │ │ │ ├── LambdaExpression.cs │ │ │ │ │ │ ├── MemberReferenceExpression.cs │ │ │ │ │ │ ├── NamedArgumentExpression.cs │ │ │ │ │ │ ├── NamedExpression.cs │ │ │ │ │ │ ├── NullReferenceExpression.cs │ │ │ │ │ │ ├── ObjectCreateExpression.cs │ │ │ │ │ │ ├── ParenthesizedExpression.cs │ │ │ │ │ │ ├── PointerReferenceExpression.cs │ │ │ │ │ │ ├── PrimitiveExpression.cs │ │ │ │ │ │ ├── QueryExpression.cs │ │ │ │ │ │ ├── SizeOfExpression.cs │ │ │ │ │ │ ├── StackAllocExpression.cs │ │ │ │ │ │ ├── ThisReferenceExpression.cs │ │ │ │ │ │ ├── TypeOfExpression.cs │ │ │ │ │ │ ├── TypeReferenceExpression.cs │ │ │ │ │ │ ├── UnaryOperatorExpression.cs │ │ │ │ │ │ ├── UncheckedExpression.cs │ │ │ │ │ │ └── UndocumentedExpression.cs │ │ │ │ │ ├── GeneralScope │ │ │ │ │ │ ├── Attribute.cs │ │ │ │ │ │ ├── AttributeSection.cs │ │ │ │ │ │ ├── Comment.cs │ │ │ │ │ │ ├── Constraint.cs │ │ │ │ │ │ ├── DelegateDeclaration.cs │ │ │ │ │ │ ├── ExternAliasDeclaration.cs │ │ │ │ │ │ ├── NamespaceDeclaration.cs │ │ │ │ │ │ ├── NewLineNode.cs │ │ │ │ │ │ ├── PreProcessorDirective.cs │ │ │ │ │ │ ├── TextNode.cs │ │ │ │ │ │ ├── TypeDeclaration.cs │ │ │ │ │ │ ├── TypeParameterDeclaration.cs │ │ │ │ │ │ ├── UsingAliasDeclaration.cs │ │ │ │ │ │ ├── UsingDeclaration.cs │ │ │ │ │ │ └── WhitespaceNode.cs │ │ │ │ │ ├── IAstVisitor.cs │ │ │ │ │ ├── Identifier.cs │ │ │ │ │ ├── IdentifierExpressionBackreference.cs │ │ │ │ │ ├── MemberType.cs │ │ │ │ │ ├── Modifiers.cs │ │ │ │ │ ├── NodeType.cs │ │ │ │ │ ├── ObservableAstVisitor.cs │ │ │ │ │ ├── PrimitiveType.cs │ │ │ │ │ ├── Roles.cs │ │ │ │ │ ├── SimpleType.cs │ │ │ │ │ ├── Statements │ │ │ │ │ │ ├── BlockStatement.cs │ │ │ │ │ │ ├── BreakStatement.cs │ │ │ │ │ │ ├── CheckedStatement.cs │ │ │ │ │ │ ├── ContinueStatement.cs │ │ │ │ │ │ ├── DoWhileStatement.cs │ │ │ │ │ │ ├── EmptyStatement.cs │ │ │ │ │ │ ├── ExpressionStatement.cs │ │ │ │ │ │ ├── FixedStatement.cs │ │ │ │ │ │ ├── ForStatement.cs │ │ │ │ │ │ ├── ForeachStatement.cs │ │ │ │ │ │ ├── GotoStatement.cs │ │ │ │ │ │ ├── IfElseStatement.cs │ │ │ │ │ │ ├── LabelStatement.cs │ │ │ │ │ │ ├── LockStatement.cs │ │ │ │ │ │ ├── ReturnStatement.cs │ │ │ │ │ │ ├── Statement.cs │ │ │ │ │ │ ├── SwitchStatement.cs │ │ │ │ │ │ ├── ThrowStatement.cs │ │ │ │ │ │ ├── TryCatchStatement.cs │ │ │ │ │ │ ├── UncheckedStatement.cs │ │ │ │ │ │ ├── UnsafeStatement.cs │ │ │ │ │ │ ├── UsingStatement.cs │ │ │ │ │ │ ├── VariableDeclarationStatement.cs │ │ │ │ │ │ ├── WhileStatement.cs │ │ │ │ │ │ ├── YieldBreakStatement.cs │ │ │ │ │ │ └── YieldReturnStatement.cs │ │ │ │ │ ├── SyntaxExtensions.cs │ │ │ │ │ ├── SyntaxTree.cs │ │ │ │ │ ├── TokenRole.cs │ │ │ │ │ └── TypeMembers │ │ │ │ │ │ ├── Accessor.cs │ │ │ │ │ │ ├── ConstructorDeclaration.cs │ │ │ │ │ │ ├── DestructorDeclaration.cs │ │ │ │ │ │ ├── EntityDeclaration.cs │ │ │ │ │ │ ├── EnumMemberDeclaration.cs │ │ │ │ │ │ ├── EventDeclaration.cs │ │ │ │ │ │ ├── FieldDeclaration.cs │ │ │ │ │ │ ├── FixedFieldDeclaration.cs │ │ │ │ │ │ ├── FixedVariableInitializer.cs │ │ │ │ │ │ ├── IndexerDeclaration.cs │ │ │ │ │ │ ├── MethodDeclaration.cs │ │ │ │ │ │ ├── OperatorDeclaration.cs │ │ │ │ │ │ ├── ParameterDeclaration.cs │ │ │ │ │ │ ├── PropertyDeclaration.cs │ │ │ │ │ │ └── VariableInitializer.cs │ │ │ │ ├── CSharpProjectContent.cs │ │ │ │ ├── CombineQueryExpressions.cs │ │ │ │ ├── Completion │ │ │ │ │ ├── CSharpCompletionEngine.cs │ │ │ │ │ ├── CSharpCompletionEngineBase.cs │ │ │ │ │ ├── CSharpParameterCompletionEngine.cs │ │ │ │ │ ├── CompletionDataWrapper.cs │ │ │ │ │ ├── ICompletionContextProvider.cs │ │ │ │ │ ├── ICompletionDataFactory.cs │ │ │ │ │ └── IParameterCompletionDataFactory.cs │ │ │ │ ├── Formatter │ │ │ │ │ ├── CSharpFormatter.cs │ │ │ │ │ ├── CSharpFormattingOptions.cs │ │ │ │ │ ├── ConstructFixer.cs │ │ │ │ │ ├── FormattingChanges.cs │ │ │ │ │ ├── FormattingOptionsFactory.cs │ │ │ │ │ ├── FormattingVisitor.cs │ │ │ │ │ ├── FormattingVisitor_Expressions.cs │ │ │ │ │ ├── FormattingVisitor_Global.cs │ │ │ │ │ ├── FormattingVisitor_Query.cs │ │ │ │ │ ├── FormattingVisitor_Statements.cs │ │ │ │ │ ├── FormattingVisitor_TypeMembers.cs │ │ │ │ │ ├── GeneratedCodeSettings.cs │ │ │ │ │ ├── Indent.cs │ │ │ │ │ └── TextEditorOptions.cs │ │ │ │ ├── ICSharpCode.NRefactory.CSharp.csproj │ │ │ │ ├── IndentEngine │ │ │ │ │ ├── CSharpIndentEngine.cs │ │ │ │ │ ├── CacheIndentEngine.cs │ │ │ │ │ ├── IDocumentIndentEngine.cs │ │ │ │ │ ├── IStateMachineIndentEngine.cs │ │ │ │ │ ├── IndentState.cs │ │ │ │ │ ├── NullIStateMachineIndentEngine.cs │ │ │ │ │ └── TextPasteIndentEngine.cs │ │ │ │ ├── IntroduceQueryExpressions.cs │ │ │ │ ├── NameLookupMode.cs │ │ │ │ ├── OutputVisitor │ │ │ │ │ ├── CSharpAmbience.cs │ │ │ │ │ ├── CSharpOutputVisitor.cs │ │ │ │ │ ├── CodeDomConvertVisitor.cs │ │ │ │ │ ├── ITokenWriter.cs │ │ │ │ │ ├── InsertMissingTokensDecorator.cs │ │ │ │ │ ├── InsertParenthesesVisitor.cs │ │ │ │ │ ├── InsertRequiredSpacesDecorator.cs │ │ │ │ │ ├── InsertSpecialsDecorator.cs │ │ │ │ │ └── TextWriterOutputFormatter.cs │ │ │ │ ├── Parser │ │ │ │ │ ├── CSharpParser.cs │ │ │ │ │ ├── CompilerSettings.cs │ │ │ │ │ ├── SeekableStreamReader.cs │ │ │ │ │ └── mcs │ │ │ │ │ │ ├── CryptoConvert.cs │ │ │ │ │ │ ├── MonoSymbolFile.cs │ │ │ │ │ │ ├── MonoSymbolTable.cs │ │ │ │ │ │ ├── MonoSymbolWriter.cs │ │ │ │ │ │ ├── SourceMethodBuilder.cs │ │ │ │ │ │ ├── anonymous.cs │ │ │ │ │ │ ├── argument.cs │ │ │ │ │ │ ├── assembly.cs │ │ │ │ │ │ ├── assign.cs │ │ │ │ │ │ ├── async.cs │ │ │ │ │ │ ├── attribute.cs │ │ │ │ │ │ ├── cfold.cs │ │ │ │ │ │ ├── class.cs │ │ │ │ │ │ ├── codegen.cs │ │ │ │ │ │ ├── complete.cs │ │ │ │ │ │ ├── const.cs │ │ │ │ │ │ ├── constant.cs │ │ │ │ │ │ ├── context.cs │ │ │ │ │ │ ├── convert.cs │ │ │ │ │ │ ├── cs-parser.cs │ │ │ │ │ │ ├── cs-parser.jay │ │ │ │ │ │ ├── cs-tokenizer.cs │ │ │ │ │ │ ├── decl.cs │ │ │ │ │ │ ├── delegate.cs │ │ │ │ │ │ ├── doc.cs │ │ │ │ │ │ ├── driver.cs │ │ │ │ │ │ ├── dynamic.cs │ │ │ │ │ │ ├── ecore.cs │ │ │ │ │ │ ├── enum.cs │ │ │ │ │ │ ├── eval.cs │ │ │ │ │ │ ├── expression.cs │ │ │ │ │ │ ├── field.cs │ │ │ │ │ │ ├── flowanalysis.cs │ │ │ │ │ │ ├── generic.cs │ │ │ │ │ │ ├── import.cs │ │ │ │ │ │ ├── iterators.cs │ │ │ │ │ │ ├── lambda.cs │ │ │ │ │ │ ├── linq.cs │ │ │ │ │ │ ├── literal.cs │ │ │ │ │ │ ├── location.cs │ │ │ │ │ │ ├── membercache.cs │ │ │ │ │ │ ├── method.cs │ │ │ │ │ │ ├── modifiers.cs │ │ │ │ │ │ ├── module.cs │ │ │ │ │ │ ├── namespace.cs │ │ │ │ │ │ ├── nullable.cs │ │ │ │ │ │ ├── outline.cs │ │ │ │ │ │ ├── parameter.cs │ │ │ │ │ │ ├── pending.cs │ │ │ │ │ │ ├── property.cs │ │ │ │ │ │ ├── reflection.cs │ │ │ │ │ │ ├── report.cs │ │ │ │ │ │ ├── settings.cs │ │ │ │ │ │ ├── statement.cs │ │ │ │ │ │ ├── support.cs │ │ │ │ │ │ ├── symbolwriter.cs │ │ │ │ │ │ ├── typemanager.cs │ │ │ │ │ │ ├── typespec.cs │ │ │ │ │ │ └── visit.cs │ │ │ │ ├── PatternMatching │ │ │ │ │ └── AnyType.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── QueryExpressionExpander.cs │ │ │ │ ├── Refactoring │ │ │ │ │ ├── BaseRefactoringContext.cs │ │ │ │ │ ├── CodeAction.cs │ │ │ │ │ ├── CodeActionProvider.cs │ │ │ │ │ ├── CodeActions │ │ │ │ │ │ └── RemoveFieldRefactoryActionRefactoringAction.cs │ │ │ │ │ ├── CodeGenerationService.cs │ │ │ │ │ ├── CodeIssue.cs │ │ │ │ │ ├── CodeIssueProvider.cs │ │ │ │ │ ├── CodeIssues │ │ │ │ │ │ └── Uncategorized │ │ │ │ │ │ │ └── .DS_Store │ │ │ │ │ ├── CommonSubIssues.cs │ │ │ │ │ ├── ContextActionAttribute.cs │ │ │ │ │ ├── DocumentScript.cs │ │ │ │ │ ├── FormatStringHelper.cs │ │ │ │ │ ├── IssueAttribute.cs │ │ │ │ │ ├── LambdaHelper.cs │ │ │ │ │ ├── LocalReferenceFinder.cs │ │ │ │ │ ├── NamingHelper.cs │ │ │ │ │ ├── PatternHelper.cs │ │ │ │ │ ├── RefactoringAstHelper.cs │ │ │ │ │ ├── RefactoringContext.cs │ │ │ │ │ ├── Script.cs │ │ │ │ │ ├── TypeGuessing.cs │ │ │ │ │ ├── TypeSystemAstBuilder.cs │ │ │ │ │ ├── UsingHelper.cs │ │ │ │ │ ├── VariableReferenceGraph.cs │ │ │ │ │ └── WordParser.cs │ │ │ │ ├── Resolver │ │ │ │ │ ├── AliasNamespaceResolveResult.cs │ │ │ │ │ ├── AliasTypeResolveResult.cs │ │ │ │ │ ├── AwaitResolveResult.cs │ │ │ │ │ ├── CSharpAstResolver.cs │ │ │ │ │ ├── CSharpConversions.cs │ │ │ │ │ ├── CSharpInvocationResolveResult.cs │ │ │ │ │ ├── CSharpOperators.cs │ │ │ │ │ ├── CSharpResolver.cs │ │ │ │ │ ├── CastResolveResult.cs │ │ │ │ │ ├── CompositeResolveVisitorNavigator.cs │ │ │ │ │ ├── DetectSkippableNodesNavigator.cs │ │ │ │ │ ├── DynamicInvocationResolveResult.cs │ │ │ │ │ ├── DynamicMemberResolveResult.cs │ │ │ │ │ ├── FindReferenceSearchScope.cs │ │ │ │ │ ├── FindReferencedEntities.cs │ │ │ │ │ ├── FindReferences.cs │ │ │ │ │ ├── IResolveVisitorNavigator.cs │ │ │ │ │ ├── LambdaResolveResult.cs │ │ │ │ │ ├── Log.cs │ │ │ │ │ ├── MemberLookup.cs │ │ │ │ │ ├── MethodGroupResolveResult.cs │ │ │ │ │ ├── NodeListResolveVisitorNavigator.cs │ │ │ │ │ ├── OverloadResolution.cs │ │ │ │ │ ├── OverloadResolutionErrors.cs │ │ │ │ │ ├── ReducedExtensionMethod.cs │ │ │ │ │ ├── RenameCallbackArguments.cs │ │ │ │ │ ├── ResolveAtLocation.cs │ │ │ │ │ ├── ResolveVisitor.cs │ │ │ │ │ └── TypeInference.cs │ │ │ │ ├── TypeSystem │ │ │ │ │ ├── AliasNamespaceReference.cs │ │ │ │ │ ├── AttributeTypeReference.cs │ │ │ │ │ ├── CSharpAssembly.cs │ │ │ │ │ ├── CSharpAttribute.cs │ │ │ │ │ ├── CSharpDocumentationComment.cs │ │ │ │ │ ├── CSharpTypeResolveContext.cs │ │ │ │ │ ├── CSharpUnresolvedFile.cs │ │ │ │ │ ├── CSharpUnresolvedTypeDefinition.cs │ │ │ │ │ ├── ConstantValues.cs │ │ │ │ │ ├── MemberTypeOrNamespaceReference.cs │ │ │ │ │ ├── MethodTypeParameterWithInheritedConstraints.cs │ │ │ │ │ ├── ResolvedUsingScope.cs │ │ │ │ │ ├── SimpleTypeOrNamespaceReference.cs │ │ │ │ │ ├── TypeOrNamespaceReference.cs │ │ │ │ │ ├── TypeSystemConvertVisitor.cs │ │ │ │ │ └── UsingScope.cs │ │ │ │ └── Util │ │ │ │ │ └── CloneableStack.cs │ │ │ ├── ICSharpCode.NRefactory.Cecil │ │ │ │ ├── CecilLoader.cs │ │ │ │ ├── ICSharpCode.NRefactory.Cecil.csproj │ │ │ │ └── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── ICSharpCode.NRefactory.ConsistencyCheck │ │ │ │ ├── CSharpFile.cs │ │ │ │ ├── CSharpProject.cs │ │ │ │ ├── FindReferencesConsistencyCheck.cs │ │ │ │ ├── ICSharpCode.NRefactory.ConsistencyCheck.csproj │ │ │ │ ├── PatternMatchingTest.cs │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── RandomizedOrderResolverTest.cs │ │ │ │ ├── Readme.txt │ │ │ │ ├── ResolverTest.cs │ │ │ │ ├── RoundtripTest.cs │ │ │ │ ├── Solution.cs │ │ │ │ ├── TypeSystemTests.cs │ │ │ │ ├── VisitorBenchmark.cs │ │ │ │ ├── Xml │ │ │ │ │ ├── IncrementalXmlParserTests.cs │ │ │ │ │ └── XmlReaderTest.cs │ │ │ │ └── app.config │ │ │ ├── ICSharpCode.NRefactory.Demo │ │ │ │ ├── CSDemo.Designer.cs │ │ │ │ ├── CSDemo.cs │ │ │ │ ├── CSDemo.resx │ │ │ │ ├── ICSharpCode.NRefactory.Demo.csproj │ │ │ │ ├── MainForm.Designer.cs │ │ │ │ ├── MainForm.cs │ │ │ │ ├── MainForm.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── SemanticTreeDialog.Designer.cs │ │ │ │ ├── SemanticTreeDialog.cs │ │ │ │ ├── SemanticTreeDialog.resx │ │ │ │ ├── VBAstView.Designer.cs │ │ │ │ ├── VBAstView.cs │ │ │ │ ├── VBAstView.resx │ │ │ │ ├── VBDemo.Designer.cs │ │ │ │ ├── VBDemo.cs │ │ │ │ ├── VBDemo.resx │ │ │ │ ├── VBEditDialog.Designer.cs │ │ │ │ ├── VBEditDialog.cs │ │ │ │ └── VBEditDialog.resx │ │ │ ├── ICSharpCode.NRefactory.GtkDemo │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── CSharpDemo.cs │ │ │ │ ├── ICSharpCode.NRefactory.GtkDemo.csproj │ │ │ │ ├── Main.cs │ │ │ │ ├── MainWindow.cs │ │ │ │ ├── gtk-gui │ │ │ │ │ ├── ICSharpCode.NRefactory.GtkDemo.MainWindow.cs │ │ │ │ │ ├── generated.cs │ │ │ │ │ └── gui.stetic │ │ │ │ └── pixbuf │ │ │ │ │ ├── comment.png │ │ │ │ │ ├── element-class-16.png │ │ │ │ │ ├── element-field-16.png │ │ │ │ │ ├── element-literal-16.png │ │ │ │ │ ├── element-method-16.png │ │ │ │ │ └── element-namespace-16.png │ │ │ ├── ICSharpCode.NRefactory.IKVM │ │ │ │ ├── ICSharpCode.NRefactory.IKVM.csproj │ │ │ │ ├── IkvmLoader.cs │ │ │ │ ├── IntConstantValue.cs │ │ │ │ ├── NonFrozenInterningProvider.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── ShortConstantValue.cs │ │ │ │ ├── StringConstantValue.cs │ │ │ │ └── StructConstantValue.cs │ │ │ ├── ICSharpCode.NRefactory.Tests │ │ │ │ ├── Analysis │ │ │ │ │ ├── AbiComparerTests.cs │ │ │ │ │ └── SymbolCollectorTests.cs │ │ │ │ ├── CSharp │ │ │ │ │ ├── Analysis │ │ │ │ │ │ ├── DeclarationSpace │ │ │ │ │ │ │ ├── LocalDeclarationSpaceTests.cs │ │ │ │ │ │ │ └── LocalDeclarationSpaceVisitorTests.cs │ │ │ │ │ │ ├── DefiniteAssignmentTests.cs │ │ │ │ │ │ ├── NullValueAnalysisTests.cs │ │ │ │ │ │ └── SemanticHighlightingTests.cs │ │ │ │ │ ├── AstStructureTests.cs │ │ │ │ │ ├── AstTests.cs │ │ │ │ │ ├── CSharpAmbienceTests.cs │ │ │ │ │ ├── CSharpOutputVisitorTests.cs │ │ │ │ │ ├── CodeActions │ │ │ │ │ │ ├── AbstractAndVirtualConversionActionTests.cs │ │ │ │ │ │ ├── AddAnotherAccessorTests.cs │ │ │ │ │ │ ├── AddArgumentNameTests.cs │ │ │ │ │ │ ├── AddBracesActionTests.cs │ │ │ │ │ │ ├── AddCatchTypeTests.cs │ │ │ │ │ │ ├── AddExceptionDescriptionActionTests.cs │ │ │ │ │ │ ├── AddOptionalParameterToInvocationTests.cs │ │ │ │ │ │ ├── AddUsing │ │ │ │ │ │ │ ├── AddUsingActionAlphabeticalTests.cs │ │ │ │ │ │ │ ├── AddUsingActionInsideNamespaceTests.cs │ │ │ │ │ │ │ ├── AddUsingActionTests.cs │ │ │ │ │ │ │ └── AddUsingRunActionTests.cs │ │ │ │ │ │ ├── AutoLinqSumTests.cs │ │ │ │ │ │ ├── CS1105ExtensionMethodMustBeDeclaredStaticActionTests.cs │ │ │ │ │ │ ├── CS1520MethodMustHaveAReturnTypeTests.cs │ │ │ │ │ │ ├── ChangeAccessModifierTests.cs │ │ │ │ │ │ ├── CheckIfParameterIsNullTests.cs │ │ │ │ │ │ ├── ComputeConstantValueTests.cs │ │ │ │ │ │ ├── ContextActionTestBase.cs │ │ │ │ │ │ ├── ConvertAnonymousDelegateToLambdaTests.cs │ │ │ │ │ │ ├── ConvertAsToCastTests.cs │ │ │ │ │ │ ├── ConvertAssignmentToIfActionTests.cs │ │ │ │ │ │ ├── ConvertBitwiseFlagComparisonToHasFlagsActionTests.cs │ │ │ │ │ │ ├── ConvertCastToAsTests.cs │ │ │ │ │ │ ├── ConvertDecToHexTests.cs │ │ │ │ │ │ ├── ConvertDoWhileToWhileLoopTests.cs │ │ │ │ │ │ ├── ConvertEqualityOperatorToEqualsActionTests.cs │ │ │ │ │ │ ├── ConvertEqualsToEqualityOperatorActionTests.cs │ │ │ │ │ │ ├── ConvertExplicitToImplicitImplementationTests.cs │ │ │ │ │ │ ├── ConvertForToWhileActionTests.cs │ │ │ │ │ │ ├── ConvertForeachToForTests.cs │ │ │ │ │ │ ├── ConvertHasFlagsToBitwiseFlagComparisonActionTests.cs │ │ │ │ │ │ ├── ConvertHexToDecTests.cs │ │ │ │ │ │ ├── ConvertIfStatementToConditionalTernaryExpressionActionTests.cs │ │ │ │ │ │ ├── ConvertIfStatementToNullCoalescingExpressionActionTests.cs │ │ │ │ │ │ ├── ConvertIfStatementToReturnStatementActionTests.cs │ │ │ │ │ │ ├── ConvertIfStatementToSwitchStatementActionTests.cs │ │ │ │ │ │ ├── ConvertImplicitToExplicittImplementationTests.cs │ │ │ │ │ │ ├── ConvertLambdaBodyExpressionToStatementTests.cs │ │ │ │ │ │ ├── ConvertLambdaBodyStatementToExpressionTests.cs │ │ │ │ │ │ ├── ConvertLamdaToAnonymousDelegateTests.cs │ │ │ │ │ │ ├── ConvertMethodGroupToAnonymousMethodActionTests.cs │ │ │ │ │ │ ├── ConvertMethodGroupToLambdaActionTests.cs │ │ │ │ │ │ ├── ConvertMultiplyToShiftActionTests.cs │ │ │ │ │ │ ├── ConvertNullCoalescingToConditionalExpressionActionTests.cs │ │ │ │ │ │ ├── ConvertReturnStatementToIfActionTests.cs │ │ │ │ │ │ ├── ConvertShiftToMultiplyActionTests.cs │ │ │ │ │ │ ├── ConvertSwitchToIfTests.cs │ │ │ │ │ │ ├── ConvertToInitializer │ │ │ │ │ │ │ ├── ConvertInitializerToExplicitIntializationsTests.cs │ │ │ │ │ │ │ └── ConvertToInitializerTests.cs │ │ │ │ │ │ ├── ConvertWhileToDoWhileLoopTests.cs │ │ │ │ │ │ ├── CopyCommentsFromBaseTests.cs │ │ │ │ │ │ ├── CopyCommentsFromIntefaceTests.cs │ │ │ │ │ │ ├── CreateBackingStoreTests.cs │ │ │ │ │ │ ├── CreateChangedEventTests.cs │ │ │ │ │ │ ├── CreateClassDeclarationTests.cs │ │ │ │ │ │ ├── CreateConstructorDeclarationTests.cs │ │ │ │ │ │ ├── CreateCustomEventImplementationTests.cs │ │ │ │ │ │ ├── CreateDelegateTests.cs │ │ │ │ │ │ ├── CreateEnumValueTests.cs │ │ │ │ │ │ ├── CreateEventInvocatorTests.cs │ │ │ │ │ │ ├── CreateFieldTests.cs │ │ │ │ │ │ ├── CreateIndexerTests.cs │ │ │ │ │ │ ├── CreateLocalVariableTests.cs │ │ │ │ │ │ ├── CreateMethodDeclarationTests.cs │ │ │ │ │ │ ├── CreateOverloadWithoutParameterTests.cs │ │ │ │ │ │ ├── CreatePropertyTests.cs │ │ │ │ │ │ ├── DeclareLocalVariableTests.cs │ │ │ │ │ │ ├── ExtensionMethodInvocationToStaticMethodInvocationTests.cs │ │ │ │ │ │ ├── ExtractAnonymousMethodTests.cs │ │ │ │ │ │ ├── ExtractFieldTests.cs │ │ │ │ │ │ ├── ExtractMethodTests.cs │ │ │ │ │ │ ├── ExtractWhileConditionToInternalIfStatementActionTests.cs │ │ │ │ │ │ ├── FlipEqualsTargetAndArgumentActionTests.cs │ │ │ │ │ │ ├── FlipOperatorArgumentsTests.cs │ │ │ │ │ │ ├── GenerateGetterTests.cs │ │ │ │ │ │ ├── GeneratePropertyTests.cs │ │ │ │ │ │ ├── GenerateSwitchLabelsTests.cs │ │ │ │ │ │ ├── ImplementAbstractMembersTest.cs │ │ │ │ │ │ ├── ImplementInterfaceExplicitTests.cs │ │ │ │ │ │ ├── ImplementInterfaceTests.cs │ │ │ │ │ │ ├── ImplementNotImplementedPropertyTests.cs │ │ │ │ │ │ ├── InlineLocalVariableTests.cs │ │ │ │ │ │ ├── InsertAnonymousMethodSignatureTests.cs │ │ │ │ │ │ ├── IntroduceConstantTests.cs │ │ │ │ │ │ ├── IntroduceFormatItemTests.cs │ │ │ │ │ │ ├── InvertConditionalOperatorActionTests.cs │ │ │ │ │ │ ├── InvertIfAndSimplifyTests.cs │ │ │ │ │ │ ├── InvertIfTests.cs │ │ │ │ │ │ ├── InvertLogicalExpressionTests.cs │ │ │ │ │ │ ├── IterateViaForeachTests.cs │ │ │ │ │ │ ├── JoinDeclarationAndAssignmentTests.cs │ │ │ │ │ │ ├── JoinStringTests.cs │ │ │ │ │ │ ├── LinqFluentToQueryTests.cs │ │ │ │ │ │ ├── LinqQueryToFluentTests.cs │ │ │ │ │ │ ├── MergeNestedIfTests.cs │ │ │ │ │ │ ├── MetaTests.cs │ │ │ │ │ │ ├── MoveToOuterScopeTests.cs │ │ │ │ │ │ ├── NegateIsExpressionActionTests.cs │ │ │ │ │ │ ├── NegateRelationalExpressionTests.cs │ │ │ │ │ │ ├── PutInsideUsingTests.cs │ │ │ │ │ │ ├── RemoveBackingStoreTests.cs │ │ │ │ │ │ ├── RemoveBracesTests.cs │ │ │ │ │ │ ├── RemoveFieldRefactoryActionTests.cs │ │ │ │ │ │ ├── RemoveRedundantCatchTypeTests.cs │ │ │ │ │ │ ├── RemoveRegionTests.cs │ │ │ │ │ │ ├── ReplaceAssignmentWithPostfixExpressionActionTests.cs │ │ │ │ │ │ ├── ReplaceEmptyStringTests.cs │ │ │ │ │ │ ├── ReplaceOperatorAssignmentWithAssignmentActionTests.cs │ │ │ │ │ │ ├── ReplacePostfixExpressionWithAssignmentActionTests.cs │ │ │ │ │ │ ├── ReplaceWithOperatorAssignmentActionTests.cs │ │ │ │ │ │ ├── ReverseDirectionForForLoopTests.cs │ │ │ │ │ │ ├── SimplifyIfFlowInLoopsTests.cs │ │ │ │ │ │ ├── SimplifyIfFlowTests.cs │ │ │ │ │ │ ├── SortUsingsTests.cs │ │ │ │ │ │ ├── SplitDeclarationAndAssignmentTests.cs │ │ │ │ │ │ ├── SplitDeclarationListTests.cs │ │ │ │ │ │ ├── SplitIfActionTests.cs │ │ │ │ │ │ ├── SplitStringTests.cs │ │ │ │ │ │ ├── TestRefactoringContext.cs │ │ │ │ │ │ ├── UseAsAndNullCheckActionTests.cs │ │ │ │ │ │ ├── UseExplicitTypeTests.cs │ │ │ │ │ │ ├── UseStringFormatTests.cs │ │ │ │ │ │ └── UseVarKeywordTests.cs │ │ │ │ │ ├── CodeCompletion │ │ │ │ │ │ ├── BrowsableAttributeTests.cs │ │ │ │ │ │ ├── CodeCompletionAccessibleTests.cs │ │ │ │ │ │ ├── CodeCompletionBugTests.cs │ │ │ │ │ │ ├── CodeCompletionCSharp3Tests.cs │ │ │ │ │ │ ├── CodeCompletionCSharpTests.cs │ │ │ │ │ │ ├── CodeCompletionOperatorTests.cs │ │ │ │ │ │ ├── CompletionDataList.cs │ │ │ │ │ │ ├── DelegateContextTests.cs │ │ │ │ │ │ ├── DocumentationContextTests.cs │ │ │ │ │ │ ├── EnumContextTests.cs │ │ │ │ │ │ ├── FormatItemTests.cs │ │ │ │ │ │ ├── GetCurrentParameterIndexTests.cs │ │ │ │ │ │ ├── ImportCompletionTests.cs │ │ │ │ │ │ ├── KeywordTests.cs │ │ │ │ │ │ ├── NameContextTests.cs │ │ │ │ │ │ ├── ObjectInitializerTests.cs │ │ │ │ │ │ ├── ParameterCompletionTests.cs │ │ │ │ │ │ ├── PreProcessorTests.cs │ │ │ │ │ │ ├── TestBase.cs │ │ │ │ │ │ └── VariableDeclarationStatementTests.cs │ │ │ │ │ ├── CodeDomConvertVisitorTests.cs │ │ │ │ │ ├── CodeIssues │ │ │ │ │ │ ├── AccessToDisposedClosureTests.cs │ │ │ │ │ │ ├── AccessToModifiedClosureTests.cs │ │ │ │ │ │ ├── AccessToStaticMemberViaDerivedTypeIssueTests.cs │ │ │ │ │ │ ├── AdditionalOfTypeIssuesTests.cs │ │ │ │ │ │ ├── ArrayCreationCanBeReplacedWithArrayInitializerIssueTests.cs │ │ │ │ │ │ ├── AutoAsyncTests.cs │ │ │ │ │ │ ├── BaseMemberHasParamsIssueTests.cs │ │ │ │ │ │ ├── BaseMethodCallWithDefaultParameterIssueTests.cs │ │ │ │ │ │ ├── BaseMethodParameterNameMismatchIssueTests.cs │ │ │ │ │ │ ├── BitwiseOperatorOnEnumWithoutFlagsIssueTests.cs │ │ │ │ │ │ ├── CS0029InvalidConversionIssueTests.cs │ │ │ │ │ │ ├── CS0126ReturnMustBeFollowedByAnyExpressionTestes.cs │ │ │ │ │ │ ├── CS0127ReturnMustNotBeFollowedByAnyExpressionTests.cs │ │ │ │ │ │ ├── CS0152DuplicateCaseLabelValueIssueTests.cs │ │ │ │ │ │ ├── CS0169FieldIsNeverUsedIssueTests.cs │ │ │ │ │ │ ├── CS0183ExpressionIsAlwaysOfProvidedTypeIssueTests.cs │ │ │ │ │ │ ├── CS0618UsageOfObsoleteMemberIssueTests.cs │ │ │ │ │ │ ├── CS0659OverrideEqualsWithoutGetHashCodeTests.cs │ │ │ │ │ │ ├── CS0759RedundantPartialMethodIssueTests.cs │ │ │ │ │ │ ├── CS1573ParameterHasNoMatchingParamTagIssueTests.cs │ │ │ │ │ │ ├── CS1717AssignmentMadeToSameVariableIssueTests.cs │ │ │ │ │ │ ├── CS1729TypeHasNoConstructorWithNArgumentsIssueTests.cs │ │ │ │ │ │ ├── CallToObjectEqualsViaBaseTests.cs │ │ │ │ │ │ ├── CanBeReplacedWithTryCastAndCheckForNullIssueTests.cs │ │ │ │ │ │ ├── CastExpressionOfIncompatibleTypeIssueTests.cs │ │ │ │ │ │ ├── CheckNamespaceIssueTests.cs │ │ │ │ │ │ ├── CompareNonConstrainedGenericWithNullIssueTests.cs │ │ │ │ │ │ ├── CompareOfFloatsByEqualityOperatorIssueTests.cs │ │ │ │ │ │ ├── ConditionIsAlwaysTrueOrFalseIssueTests.cs │ │ │ │ │ │ ├── ConditionalTernaryEqualBranchTests.cs │ │ │ │ │ │ ├── ConstantConditionIssueTests.cs │ │ │ │ │ │ ├── ConstantNullCoalescingConditionIssueTests.cs │ │ │ │ │ │ ├── ConvertClosureToMethodGroupIssueTests.cs │ │ │ │ │ │ ├── ConvertConditionalTernaryToNullCoalescingIssueTests.cs │ │ │ │ │ │ ├── ConvertIfDoToWhileIssueTests.cs │ │ │ │ │ │ ├── ConvertIfStatementToConditionalTernaryExpressionIssueTests.cs │ │ │ │ │ │ ├── ConvertIfStatementToNullCoalescingExpressionIssueTests.cs │ │ │ │ │ │ ├── ConvertIfStatementToSwitchStatementIssueTests.cs │ │ │ │ │ │ ├── ConvertIfToAndExpressionIssueTests.cs │ │ │ │ │ │ ├── ConvertIfToOrExpressionIssueTests.cs │ │ │ │ │ │ ├── ConvertNullableToShortFormIssueTests.cs │ │ │ │ │ │ ├── ConvertTailRecursiveCallToLoopIssueTests.cs │ │ │ │ │ │ ├── ConvertToAutoPropertyIssueTests.cs │ │ │ │ │ │ ├── ConvertToConstantIssueTests.cs │ │ │ │ │ │ ├── ConvertToLambdaExpressionIssueTests.cs │ │ │ │ │ │ ├── ConvertToStaticTypeTests.cs │ │ │ │ │ │ ├── DelegateSubtractionIssueTests.cs │ │ │ │ │ │ ├── DisposeMethodInNonIDisposableTypeTests.cs │ │ │ │ │ │ ├── DoNotCallOverridableMethodsInConstructorIssueTests.cs │ │ │ │ │ │ ├── DontUseLinqWhenItsVerboseAndInefficientTests.cs │ │ │ │ │ │ ├── DoubleNegationOperatorIssueTests.cs │ │ │ │ │ │ ├── DuplicateBodyMethodIssueTests.cs │ │ │ │ │ │ ├── DuplicateExpressionsInConditionsIssueTests.cs │ │ │ │ │ │ ├── DuplicateIfInIfChainIssueTests.cs │ │ │ │ │ │ ├── DuplicatedLinqToListOrArrayTests.cs │ │ │ │ │ │ ├── EmptyConstructorIssueTests.cs │ │ │ │ │ │ ├── EmptyDestructorTests.cs │ │ │ │ │ │ ├── EmptyEmbeddedStatementIssueTests.cs │ │ │ │ │ │ ├── EmptyGeneralCatchClauseTests.cs │ │ │ │ │ │ ├── EmptyNamespaceTests.cs │ │ │ │ │ │ ├── EmptyStatementIssueTests.cs │ │ │ │ │ │ ├── EnumUnderlyingTypeIsIntTests.cs │ │ │ │ │ │ ├── EqualExpressionComparisonIssueTests.cs │ │ │ │ │ │ ├── EventUnsubscriptionViaAnonymousDelegateIssueTests.cs │ │ │ │ │ │ ├── ExceptionRethrowTests.cs │ │ │ │ │ │ ├── ExplicitConversionInForEachIssueTests.cs │ │ │ │ │ │ ├── ExpressionIsNeverOfProvidedTypeIssueTests.cs │ │ │ │ │ │ ├── FieldCanBeMadeReadOnlyIssueTests.cs │ │ │ │ │ │ ├── ForCanBeConvertedToForeachIssueTests.cs │ │ │ │ │ │ ├── ForControlVariableIsNeverModifiedIssueTests.cs │ │ │ │ │ │ ├── ForStatementConditionIsTrueTests.cs │ │ │ │ │ │ ├── FormatStringProblemIssueTests.cs │ │ │ │ │ │ ├── FunctionNeverReturnsIssueTests.cs │ │ │ │ │ │ ├── InconsistentNamingTests.cs │ │ │ │ │ │ ├── IncorrectCallToGetHashCodeTests.cs │ │ │ │ │ │ ├── InspectionActionTestBase.cs │ │ │ │ │ │ ├── InvokeAsExtensionMethodIssueTests.cs │ │ │ │ │ │ ├── LocalVariableHidesMemberIssueTests.cs │ │ │ │ │ │ ├── LocalVariableNotUsedIssueTests.cs │ │ │ │ │ │ ├── LockThisTests.cs │ │ │ │ │ │ ├── LongLiteralEndingLowerLIssueTests.cs │ │ │ │ │ │ ├── LoopCanBeConvertedToQueryIssueTests.cs │ │ │ │ │ │ ├── MemberCanBeMadeStaticIssueTests.cs │ │ │ │ │ │ ├── MemberHidesStaticFromOuterClassIssueTests.cs │ │ │ │ │ │ ├── MethodOverloadWithOptionalParameterIssueTests.cs │ │ │ │ │ │ ├── MissingInterfaceMemberImplementationIssueTests.cs │ │ │ │ │ │ ├── NegativeRelationalExpressionIssueTests.cs │ │ │ │ │ │ ├── NonPublicMethodWithTestAttributeIssueTests.cs │ │ │ │ │ │ ├── NonReadonlyReferencedInGetHashCodeTests.cs │ │ │ │ │ │ ├── NonReadonlyReferencedInGetHashCodeTetsts.cs │ │ │ │ │ │ ├── NotImplementedExceptionInspectorTests.cs │ │ │ │ │ │ ├── NotResolvedInTextIssueTests.cs │ │ │ │ │ │ ├── ObjectCreationAsStatementIssueTests.cs │ │ │ │ │ │ ├── OperatorIsCanBeUsedIssueTests.cs │ │ │ │ │ │ ├── OptionalParameterHierarchyMismatchIssueTests.cs │ │ │ │ │ │ ├── OptionalParameterRefOutIssueTests.cs │ │ │ │ │ │ ├── ParameterCanBeDemotedIssue │ │ │ │ │ │ │ ├── IsTypeCriterionTests.cs │ │ │ │ │ │ │ ├── ParameterCanBeDeclaredWithBaseTypeIssueTests.cs │ │ │ │ │ │ │ ├── ParameterCanBeIEnumerableTests.cs │ │ │ │ │ │ │ └── SupportsIndexingCriterionTests.cs │ │ │ │ │ │ ├── ParameterHidesMemberIssueTests.cs │ │ │ │ │ │ ├── ParameterOnlyAssignedIssueTests.cs │ │ │ │ │ │ ├── PartOfBodyCanBeConvertedToQueryIssueTests.cs │ │ │ │ │ │ ├── PartialMethodParameterNameMismatchIssueTests.cs │ │ │ │ │ │ ├── PartialTypeWithSinglePartIssueTests.cs │ │ │ │ │ │ ├── PolymorphicFieldLikeEventInvocationIssueTests.cs │ │ │ │ │ │ ├── PossibleAssignmentToReadonlyFieldIssueTests.cs │ │ │ │ │ │ ├── PossibleMistakenCallToGetTypeIssueTests.cs │ │ │ │ │ │ ├── PossibleMultipleEnumerationIssueTests.cs │ │ │ │ │ │ ├── ProhibitedModifiersIssueTests.cs │ │ │ │ │ │ ├── PublicConstructorInAbstractClassIssueTest.cs │ │ │ │ │ │ ├── RedundantAnonymousTypePropertyNameIssueTests.cs │ │ │ │ │ │ ├── RedundantArgumentDefaultValueIssueTests.cs │ │ │ │ │ │ ├── RedundantArgumentNameTests.cs │ │ │ │ │ │ ├── RedundantAssignmentIssueTests.cs │ │ │ │ │ │ ├── RedundantAttributeParenthesesIssueTests.cs │ │ │ │ │ │ ├── RedundantBaseConstructorIssueTests.cs │ │ │ │ │ │ ├── RedundantBaseQualifierTests.cs │ │ │ │ │ │ ├── RedundantBlockInDifferentBranchesTests.cs │ │ │ │ │ │ ├── RedundantBoolCompareIssueTests.cs │ │ │ │ │ │ ├── RedundantCaseLabelIssueTests.cs │ │ │ │ │ │ ├── RedundantCastIssueTests.cs │ │ │ │ │ │ ├── RedundantCatchClauseIssueTests.cs │ │ │ │ │ │ ├── RedundantCheckBeforeAssignmentTests.cs │ │ │ │ │ │ ├── RedundantCommaInArrayInitializerIssueTests.cs │ │ │ │ │ │ ├── RedundantComparisonWithNullIssueTests.cs │ │ │ │ │ │ ├── RedundantDefaultFieldInitializerIssueTests.cs │ │ │ │ │ │ ├── RedundantDelegateCreationIssueTests.cs │ │ │ │ │ │ ├── RedundantEmptyDefaultSwitchBranchIssueTests.cs │ │ │ │ │ │ ├── RedundantEmptyFinallyBlockIssueTests.cs │ │ │ │ │ │ ├── RedundantEnumerableCastCallIssueTests.cs │ │ │ │ │ │ ├── RedundantExplicitArrayCreationIssueTests.cs │ │ │ │ │ │ ├── RedundantExplicitArraySizeIssueTests.cs │ │ │ │ │ │ ├── RedundantExplicitNullableCreationIssueTests.cs │ │ │ │ │ │ ├── RedundantExtendsListEntryIssueTests.cs │ │ │ │ │ │ ├── RedundantIfElseBlockIssueTests.cs │ │ │ │ │ │ ├── RedundantInternalInspectorTests.cs │ │ │ │ │ │ ├── RedundantLambdaParameterTypeTests.cs │ │ │ │ │ │ ├── RedundantLambdaSignatureParenthesesIssueTests.cs │ │ │ │ │ │ ├── RedundantLogicalConditionalExpressionOperandIssueTests.cs │ │ │ │ │ │ ├── RedundantNameQualifierIssueTests.cs │ │ │ │ │ │ ├── RedundantNotNullAttributeInNonNullableTypeTests.cs │ │ │ │ │ │ ├── RedundantObjectCreationArgumentListIssueTests.cs │ │ │ │ │ │ ├── RedundantObjectOrCollectionInitializerIssueTests.cs │ │ │ │ │ │ ├── RedundantOverridenMemberTests.cs │ │ │ │ │ │ ├── RedundantParamsIssueTests.cs │ │ │ │ │ │ ├── RedundantPrivateInspectorTests.cs │ │ │ │ │ │ ├── RedundantStringToCharArrayCallIssueTests.cs │ │ │ │ │ │ ├── RedundantTernaryExpressionIssueTests.cs │ │ │ │ │ │ ├── RedundantThisQualifierIssueTests.cs │ │ │ │ │ │ ├── RedundantToStringCallForValueTypesIssue.cs │ │ │ │ │ │ ├── RedundantToStringCallIssueTests.cs │ │ │ │ │ │ ├── RedundantTypeArgumentsOfMethodIssueTests.cs │ │ │ │ │ │ ├── RedundantUnsafeContextIssueTests.cs │ │ │ │ │ │ ├── RedundantUsingDirectiveIssueTests.cs │ │ │ │ │ │ ├── RedundantWhereWithPredicateIssueTests.cs │ │ │ │ │ │ ├── ReferenceEqualsWithValueTypeIssueTests.cs │ │ │ │ │ │ ├── RemoveRedundantOrStatementIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithFirstOrDefaultIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithLastOrDefaultIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithOfTypeAnyIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithOfTypeCountIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithOfTypeFirstIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithOfTypeFirstOrDefaultIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithOfTypeIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithOfTypeLastIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithOfTypeLastOrDefaultIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithOfTypeLongCountIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithOfTypeSingleIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithOfTypeSingleOrDefaultIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithOfTypeWhereIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithSimpleAssignmentIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToAverageIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToCountIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToFirstIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToFirstOrDefaultIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToLastIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToLastOrDefaultIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToLongCountIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToMaxIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToMinIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToSingleIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToSingleOrDefaultIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithSingleCallToSumIssueTests.cs │ │ │ │ │ │ ├── ReplaceWithStringIsNullOrEmptyIssueTests.cs │ │ │ │ │ │ ├── RewriteIfReturnToReturnIssueTests.cs │ │ │ │ │ │ ├── SameGuardConditionExpressionInIfElseBranchesTests.cs │ │ │ │ │ │ ├── SealedMemberInSealedClassIssueTests.cs │ │ │ │ │ │ ├── SimplifyConditionalTernaryExpressionIssueTests.cs │ │ │ │ │ │ ├── SimplifyLinqExpressionIssueTests.cs │ │ │ │ │ │ ├── StaticConstructorParameterIssueTests.cs │ │ │ │ │ │ ├── StaticEventSubscriptionIssueTests.cs │ │ │ │ │ │ ├── StaticFieldInGenericTypeTests.cs │ │ │ │ │ │ ├── StringCompareIsCultureSpecificIssueTests.cs │ │ │ │ │ │ ├── StringCompareToIsCultureSpecificIssueTests.cs │ │ │ │ │ │ ├── StringEndsWithIsCultureSpecificIssueTest.cs │ │ │ │ │ │ ├── StringIndexOfIsCultureSpecificIssueTest.cs │ │ │ │ │ │ ├── StringLastIndexOfIsCultureSpecificIssueTest.cs │ │ │ │ │ │ ├── StringStartsWithIsCultureSpecificIssueTest.cs │ │ │ │ │ │ ├── SuggestUseVarKeywordEvidentTests.cs │ │ │ │ │ │ ├── ThreadStaticAtInstanceFieldTests.cs │ │ │ │ │ │ ├── UnassignedReadonlyFieldIssueTests.cs │ │ │ │ │ │ ├── UnmatchedSizeSpeicificationInArrayCreationTests.cs │ │ │ │ │ │ ├── UnreachableCodeIssueTests.cs │ │ │ │ │ │ ├── UnusedAnonymousMethodSignatureIssueTests.cs │ │ │ │ │ │ ├── UnusedLabelIssueTests.cs │ │ │ │ │ │ ├── UnusedParameterIssueTests.cs │ │ │ │ │ │ ├── UnusedTypeParameterIssueTests.cs │ │ │ │ │ │ ├── UseArrayCreationExpressionIssueTests.cs │ │ │ │ │ │ ├── UseIsOperatorIssueTests.cs │ │ │ │ │ │ ├── UseMethodAnyIssueTests.cs │ │ │ │ │ │ ├── UseMethodIsInstanceOfTypeIssueTests.cs │ │ │ │ │ │ ├── UseOfMemberOfNullReferenceTests.cs │ │ │ │ │ │ ├── ValueParameterNotUsedIssueTests.cs │ │ │ │ │ │ ├── VariableDeclaredInWideScopeTests.cs │ │ │ │ │ │ └── XmlDocIssueIssueTests.cs │ │ │ │ │ ├── DepthFirstVisitorTests.cs │ │ │ │ │ ├── InsertMissingTokensDecoratorTests.cs │ │ │ │ │ ├── InsertParenthesesVisitorTests.cs │ │ │ │ │ ├── Inspector │ │ │ │ │ │ └── InconsistentNamingIssueTests.cs │ │ │ │ │ ├── Parser │ │ │ │ │ │ ├── Bugs │ │ │ │ │ │ │ └── ParserBugTests.cs │ │ │ │ │ │ ├── ConsistencyChecker.cs │ │ │ │ │ │ ├── Expression │ │ │ │ │ │ │ ├── AnonymousMethodExpressionTests.cs │ │ │ │ │ │ │ ├── AnonymousTypeCreateExpressionTests.cs │ │ │ │ │ │ │ ├── ArrayCreateExpressionTests.cs │ │ │ │ │ │ │ ├── AssignmentExpressionTests.cs │ │ │ │ │ │ │ ├── BaseReferenceExpressionTests.cs │ │ │ │ │ │ │ ├── BinaryOperatorExpressionTests.cs │ │ │ │ │ │ │ ├── CastExpressionTests.cs │ │ │ │ │ │ │ ├── CheckedExpressionTests.cs │ │ │ │ │ │ │ ├── ConditionalExpressionTests.cs │ │ │ │ │ │ │ ├── DefaultValueExpressionTests.cs │ │ │ │ │ │ │ ├── IdentifierExpressionTests.cs │ │ │ │ │ │ │ ├── IndexerExpressionTests.cs │ │ │ │ │ │ │ ├── InvocationExpressionTests.cs │ │ │ │ │ │ │ ├── IsExpressionTests.cs │ │ │ │ │ │ │ ├── LambdaExpressionTests.cs │ │ │ │ │ │ │ ├── MemberReferenceExpressionTests.cs │ │ │ │ │ │ │ ├── ObjectCreateExpressionTests.cs │ │ │ │ │ │ │ ├── ParenthesizedExpressionTests.cs │ │ │ │ │ │ │ ├── PointerReferenceExpressionTests.cs │ │ │ │ │ │ │ ├── PrimitiveExpressionTests.cs │ │ │ │ │ │ │ ├── QueryExpressionTests.cs │ │ │ │ │ │ │ ├── SizeOfExpressionTests.cs │ │ │ │ │ │ │ ├── StackAllocExpressionTests.cs │ │ │ │ │ │ │ ├── ThisReferenceExpressionTests.cs │ │ │ │ │ │ │ ├── TypeOfExpressionTests.cs │ │ │ │ │ │ │ ├── TypeReferenceExpressionTests.cs │ │ │ │ │ │ │ ├── UnaryOperatorExpressionTests.cs │ │ │ │ │ │ │ └── UndocumentedExpressionTests.cs │ │ │ │ │ │ ├── GeneralScope │ │ │ │ │ │ │ ├── AttributeSectionTests.cs │ │ │ │ │ │ │ ├── CommentTests.cs │ │ │ │ │ │ │ ├── DelegateDeclarationTests.cs │ │ │ │ │ │ │ ├── NamespaceDeclarationTests.cs │ │ │ │ │ │ │ ├── PreprocessorDirectiveTests.cs │ │ │ │ │ │ │ ├── TypeDeclarationTests.cs │ │ │ │ │ │ │ └── UsingDeclarationTests.cs │ │ │ │ │ │ ├── ParseSelfTests.cs │ │ │ │ │ │ ├── ParseUtil.cs │ │ │ │ │ │ ├── Statements │ │ │ │ │ │ │ ├── BlockStatementTests.cs │ │ │ │ │ │ │ ├── CheckedStatementTests.cs │ │ │ │ │ │ │ ├── EmptyStatementTests.cs │ │ │ │ │ │ │ ├── ExpressionStatementTests.cs │ │ │ │ │ │ │ ├── FixedStatementTests.cs │ │ │ │ │ │ │ ├── ForStatementTests.cs │ │ │ │ │ │ │ ├── GotoStatementTests.cs │ │ │ │ │ │ │ ├── IfElseStatementTests.cs │ │ │ │ │ │ │ ├── InvalidStatementsTests.cs │ │ │ │ │ │ │ ├── LabelStatementTests.cs │ │ │ │ │ │ │ ├── LockStatementTests.cs │ │ │ │ │ │ │ ├── ReturnStatementTests.cs │ │ │ │ │ │ │ ├── SwitchStatementTests.cs │ │ │ │ │ │ │ ├── ThrowStatementTests.cs │ │ │ │ │ │ │ ├── TryCatchStatementTests.cs │ │ │ │ │ │ │ ├── UnsafeStatementTests.cs │ │ │ │ │ │ │ ├── UsingStatementTests.cs │ │ │ │ │ │ │ ├── VariableDeclarationStatementTests.cs │ │ │ │ │ │ │ ├── WhileStatementTests.cs │ │ │ │ │ │ │ └── YieldStatementTests.cs │ │ │ │ │ │ ├── TypeMembers │ │ │ │ │ │ │ ├── ConstructorDeclarationTests.cs │ │ │ │ │ │ │ ├── DestructorDeclarationTests.cs │ │ │ │ │ │ │ ├── EventDeclarationTests.cs │ │ │ │ │ │ │ ├── FieldDeclarationTests.cs │ │ │ │ │ │ │ ├── IndexerDeclarationTests.cs │ │ │ │ │ │ │ ├── MethodDeclarationTests.cs │ │ │ │ │ │ │ ├── OperatorDeclarationTests.cs │ │ │ │ │ │ │ └── PropertyDeclarationTests.cs │ │ │ │ │ │ └── TypeSystemConvertVisitorTests.cs │ │ │ │ │ ├── QueryExpressionExpanderTests.cs │ │ │ │ │ ├── Refactoring │ │ │ │ │ │ ├── LambdaHelperTests.cs │ │ │ │ │ │ ├── NamingHelperTests.cs │ │ │ │ │ │ ├── RefactoringStructureTests.cs │ │ │ │ │ │ ├── ScriptTests.cs │ │ │ │ │ │ └── TypeSystemAstBuilderTests.cs │ │ │ │ │ └── Resolver │ │ │ │ │ │ ├── AnonymousTypeTests.cs │ │ │ │ │ │ ├── ArrayCreateTests.cs │ │ │ │ │ │ ├── AttributeTests.cs │ │ │ │ │ │ ├── BinaryOperatorTests.cs │ │ │ │ │ │ ├── CastTests.cs │ │ │ │ │ │ ├── ComTests.cs │ │ │ │ │ │ ├── ConditionalOperatorTests.cs │ │ │ │ │ │ ├── ConversionsTest.cs │ │ │ │ │ │ ├── DynamicTests.cs │ │ │ │ │ │ ├── ExplicitConversionsTest.cs │ │ │ │ │ │ ├── ExtensionMethodTests.cs │ │ │ │ │ │ ├── FindReferencesTest.cs │ │ │ │ │ │ ├── InvocationTests.cs │ │ │ │ │ │ ├── LambdaTests.cs │ │ │ │ │ │ ├── LinqTests.cs │ │ │ │ │ │ ├── LocalTypeInferenceTests.cs │ │ │ │ │ │ ├── MemberLookupTests.cs │ │ │ │ │ │ ├── MethodTests.cs │ │ │ │ │ │ ├── NameLookupTests.cs │ │ │ │ │ │ ├── ObjectCreationTests.cs │ │ │ │ │ │ ├── OverloadResolutionTests.cs │ │ │ │ │ │ ├── ResolveAtLocationTests.cs │ │ │ │ │ │ ├── ResolverTestBase.cs │ │ │ │ │ │ ├── SizeOfTests.cs │ │ │ │ │ │ ├── TypeInferenceTests.cs │ │ │ │ │ │ ├── UnaryOperatorTests.cs │ │ │ │ │ │ └── UnsafeCodeTests.cs │ │ │ │ ├── Documentation │ │ │ │ │ ├── CSharpCrefLookupTests.cs │ │ │ │ │ ├── CSharpCrefParserTests.cs │ │ │ │ │ ├── CSharpDocumentationTests.cs │ │ │ │ │ └── IDStringTests.cs │ │ │ │ ├── Editor │ │ │ │ │ └── ReadOnlyDocumentTests.cs │ │ │ │ ├── FormattingTests │ │ │ │ │ ├── ConstructFixerTests.cs │ │ │ │ │ ├── TestBlankLineFormatting.cs │ │ │ │ │ ├── TestBraceStlye.cs │ │ │ │ │ ├── TestExpressionFormatting.cs │ │ │ │ │ ├── TestFormattingBugs.cs │ │ │ │ │ ├── TestGlobalLevelFormatting.cs │ │ │ │ │ ├── TestKeepReformattingRules.cs │ │ │ │ │ ├── TestLinq.cs │ │ │ │ │ ├── TestSpacingVisitor.cs │ │ │ │ │ ├── TestStatementIndentation.cs │ │ │ │ │ ├── TestTypeLevelIndentation.cs │ │ │ │ │ ├── TestWrapping.cs │ │ │ │ │ └── TextEditorTestAdapter.cs │ │ │ │ ├── ICSharpCode.NRefactory.Tests.csproj │ │ │ │ ├── IndentationTests │ │ │ │ │ ├── AlignmentTests.cs │ │ │ │ │ ├── AllInOneTests.cs │ │ │ │ │ ├── BlockTest.cs │ │ │ │ │ ├── CommentTests.cs │ │ │ │ │ ├── GeneralTests.cs │ │ │ │ │ ├── Helper.cs │ │ │ │ │ ├── PreProcessorTests.cs │ │ │ │ │ ├── StringTests.cs │ │ │ │ │ ├── TestFiles │ │ │ │ │ │ ├── CSharpParser.cs │ │ │ │ │ │ ├── Comments.cs │ │ │ │ │ │ ├── IndentEngine.cs │ │ │ │ │ │ ├── IndentState.cs │ │ │ │ │ │ ├── InheritStatements.cs │ │ │ │ │ │ ├── PreProcessorDirectives.cs │ │ │ │ │ │ ├── Simple.cs │ │ │ │ │ │ ├── Strings.cs │ │ │ │ │ │ ├── SwitchCase.cs │ │ │ │ │ │ └── TextArea.cs │ │ │ │ │ └── TextPasteIndentEngineTests.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── TypeSystem │ │ │ │ │ ├── BinaryLoaderTests.cs │ │ │ │ │ ├── BlobLoaderTests.cs │ │ │ │ │ ├── CecilLoaderTests.cs │ │ │ │ │ ├── CyclicProjectDependency.cs │ │ │ │ │ ├── GetAllBaseTypesTest.cs │ │ │ │ │ ├── GetMembersTests.cs │ │ │ │ │ ├── IkvmLoaderTests.cs │ │ │ │ │ ├── InheritanceHelperTests.cs │ │ │ │ │ ├── LazyLoadedCecilLoaderTests.cs │ │ │ │ │ ├── ReflectionHelperTests.cs │ │ │ │ │ ├── SerializedCecilLoaderTests.cs │ │ │ │ │ ├── SerializedIkvmLoaderTests.cs │ │ │ │ │ ├── StructureTests.cs │ │ │ │ │ ├── TestInterningProvider.cs │ │ │ │ │ ├── TypeParameterTests.cs │ │ │ │ │ ├── TypeSystemHelper.cs │ │ │ │ │ ├── TypeSystemTests.TestCase.cs │ │ │ │ │ └── TypeSystemTests.cs │ │ │ │ └── Utils │ │ │ │ │ ├── CSharpPrimitiveCastTests.cs │ │ │ │ │ ├── CompositeFormatStringParser │ │ │ │ │ └── CompositeFormatStringParserTests.cs │ │ │ │ │ └── TreeTraversalTests.cs │ │ │ ├── ICSharpCode.NRefactory.Xml │ │ │ │ ├── AXmlAttribute.cs │ │ │ │ ├── AXmlDocument.cs │ │ │ │ ├── AXmlElement.cs │ │ │ │ ├── AXmlObject.cs │ │ │ │ ├── AXmlParser.cs │ │ │ │ ├── AXmlReader.cs │ │ │ │ ├── AXmlTag.cs │ │ │ │ ├── AXmlText.cs │ │ │ │ ├── AXmlVisitor.cs │ │ │ │ ├── DocumentationElement.cs │ │ │ │ ├── ICSharpCode.NRefactory.Xml.csproj │ │ │ │ ├── IncrementalParserState.cs │ │ │ │ ├── InternalDocument.cs │ │ │ │ ├── Log.cs │ │ │ │ ├── ObjectIterator.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── ReuseEqualityComparer.cs │ │ │ │ ├── SyntaxError.cs │ │ │ │ ├── TagMatchingHeuristics.cs │ │ │ │ ├── TagReader.cs │ │ │ │ ├── TextType.cs │ │ │ │ ├── TokenReader.cs │ │ │ │ └── XmlSegment.cs │ │ │ ├── ICSharpCode.NRefactory.snk │ │ │ ├── ICSharpCode.NRefactory │ │ │ │ ├── Analysis │ │ │ │ │ ├── AbiComparer.cs │ │ │ │ │ ├── SymbolCollector.cs │ │ │ │ │ ├── TypeGraph.cs │ │ │ │ │ └── TypeGraphNode.cs │ │ │ │ ├── Completion │ │ │ │ │ ├── CompletionCategory.cs │ │ │ │ │ ├── CompletionExtensionMethods.cs │ │ │ │ │ ├── DisplayFlags.cs │ │ │ │ │ ├── FrameworkLookup.cs │ │ │ │ │ ├── ICompletionData.cs │ │ │ │ │ ├── IEntityCompletionData.cs │ │ │ │ │ ├── IParameterDataProvider.cs │ │ │ │ │ └── IVariableCompletionData.cs │ │ │ │ ├── Documentation │ │ │ │ │ ├── DocumentationComment.cs │ │ │ │ │ ├── GetPotentiallyNestedClassTypeReference.cs │ │ │ │ │ ├── IDocumentationProvider.cs │ │ │ │ │ ├── IdStringMemberReference.cs │ │ │ │ │ ├── IdStringProvider.cs │ │ │ │ │ └── XmlDocumentationProvider.cs │ │ │ │ ├── Editor │ │ │ │ │ ├── IDocument.cs │ │ │ │ │ ├── IDocumentLine.cs │ │ │ │ │ ├── ISegment.cs │ │ │ │ │ ├── ITextAnchor.cs │ │ │ │ │ ├── ITextPasteHandler.cs │ │ │ │ │ ├── ITextSource.cs │ │ │ │ │ ├── ReadOnlyDocument.cs │ │ │ │ │ ├── StringBuilderDocument.cs │ │ │ │ │ ├── StringTextSource.cs │ │ │ │ │ ├── TextChangeEventArgs.cs │ │ │ │ │ ├── TextSourceVersionProvider.cs │ │ │ │ │ └── UnicodeNewline.cs │ │ │ │ ├── IAnnotatable.cs │ │ │ │ ├── ICSharpCode.NRefactory.csproj │ │ │ │ ├── PatternMatching │ │ │ │ │ ├── AnyNode.cs │ │ │ │ │ ├── AnyNodeOrNull.cs │ │ │ │ │ ├── Backreference.cs │ │ │ │ │ ├── BacktrackingInfo.cs │ │ │ │ │ ├── Choice.cs │ │ │ │ │ ├── INode.cs │ │ │ │ │ ├── Match.cs │ │ │ │ │ ├── NamedNode.cs │ │ │ │ │ ├── OptionalNode.cs │ │ │ │ │ ├── Pattern.cs │ │ │ │ │ └── Repeat.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ └── GlobalAssemblyInfo.cs │ │ │ │ ├── Refactoring │ │ │ │ │ ├── IssueMarker.cs │ │ │ │ │ └── Severity.cs │ │ │ │ ├── Role.cs │ │ │ │ ├── Semantics │ │ │ │ │ ├── AmbiguousResolveResult.cs │ │ │ │ │ ├── ArrayAccessResolveResult.cs │ │ │ │ │ ├── ArrayCreateResolveResult.cs │ │ │ │ │ ├── ByReferenceResolveResult.cs │ │ │ │ │ ├── ConstantResolveResult.cs │ │ │ │ │ ├── Conversion.cs │ │ │ │ │ ├── ConversionResolveResult.cs │ │ │ │ │ ├── ErrorResolveResult.cs │ │ │ │ │ ├── ForEachResolveResult.cs │ │ │ │ │ ├── InitializedObjectResolveResult.cs │ │ │ │ │ ├── InvocationResolveResult.cs │ │ │ │ │ ├── LocalResolveResult.cs │ │ │ │ │ ├── MemberResolveResult.cs │ │ │ │ │ ├── NamedArgumentResolveResult.cs │ │ │ │ │ ├── NamespaceResolveResult.cs │ │ │ │ │ ├── OperatorResolveResult.cs │ │ │ │ │ ├── ResolveResult.cs │ │ │ │ │ ├── SizeOfResolveResult.cs │ │ │ │ │ ├── ThisResolveResult.cs │ │ │ │ │ ├── TypeIsResolveResult.cs │ │ │ │ │ ├── TypeOfResolveResult.cs │ │ │ │ │ ├── TypeResolveResult.cs │ │ │ │ │ └── UnknownMemberResolveResult.cs │ │ │ │ ├── TextLocation.cs │ │ │ │ ├── TypeSystem │ │ │ │ │ ├── Accessibility.cs │ │ │ │ │ ├── AnonymousType.cs │ │ │ │ │ ├── ArrayType.cs │ │ │ │ │ ├── AssemblyLoader.cs │ │ │ │ │ ├── AssemblyQualifiedTypeName.cs │ │ │ │ │ ├── ByReferenceType.cs │ │ │ │ │ ├── ComHelper.cs │ │ │ │ │ ├── DefaultSolutionSnapshot.cs │ │ │ │ │ ├── DomRegion.cs │ │ │ │ │ ├── EntityType.cs │ │ │ │ │ ├── Error.cs │ │ │ │ │ ├── FullTypeName.cs │ │ │ │ │ ├── IAmbience.cs │ │ │ │ │ ├── IAssembly.cs │ │ │ │ │ ├── IAttribute.cs │ │ │ │ │ ├── ICodeContext.cs │ │ │ │ │ ├── ICompilation.cs │ │ │ │ │ ├── IConstantValue.cs │ │ │ │ │ ├── IEntity.cs │ │ │ │ │ ├── IEvent.cs │ │ │ │ │ ├── IField.cs │ │ │ │ │ ├── IFreezable.cs │ │ │ │ │ ├── IInterningProvider.cs │ │ │ │ │ ├── IMember.cs │ │ │ │ │ ├── IMethod.cs │ │ │ │ │ ├── INamedElement.cs │ │ │ │ │ ├── INamespace.cs │ │ │ │ │ ├── IParameter.cs │ │ │ │ │ ├── IParameterizedMember.cs │ │ │ │ │ ├── IProjectContent.cs │ │ │ │ │ ├── IProperty.cs │ │ │ │ │ ├── ISolutionSnapshot.cs │ │ │ │ │ ├── ISupportsInterning.cs │ │ │ │ │ ├── ISymbol.cs │ │ │ │ │ ├── IType.cs │ │ │ │ │ ├── ITypeDefinition.cs │ │ │ │ │ ├── ITypeParameter.cs │ │ │ │ │ ├── ITypeReference.cs │ │ │ │ │ ├── IUnresolvedFile.cs │ │ │ │ │ ├── IVariable.cs │ │ │ │ │ ├── Implementation │ │ │ │ │ │ ├── AbstractFreezable.cs │ │ │ │ │ │ ├── AbstractResolvedEntity.cs │ │ │ │ │ │ ├── AbstractResolvedMember.cs │ │ │ │ │ │ ├── AbstractResolvedTypeParameter.cs │ │ │ │ │ │ ├── AbstractType.cs │ │ │ │ │ │ ├── AbstractUnresolvedEntity.cs │ │ │ │ │ │ ├── AbstractUnresolvedMember.cs │ │ │ │ │ │ ├── AccessorOwnerMemberReference.cs │ │ │ │ │ │ ├── BaseTypeCollector.cs │ │ │ │ │ │ ├── BlobReader.cs │ │ │ │ │ │ ├── DefaultAssemblyReference.cs │ │ │ │ │ │ ├── DefaultAttribute.cs │ │ │ │ │ │ ├── DefaultMemberReference.cs │ │ │ │ │ │ ├── DefaultParameter.cs │ │ │ │ │ │ ├── DefaultResolvedEvent.cs │ │ │ │ │ │ ├── DefaultResolvedField.cs │ │ │ │ │ │ ├── DefaultResolvedMethod.cs │ │ │ │ │ │ ├── DefaultResolvedProperty.cs │ │ │ │ │ │ ├── DefaultResolvedTypeDefinition.cs │ │ │ │ │ │ ├── DefaultResolvedTypeParameter.cs │ │ │ │ │ │ ├── DefaultUnresolvedAssembly.cs │ │ │ │ │ │ ├── DefaultUnresolvedAttribute.cs │ │ │ │ │ │ ├── DefaultUnresolvedEvent.cs │ │ │ │ │ │ ├── DefaultUnresolvedField.cs │ │ │ │ │ │ ├── DefaultUnresolvedMethod.cs │ │ │ │ │ │ ├── DefaultUnresolvedParameter.cs │ │ │ │ │ │ ├── DefaultUnresolvedProperty.cs │ │ │ │ │ │ ├── DefaultUnresolvedTypeDefinition.cs │ │ │ │ │ │ ├── DefaultUnresolvedTypeParameter.cs │ │ │ │ │ │ ├── DefaultVariable.cs │ │ │ │ │ │ ├── DummyTypeParameter.cs │ │ │ │ │ │ ├── ExplicitInterfaceImplementationMemberReference.cs │ │ │ │ │ │ ├── FullNameAndTypeParameterCount.cs │ │ │ │ │ │ ├── GetClassTypeReference.cs │ │ │ │ │ │ ├── GetMembersHelper.cs │ │ │ │ │ │ ├── KnownTypeCache.cs │ │ │ │ │ │ ├── MergedNamespace.cs │ │ │ │ │ │ ├── MinimalCorlib.cs │ │ │ │ │ │ ├── NestedTypeReference.cs │ │ │ │ │ │ ├── ResolvedAttributeBlob.cs │ │ │ │ │ │ ├── SimpleCompilation.cs │ │ │ │ │ │ ├── SimpleConstantValue.cs │ │ │ │ │ │ ├── SimpleInterningProvider.cs │ │ │ │ │ │ ├── SpecializedEvent.cs │ │ │ │ │ │ ├── SpecializedField.cs │ │ │ │ │ │ ├── SpecializedMember.cs │ │ │ │ │ │ ├── SpecializedMethod.cs │ │ │ │ │ │ ├── SpecializedProperty.cs │ │ │ │ │ │ ├── SpecializingMemberReference.cs │ │ │ │ │ │ ├── TypeParameterReference.cs │ │ │ │ │ │ ├── TypeWithElementType.cs │ │ │ │ │ │ ├── UnknownType.cs │ │ │ │ │ │ ├── UnresolvedAttributeBlob.cs │ │ │ │ │ │ ├── UnresolvedSecurityDeclarationBlob.cs │ │ │ │ │ │ └── VoidTypeDefinition.cs │ │ │ │ │ ├── InheritanceHelper.cs │ │ │ │ │ ├── IntersectionType.cs │ │ │ │ │ ├── KnownTypeReference.cs │ │ │ │ │ ├── NullableType.cs │ │ │ │ │ ├── ParameterListComparer.cs │ │ │ │ │ ├── ParameterizedType.cs │ │ │ │ │ ├── PointerType.cs │ │ │ │ │ ├── ProjectReference.cs │ │ │ │ │ ├── ReflectionHelper.cs │ │ │ │ │ ├── ReflectionNameParseException.cs │ │ │ │ │ ├── SimpleTypeResolveContext.cs │ │ │ │ │ ├── SpecialType.cs │ │ │ │ │ ├── TaskType.cs │ │ │ │ │ ├── TopLevelTypeName.cs │ │ │ │ │ ├── TypeKind.cs │ │ │ │ │ ├── TypeParameterSubstitution.cs │ │ │ │ │ ├── TypeSystemExtensions.cs │ │ │ │ │ └── TypeVisitor.cs │ │ │ │ └── Utils │ │ │ │ │ ├── 7BitEncodedInts.cs │ │ │ │ │ ├── BitVector16.cs │ │ │ │ │ ├── BusyManager.cs │ │ │ │ │ ├── CSharpPrimitiveCast.cs │ │ │ │ │ ├── CacheManager.cs │ │ │ │ │ ├── CallbackOnDispose.cs │ │ │ │ │ ├── ComparableList.cs │ │ │ │ │ ├── CompositeFormatStringParser │ │ │ │ │ ├── CompositeFormatStringParser.cs │ │ │ │ │ ├── FormatItem.cs │ │ │ │ │ ├── FormatStringSegmentBase.cs │ │ │ │ │ ├── IFormatStringError.cs │ │ │ │ │ ├── IFormatStringSegment.cs │ │ │ │ │ └── TextSegment.cs │ │ │ │ │ ├── EmptyList.cs │ │ │ │ │ ├── ExtensionMethods.cs │ │ │ │ │ ├── FastSerializer.cs │ │ │ │ │ ├── GraphVizGraph.cs │ │ │ │ │ ├── ImmutableStack.cs │ │ │ │ │ ├── KeyComparer.cs │ │ │ │ │ ├── LazyInit.cs │ │ │ │ │ ├── MultiDictionary.cs │ │ │ │ │ ├── Platform.cs │ │ │ │ │ ├── ProjectedList.cs │ │ │ │ │ ├── ReferenceComparer.cs │ │ │ │ │ └── TreeTraversal.cs │ │ │ ├── NRefactory.sln │ │ │ ├── Packages │ │ │ │ └── ICSharpCode.NRefactory.nuspec │ │ │ ├── README │ │ │ └── doc │ │ │ │ ├── Pattern Matching.html │ │ │ │ ├── TODO │ │ │ │ ├── XML Documentation.html │ │ │ │ ├── copyright.txt │ │ │ │ └── license.txt │ │ ├── OmniSharp.Tests │ │ │ ├── AutoComplete │ │ │ │ ├── BugFixTests.cs │ │ │ │ ├── CompletionTestBase.cs │ │ │ │ ├── CompletionsSpecBase.cs │ │ │ │ ├── ConstructorParameterCompletions.cs │ │ │ │ ├── DerivedTypeCompletions.cs │ │ │ │ ├── GenericCompletions.cs │ │ │ │ ├── IntegrationTest.cs │ │ │ │ ├── MethodHeaderTests.cs │ │ │ │ ├── NamespaceCompletions.cs │ │ │ │ ├── SnippetGenerationTests.cs │ │ │ │ └── SnippetTests.cs │ │ │ ├── Build │ │ │ │ └── BuildLogParserTests.cs │ │ │ ├── CodeFormat │ │ │ │ └── CodeFormatTest.cs │ │ │ ├── FakeAssembly.cs │ │ │ ├── FakeFileSystem.cs │ │ │ ├── FakeProject.cs │ │ │ ├── FakeSolution.cs │ │ │ ├── FindUsages │ │ │ │ └── IntegrationTest.cs │ │ │ ├── FixUsings │ │ │ │ └── FixUsingsTests.cs │ │ │ ├── GoToImplementation │ │ │ │ └── GoToImplementation.cs │ │ │ ├── OmniSharp.Tests.csproj │ │ │ ├── Overrides │ │ │ │ └── TestOverrideContext.cs │ │ │ ├── ProjectManipulation │ │ │ │ ├── AddReference │ │ │ │ │ ├── AddFileReferenceTests.cs │ │ │ │ │ ├── AddGacReferenceTests.cs │ │ │ │ │ ├── AddProjectReferenceTests.cs │ │ │ │ │ ├── AddReferenceTestsBase.cs │ │ │ │ │ ├── AddToProjectProcessoryFactoryTests.cs │ │ │ │ │ └── MockProject.cs │ │ │ │ ├── AddToProject │ │ │ │ │ └── AddToProjectTests.cs │ │ │ │ └── RemoveFromProject │ │ │ │ │ └── RemoveFromProjectTests.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Rename │ │ │ │ ├── Buffer.cs │ │ │ │ ├── FakeSolutionBuilder.cs │ │ │ │ ├── MultiFileRenameTests.cs │ │ │ │ └── SimpleRenameTests.cs │ │ │ ├── SemanticErrors │ │ │ │ └── SemanticErrors.cs │ │ │ ├── ShouldExtensions.cs │ │ │ ├── Solution │ │ │ │ ├── SolutionTest.cs │ │ │ │ └── minimal │ │ │ │ │ ├── minimal.sln │ │ │ │ │ └── minimal │ │ │ │ │ ├── MyClass.cs │ │ │ │ │ ├── MyClassContainer.cs │ │ │ │ │ └── minimal.csproj │ │ │ ├── TestHelpers.cs │ │ │ ├── TypeLookup │ │ │ │ ├── EmptyResults.cs │ │ │ │ ├── IntegrationTest.cs │ │ │ │ ├── LocalVariables.cs │ │ │ │ ├── MemberVariables.cs │ │ │ │ ├── Methods.cs │ │ │ │ ├── Properties.cs │ │ │ │ └── StringExtensions.cs │ │ │ ├── UnitTesting │ │ │ │ ├── ContextInformationTests.cs │ │ │ │ └── UnitTesting.cs │ │ │ └── packages.config │ │ ├── OmniSharp.sln │ │ ├── OmniSharp │ │ │ ├── AutoComplete │ │ │ │ ├── AutoCompleteHandler.cs │ │ │ │ ├── AutoCompleteModule.cs │ │ │ │ ├── AutoCompleteRequest.cs │ │ │ │ ├── AutoCompleteResponse.cs │ │ │ │ ├── BufferContext.cs │ │ │ │ ├── CompletionData.cs │ │ │ │ ├── CompletionDataExtensions.cs │ │ │ │ ├── CompletionDataFactory.cs │ │ │ │ ├── HelpExtension.cs │ │ │ │ ├── HelpService.cs │ │ │ │ ├── Metadata │ │ │ │ │ ├── AutoCompleteMetadataModule.cs │ │ │ │ │ ├── AutoCompleteRequestMetadataProvider.cs │ │ │ │ │ └── AutoCompleteResponseMetadataProvider.cs │ │ │ │ ├── MyCompletionCategory.cs │ │ │ │ ├── ReturnTypeAmbience.cs │ │ │ │ ├── SnippetGenerator.cs │ │ │ │ └── StringExtensions.cs │ │ │ ├── Bootstrapper.cs │ │ │ ├── Build │ │ │ │ ├── BuildCommandBuilder.cs │ │ │ │ ├── BuildCommandModule.cs │ │ │ │ ├── BuildHandler.cs │ │ │ │ ├── BuildLogParser.cs │ │ │ │ ├── BuildModule.cs │ │ │ │ ├── BuildResponse.cs │ │ │ │ ├── BuildTargetRequest.cs │ │ │ │ ├── BuildTargetResponse.cs │ │ │ │ └── Metadata │ │ │ │ │ └── BuildCommandMetadataModule.cs │ │ │ ├── CheckAliveStatus │ │ │ │ ├── CheckAliveStatusModule.cs │ │ │ │ └── Metadata │ │ │ │ │ └── CheckAliveStatusMetadataModule.cs │ │ │ ├── CheckReadyStatus │ │ │ │ ├── CheckReadyStatusModule.cs │ │ │ │ └── Metadata │ │ │ │ │ └── CheckReadyStatusMetadataModule.cs │ │ │ ├── CodeActions │ │ │ │ ├── CodeActionProviders.cs │ │ │ │ ├── FixUsingsHandler.cs │ │ │ │ ├── FixUsingsModule.cs │ │ │ │ ├── FixUsingsResponse.cs │ │ │ │ ├── GetCodeActionRequest.cs │ │ │ │ ├── GetCodeActionsHandler.cs │ │ │ │ ├── GetCodeActionsModule.cs │ │ │ │ ├── GetCodeActionsResponse.cs │ │ │ │ ├── Metadata │ │ │ │ │ ├── FixUsingsMetadataModule.cs │ │ │ │ │ ├── GetCodeActionsMetadataModule.cs │ │ │ │ │ └── RunCodeActionMetadataModule.cs │ │ │ │ ├── RunCodeActionModule.cs │ │ │ │ ├── RunCodeActionRequest.cs │ │ │ │ └── RunCodeActionsResponse.cs │ │ │ ├── CodeFormat │ │ │ │ ├── CodeFormatHandler.cs │ │ │ │ ├── CodeFormatModule.cs │ │ │ │ ├── CodeFormatRequest.cs │ │ │ │ ├── CodeFormatResponse.cs │ │ │ │ └── Metadata │ │ │ │ │ └── CodeFormatMetadataModule.cs │ │ │ ├── CodeIssues │ │ │ │ ├── CodeIssueProviders.cs │ │ │ │ ├── CodeIssuesHandler.cs │ │ │ │ ├── CodeIssuesModule.cs │ │ │ │ ├── GetCodeIssuesResponse.cs │ │ │ │ ├── Metadata │ │ │ │ │ └── CodeIssuesMetadataModule.cs │ │ │ │ └── RunCodeIssuesResponse.cs │ │ │ ├── Common │ │ │ │ ├── CygPathWrapper.cs │ │ │ │ ├── Error.cs │ │ │ │ ├── FileSystem.cs │ │ │ │ ├── IFileSystem.cs │ │ │ │ ├── Metadata │ │ │ │ │ ├── QuickFixMetadataProvider.cs │ │ │ │ │ ├── QuickFixResponseMetadataProvider.cs │ │ │ │ │ └── RequestMetadataProvider.cs │ │ │ │ ├── QuickFix.cs │ │ │ │ ├── QuickFixResponse.cs │ │ │ │ └── Request.cs │ │ │ ├── Configuration │ │ │ │ ├── OmniSharpConfiguration.cs │ │ │ │ ├── PathMode.cs │ │ │ │ ├── PathReplacement.cs │ │ │ │ └── TestCommands.cs │ │ │ ├── CurrentFileMembers │ │ │ │ ├── CurrentFileMembersAsFlatModule.cs │ │ │ │ ├── CurrentFileMembersAsTreeModule.cs │ │ │ │ ├── CurrentFileMembersAsTreeResponse.cs │ │ │ │ ├── CurrentFileMembersHandler.cs │ │ │ │ ├── CurrentFileMembersRequest.cs │ │ │ │ ├── CurrentFileTopLevelTypesModule.cs │ │ │ │ ├── Metadata │ │ │ │ │ ├── CurrentFileMembersAsFlatMetadataModule.cs │ │ │ │ │ ├── CurrentFileMembersAsTreeMetadataModule.cs │ │ │ │ │ └── CurrentFileTopLevelTypesMetadataModule.cs │ │ │ │ └── Node.cs │ │ │ ├── Documentation │ │ │ │ ├── DocumentationConverter.cs │ │ │ │ ├── DocumentationFetcher.cs │ │ │ │ ├── MonoDocDocumentationProvider.cs │ │ │ │ └── XmlDocumentationProviderFactory.cs │ │ │ ├── Extensions │ │ │ │ └── NodeExtensions.cs │ │ │ ├── FindProjects │ │ │ │ ├── FindProjectsHandler.cs │ │ │ │ ├── FindProjectsModule.cs │ │ │ │ ├── FindProjectsResponse.cs │ │ │ │ ├── MsBuildProject.cs │ │ │ │ └── MsBuildWorkspaceInformation.cs │ │ │ ├── FindSymbols │ │ │ │ ├── FindSymbolsHandler.cs │ │ │ │ ├── FindSymbolsModule.cs │ │ │ │ └── Metadata │ │ │ │ │ └── FindSymbolsMetadataModule.cs │ │ │ ├── FindTypes │ │ │ │ ├── FindTypesHandler.cs │ │ │ │ ├── FindTypesModule.cs │ │ │ │ └── Metadata │ │ │ │ │ └── FindTypesMetadataModule.cs │ │ │ ├── FindUsages │ │ │ │ ├── AstNodeExtensions.cs │ │ │ │ ├── FindUsagesHandler.cs │ │ │ │ ├── FindUsagesModule.cs │ │ │ │ ├── FindUsagesRequest.cs │ │ │ │ ├── MemberCollector.cs │ │ │ │ └── Metadata │ │ │ │ │ └── FindUsagesMetadataModule.cs │ │ │ ├── GotoDefinition │ │ │ │ ├── GotoDefinitionHandler.cs │ │ │ │ ├── GotoDefinitionModule.cs │ │ │ │ ├── GotoDefinitionRequest.cs │ │ │ │ ├── GotoDefinitionResponse.cs │ │ │ │ └── Metadata │ │ │ │ │ ├── GotoDefinitionMetadataModule.cs │ │ │ │ │ ├── GotoDefinitionRequestMetadataProvider.cs │ │ │ │ │ └── GotoDefinitionResponseMetadataProvider.cs │ │ │ ├── GotoFile │ │ │ │ ├── GotoFileHandler.cs │ │ │ │ ├── GotoFileModule.cs │ │ │ │ └── Metadata │ │ │ │ │ └── GotoFileMetadataModule.cs │ │ │ ├── GotoImplementation │ │ │ │ ├── GotoImplementationHandler.cs │ │ │ │ ├── GotoImplementationModule.cs │ │ │ │ ├── GotoImplementationRequest.cs │ │ │ │ ├── Location.cs │ │ │ │ └── Metadata │ │ │ │ │ └── GotoImplementationMetadataModule.cs │ │ │ ├── GotoRegion │ │ │ │ ├── GetDirectivesAstVisitor.cs │ │ │ │ ├── GotoRegionHandler.cs │ │ │ │ ├── GotoRegionModule.cs │ │ │ │ └── Metadata │ │ │ │ │ └── GotoRegionMetadataModule.cs │ │ │ ├── Logger.cs │ │ │ ├── LookupAllTypes │ │ │ │ ├── LookupAllTypesHandler.cs │ │ │ │ ├── LookupAllTypesModule.cs │ │ │ │ ├── LookupAllTypesRequest.cs │ │ │ │ ├── LookupAllTypesResponse.cs │ │ │ │ └── Metadata │ │ │ │ │ └── LookupAllTypesMetadataModule.cs │ │ │ ├── OmniSharp.csproj │ │ │ ├── Options.cs │ │ │ ├── Overrides │ │ │ │ ├── GetOverrideTargetsModule.cs │ │ │ │ ├── GetOverrideTargetsResponse.cs │ │ │ │ ├── Metadata │ │ │ │ │ ├── GetOverrideTargetsMetadataModule.cs │ │ │ │ │ └── RunOverrideTargetMetadataModule.cs │ │ │ │ ├── OverrideContext.cs │ │ │ │ ├── OverrideHandler.cs │ │ │ │ ├── RunOverrideTargetModule.cs │ │ │ │ ├── RunOverrideTargetRequest.cs │ │ │ │ └── RunOverrideTargetResponse.cs │ │ │ ├── Parser │ │ │ │ ├── BufferParser.cs │ │ │ │ └── ParsedResult.cs │ │ │ ├── Platform.cs │ │ │ ├── PlatformHelper.cs │ │ │ ├── ProcessExtensions.cs │ │ │ ├── Program.cs │ │ │ ├── ProjectManipulation │ │ │ │ ├── AddReference │ │ │ │ │ ├── AddFileReferenceProcessor.cs │ │ │ │ │ ├── AddGacReferenceProcessor.cs │ │ │ │ │ ├── AddProjectReferenceProcessor.cs │ │ │ │ │ ├── AddReferenceHandler.cs │ │ │ │ │ ├── AddReferenceModule.cs │ │ │ │ │ ├── AddReferenceProcessorFactory.cs │ │ │ │ │ ├── AddReferenceRequest.cs │ │ │ │ │ ├── AddReferenceResponse.cs │ │ │ │ │ ├── IReferenceProcessor.cs │ │ │ │ │ ├── Metadata │ │ │ │ │ │ └── AddReferenceMetadataModule.cs │ │ │ │ │ └── ReferenceProcessorBase.cs │ │ │ │ ├── AddToProject │ │ │ │ │ ├── AddToProjectHandler.cs │ │ │ │ │ ├── AddToProjectModule.cs │ │ │ │ │ ├── AddToProjectRequest.cs │ │ │ │ │ └── Metadata │ │ │ │ │ │ └── AddToProjectMetadataModule.cs │ │ │ │ ├── ProjectNotFoundException.cs │ │ │ │ └── RemoveFromProject │ │ │ │ │ ├── Metadata │ │ │ │ │ └── RemoveFromProjectMetadataModule.cs │ │ │ │ │ ├── RemoveFromProjectHandler.cs │ │ │ │ │ ├── RemoveFromProjectModule.cs │ │ │ │ │ ├── RemoveFromProjectRequest.cs │ │ │ │ │ └── XDocumentExtensions.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Refactoring │ │ │ │ ├── OmniSharpRefactoringContext.cs │ │ │ │ └── OmniSharpScript.cs │ │ │ ├── ReloadSolution │ │ │ │ ├── Metadata │ │ │ │ │ └── ReloadSolutionMetadataModule.cs │ │ │ │ └── ReloadSolutionModule.cs │ │ │ ├── Rename │ │ │ │ ├── Metadata │ │ │ │ │ └── RenameMetadataModule.cs │ │ │ │ ├── ModifiedFileResponse.cs │ │ │ │ ├── RenameHandler.cs │ │ │ │ ├── RenameModule.cs │ │ │ │ ├── RenameRequest.cs │ │ │ │ └── RenameResponse.cs │ │ │ ├── SemanticErrors │ │ │ │ ├── Metadata │ │ │ │ │ └── SemanticErrorsMetadataModule.cs │ │ │ │ ├── SemanticErrorsHandler.cs │ │ │ │ ├── SemanticErrorsModule.cs │ │ │ │ └── SemanticErrorsResponse.cs │ │ │ ├── Solution │ │ │ │ ├── AssemblySearch.cs │ │ │ │ ├── CSharpFile.cs │ │ │ │ ├── CSharpFolder.cs │ │ │ │ ├── CSharpProject.cs │ │ │ │ ├── CSharpSolution.cs │ │ │ │ ├── Fusion.cs │ │ │ │ ├── GacInterop.cs │ │ │ │ ├── IProject.cs │ │ │ │ ├── OrphanProject.cs │ │ │ │ ├── Project.cs │ │ │ │ ├── ProjectFinder.cs │ │ │ │ ├── ProjectReference.cs │ │ │ │ ├── SolutionPicker.cs │ │ │ │ └── StringExtensions.cs │ │ │ ├── StopServer │ │ │ │ ├── Metadata │ │ │ │ │ └── StopServerMetadataModule.cs │ │ │ │ └── StopServerModule.cs │ │ │ ├── SyntaxErrors │ │ │ │ ├── CodeCheckHandler.cs │ │ │ │ ├── CodeCheckModule.cs │ │ │ │ ├── Metadata │ │ │ │ │ ├── CodeCheckMetadataModule.cs │ │ │ │ │ └── SyntaxErrorsMetadataModule.cs │ │ │ │ ├── SyntaxErrorsHandler.cs │ │ │ │ ├── SyntaxErrorsModule.cs │ │ │ │ └── SyntaxErrorsResponse.cs │ │ │ ├── TestContextInformation │ │ │ │ ├── GetContextResponse.cs │ │ │ │ ├── GetTestContextHandler.cs │ │ │ │ ├── GetTestContextModule.cs │ │ │ │ ├── GetTestContextResponse.cs │ │ │ │ └── TestCommandRequest.cs │ │ │ ├── TypeLookup │ │ │ │ ├── Metadata │ │ │ │ │ └── TypeLookupMetadataModule.cs │ │ │ │ ├── TypeLookupHandler.cs │ │ │ │ ├── TypeLookupModule.cs │ │ │ │ ├── TypeLookupRequest.cs │ │ │ │ └── TypeLookupResponse.cs │ │ │ ├── UpdateBuffer │ │ │ │ ├── Metadata │ │ │ │ │ └── UpdateBufferMetadataModule.cs │ │ │ │ └── UpdateBufferModule.cs │ │ │ ├── app.config │ │ │ ├── config.json │ │ │ └── packages.config │ │ ├── README.md │ │ ├── cecil │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── Mono.Cecil.Cil │ │ │ │ ├── Code.cs │ │ │ │ ├── CodeReader.cs │ │ │ │ ├── CodeWriter.cs │ │ │ │ ├── Document.cs │ │ │ │ ├── ExceptionHandler.cs │ │ │ │ ├── ILProcessor.cs │ │ │ │ ├── Instruction.cs │ │ │ │ ├── MethodBody.cs │ │ │ │ ├── OpCode.cs │ │ │ │ ├── OpCodes.cs │ │ │ │ ├── SequencePoint.cs │ │ │ │ ├── Symbols.cs │ │ │ │ ├── VariableDefinition.cs │ │ │ │ └── VariableReference.cs │ │ │ ├── Mono.Cecil.Metadata │ │ │ │ ├── BlobHeap.cs │ │ │ │ ├── Buffers.cs │ │ │ │ ├── CodedIndex.cs │ │ │ │ ├── ElementType.cs │ │ │ │ ├── GuidHeap.cs │ │ │ │ ├── Heap.cs │ │ │ │ ├── MetadataToken.cs │ │ │ │ ├── Row.cs │ │ │ │ ├── StringHeap.cs │ │ │ │ ├── TableHeap.cs │ │ │ │ ├── TokenType.cs │ │ │ │ ├── UserStringHeap.cs │ │ │ │ └── Utilities.cs │ │ │ ├── Mono.Cecil.PE │ │ │ │ ├── BinaryStreamReader.cs │ │ │ │ ├── BinaryStreamWriter.cs │ │ │ │ ├── ByteBuffer.cs │ │ │ │ ├── ByteBufferEqualityComparer.cs │ │ │ │ ├── DataDirectory.cs │ │ │ │ ├── Image.cs │ │ │ │ ├── ImageReader.cs │ │ │ │ ├── ImageWriter.cs │ │ │ │ ├── Section.cs │ │ │ │ └── TextMap.cs │ │ │ ├── Mono.Cecil.csproj │ │ │ ├── Mono.Cecil.nunit │ │ │ ├── Mono.Cecil.nuspec │ │ │ ├── Mono.Cecil.sln │ │ │ ├── Mono.Cecil.sln.DotSettings │ │ │ ├── Mono.Cecil │ │ │ │ ├── ArrayType.cs │ │ │ │ ├── AssemblyDefinition.cs │ │ │ │ ├── AssemblyFlags.cs │ │ │ │ ├── AssemblyHashAlgorithm.cs │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── AssemblyLinkedResource.cs │ │ │ │ ├── AssemblyNameDefinition.cs │ │ │ │ ├── AssemblyNameReference.cs │ │ │ │ ├── AssemblyReader.cs │ │ │ │ ├── AssemblyWriter.cs │ │ │ │ ├── BaseAssemblyResolver.cs │ │ │ │ ├── CallSite.cs │ │ │ │ ├── CustomAttribute.cs │ │ │ │ ├── DefaultAssemblyResolver.cs │ │ │ │ ├── EmbeddedResource.cs │ │ │ │ ├── EventAttributes.cs │ │ │ │ ├── EventDefinition.cs │ │ │ │ ├── EventReference.cs │ │ │ │ ├── ExportedType.cs │ │ │ │ ├── FieldAttributes.cs │ │ │ │ ├── FieldDefinition.cs │ │ │ │ ├── FieldReference.cs │ │ │ │ ├── FileAttributes.cs │ │ │ │ ├── FunctionPointerType.cs │ │ │ │ ├── GenericInstanceMethod.cs │ │ │ │ ├── GenericInstanceType.cs │ │ │ │ ├── GenericParameter.cs │ │ │ │ ├── GenericParameterAttributes.cs │ │ │ │ ├── IConstantProvider.cs │ │ │ │ ├── ICustomAttributeProvider.cs │ │ │ │ ├── IGenericInstance.cs │ │ │ │ ├── IGenericParameterProvider.cs │ │ │ │ ├── IMarshalInfoProvider.cs │ │ │ │ ├── IMemberDefinition.cs │ │ │ │ ├── IMetadataScope.cs │ │ │ │ ├── IMetadataTokenProvider.cs │ │ │ │ ├── IMethodSignature.cs │ │ │ │ ├── Import.cs │ │ │ │ ├── LinkedResource.cs │ │ │ │ ├── ManifestResourceAttributes.cs │ │ │ │ ├── MarshalInfo.cs │ │ │ │ ├── MemberDefinitionCollection.cs │ │ │ │ ├── MemberReference.cs │ │ │ │ ├── MetadataResolver.cs │ │ │ │ ├── MetadataSystem.cs │ │ │ │ ├── MethodAttributes.cs │ │ │ │ ├── MethodCallingConvention.cs │ │ │ │ ├── MethodDefinition.cs │ │ │ │ ├── MethodImplAttributes.cs │ │ │ │ ├── MethodReference.cs │ │ │ │ ├── MethodReturnType.cs │ │ │ │ ├── MethodSemanticsAttributes.cs │ │ │ │ ├── MethodSpecification.cs │ │ │ │ ├── Modifiers.cs │ │ │ │ ├── ModuleDefinition.cs │ │ │ │ ├── ModuleKind.cs │ │ │ │ ├── ModuleReference.cs │ │ │ │ ├── NativeType.cs │ │ │ │ ├── PInvokeAttributes.cs │ │ │ │ ├── PInvokeInfo.cs │ │ │ │ ├── ParameterAttributes.cs │ │ │ │ ├── ParameterDefinition.cs │ │ │ │ ├── ParameterDefinitionCollection.cs │ │ │ │ ├── ParameterReference.cs │ │ │ │ ├── PinnedType.cs │ │ │ │ ├── PointerType.cs │ │ │ │ ├── PropertyAttributes.cs │ │ │ │ ├── PropertyDefinition.cs │ │ │ │ ├── PropertyReference.cs │ │ │ │ ├── ReferenceType.cs │ │ │ │ ├── Resource.cs │ │ │ │ ├── SecurityDeclaration.cs │ │ │ │ ├── SentinelType.cs │ │ │ │ ├── TargetRuntime.cs │ │ │ │ ├── TypeAttributes.cs │ │ │ │ ├── TypeDefinition.cs │ │ │ │ ├── TypeDefinitionCollection.cs │ │ │ │ ├── TypeParser.cs │ │ │ │ ├── TypeReference.cs │ │ │ │ ├── TypeSpecification.cs │ │ │ │ ├── TypeSystem.cs │ │ │ │ └── VariantType.cs │ │ │ ├── Mono.Collections.Generic │ │ │ │ ├── Collection.cs │ │ │ │ └── ReadOnlyCollection.cs │ │ │ ├── Mono.Security.Cryptography │ │ │ │ ├── CryptoConvert.cs │ │ │ │ └── CryptoService.cs │ │ │ ├── Mono │ │ │ │ ├── Actions.cs │ │ │ │ ├── Empty.cs │ │ │ │ └── Funcs.cs │ │ │ ├── NOTES.txt │ │ │ ├── System.Runtime.CompilerServices │ │ │ │ └── ExtensionAttribute.cs │ │ │ ├── Test │ │ │ │ ├── .gitignore │ │ │ │ ├── Mono.Cecil.Tests.csproj │ │ │ │ ├── Mono.Cecil.Tests │ │ │ │ │ ├── Addin.cs │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── AssemblyTests.cs │ │ │ │ │ ├── BaseTestFixture.cs │ │ │ │ │ ├── CompilationService.cs │ │ │ │ │ ├── CustomAttributesTests.cs │ │ │ │ │ ├── EventTests.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── FieldTests.cs │ │ │ │ │ ├── Formatter.cs │ │ │ │ │ ├── ILProcessorTests.cs │ │ │ │ │ ├── ImageReadTests.cs │ │ │ │ │ ├── ImportCecilTests.cs │ │ │ │ │ ├── ImportReflectionTests.cs │ │ │ │ │ ├── Linq.cs │ │ │ │ │ ├── MethodBodyTests.cs │ │ │ │ │ ├── MethodTests.cs │ │ │ │ │ ├── ModuleTests.cs │ │ │ │ │ ├── NestedTypesTests.cs │ │ │ │ │ ├── ParameterTests.cs │ │ │ │ │ ├── PropertyTests.cs │ │ │ │ │ ├── ResolveTests.cs │ │ │ │ │ ├── SecurityDeclarationTests.cs │ │ │ │ │ ├── TypeParserTests.cs │ │ │ │ │ ├── TypeTests.cs │ │ │ │ │ └── VariableTests.cs │ │ │ │ ├── Resources │ │ │ │ │ ├── assemblies │ │ │ │ │ │ ├── PortableClassLibrary.dll │ │ │ │ │ │ ├── boxedoptarg.dll │ │ │ │ │ │ ├── catch.exe │ │ │ │ │ │ ├── cppcli.dll │ │ │ │ │ │ ├── cscgpbug.dll │ │ │ │ │ │ ├── decsec-att.dll │ │ │ │ │ │ ├── decsec-xml.dll │ │ │ │ │ │ ├── decsec1-xml.dll │ │ │ │ │ │ ├── delay-signed.dll │ │ │ │ │ │ ├── empty-decsec-att.dll │ │ │ │ │ │ ├── fptr.exe │ │ │ │ │ │ ├── gifaceref.exe │ │ │ │ │ │ ├── hello.anycpu.exe │ │ │ │ │ │ ├── hello.exe │ │ │ │ │ │ ├── hello.ia64.exe │ │ │ │ │ │ ├── hello.x64.exe │ │ │ │ │ │ ├── hello.x86.exe │ │ │ │ │ │ ├── hello1.exe │ │ │ │ │ │ ├── hellow.exe │ │ │ │ │ │ ├── iterator.exe │ │ │ │ │ │ ├── libhello.dll │ │ │ │ │ │ ├── libres.dll │ │ │ │ │ │ ├── marshal.dll │ │ │ │ │ │ ├── metro.exe │ │ │ │ │ │ ├── mma.exe │ │ │ │ │ │ ├── moda.netmodule │ │ │ │ │ │ ├── modb.netmodule │ │ │ │ │ │ ├── noblob.dll │ │ │ │ │ │ ├── pinvoke.exe │ │ │ │ │ │ ├── switch.exe │ │ │ │ │ │ ├── text_file.txt │ │ │ │ │ │ ├── varargs.exe │ │ │ │ │ │ └── wp7.dll │ │ │ │ │ ├── cs │ │ │ │ │ │ ├── CustomAttributes.cs │ │ │ │ │ │ ├── Events.cs │ │ │ │ │ │ ├── Fields.cs │ │ │ │ │ │ ├── Generics.cs │ │ │ │ │ │ ├── Interfaces.cs │ │ │ │ │ │ ├── Layouts.cs │ │ │ │ │ │ ├── Methods.cs │ │ │ │ │ │ ├── NestedTypes.cs │ │ │ │ │ │ └── Properties.cs │ │ │ │ │ └── il │ │ │ │ │ │ ├── explicitthis.il │ │ │ │ │ │ ├── hello.il │ │ │ │ │ │ ├── methodspecs.il │ │ │ │ │ │ ├── others.il │ │ │ │ │ │ └── types.il │ │ │ │ └── libs │ │ │ │ │ └── nunit-2.6.2 │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── nunit.core.dll │ │ │ │ │ ├── nunit.core.interfaces.dll │ │ │ │ │ └── nunit.framework.dll │ │ │ ├── dbg │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── dbg.csproj │ │ │ ├── mono.snk │ │ │ ├── rocks │ │ │ │ ├── .gitignore │ │ │ │ ├── Mono.Cecil.Rocks.csproj │ │ │ │ ├── Mono.Cecil.Rocks │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Functional.cs │ │ │ │ │ ├── ILParser.cs │ │ │ │ │ ├── MethodBodyRocks.cs │ │ │ │ │ ├── MethodDefinitionRocks.cs │ │ │ │ │ ├── ModuleDefinitionRocks.cs │ │ │ │ │ ├── ParameterReferenceRocks.cs │ │ │ │ │ ├── SecurityDeclarationRocks.cs │ │ │ │ │ ├── TypeDefinitionRocks.cs │ │ │ │ │ └── TypeReferenceRocks.cs │ │ │ │ └── Test │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Mono.Cecil.Rocks.Tests.csproj │ │ │ │ │ ├── Mono.Cecil.Tests │ │ │ │ │ ├── Addin.cs │ │ │ │ │ ├── MethodDefinitionRocksTests.cs │ │ │ │ │ ├── ModuleDefinitionRocksTests.cs │ │ │ │ │ ├── SecurityDeclarationRocksTests.cs │ │ │ │ │ ├── TypeDefinitionRocksTests.cs │ │ │ │ │ └── TypeReferenceRocksTests.cs │ │ │ │ │ └── Resources │ │ │ │ │ ├── assemblies │ │ │ │ │ ├── decsec-att.dll │ │ │ │ │ └── decsec-xml.dll │ │ │ │ │ └── cs │ │ │ │ │ └── Types.cs │ │ │ └── symbols │ │ │ │ ├── mdb │ │ │ │ ├── .gitignore │ │ │ │ ├── Mono.Cecil.Mdb.csproj │ │ │ │ ├── Mono.Cecil.Mdb │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── MdbReader.cs │ │ │ │ │ └── MdbWriter.cs │ │ │ │ ├── Mono.CompilerServices.SymbolWriter │ │ │ │ │ ├── MonoSymbolFile.cs │ │ │ │ │ ├── MonoSymbolTable.cs │ │ │ │ │ ├── MonoSymbolWriter.cs │ │ │ │ │ └── SymbolWriterImpl.cs │ │ │ │ └── Test │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Mono.Cecil.Mdb.Tests.csproj │ │ │ │ │ ├── Mono.Cecil.Tests │ │ │ │ │ ├── Addin.cs │ │ │ │ │ └── MdbTests.cs │ │ │ │ │ └── Resources │ │ │ │ │ └── assemblies │ │ │ │ │ ├── hello.exe │ │ │ │ │ └── hello.exe.mdb │ │ │ │ └── pdb │ │ │ │ ├── .gitignore │ │ │ │ ├── Microsoft.Cci.Pdb │ │ │ │ ├── BitAccess.cs │ │ │ │ ├── BitSet.cs │ │ │ │ ├── CvInfo.cs │ │ │ │ ├── DataStream.cs │ │ │ │ ├── DbiDbgHdr.cs │ │ │ │ ├── DbiHeader.cs │ │ │ │ ├── DbiModuleInfo.cs │ │ │ │ ├── DbiSecCon.cs │ │ │ │ ├── IntHashTable.cs │ │ │ │ ├── Interfaces.cs │ │ │ │ ├── LICENSE │ │ │ │ ├── MsfDirectory.cs │ │ │ │ ├── PdbConstant.cs │ │ │ │ ├── PdbDebugException.cs │ │ │ │ ├── PdbException.cs │ │ │ │ ├── PdbFile.cs │ │ │ │ ├── PdbFileHeader.cs │ │ │ │ ├── PdbFunction.cs │ │ │ │ ├── PdbLine.cs │ │ │ │ ├── PdbLines.cs │ │ │ │ ├── PdbReader.cs │ │ │ │ ├── PdbScope.cs │ │ │ │ ├── PdbSlot.cs │ │ │ │ ├── PdbSource.cs │ │ │ │ ├── PdbTokenLine.cs │ │ │ │ └── SourceLocationProvider.cs │ │ │ │ ├── Mono.Cecil.Pdb.csproj │ │ │ │ ├── Mono.Cecil.Pdb │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── ISymUnmanagedDocumentWriter.cs │ │ │ │ ├── ISymUnmanagedWriter2.cs │ │ │ │ ├── ModuleMetadata.cs │ │ │ │ ├── PdbHelper.cs │ │ │ │ ├── PdbReader.cs │ │ │ │ ├── PdbWriter.cs │ │ │ │ ├── SymDocumentWriter.cs │ │ │ │ └── SymWriter.cs │ │ │ │ └── Test │ │ │ │ ├── .gitignore │ │ │ │ ├── Mono.Cecil.Pdb.Tests.csproj │ │ │ │ ├── Mono.Cecil.Tests │ │ │ │ ├── Addin.cs │ │ │ │ ├── Linq.cs │ │ │ │ └── PdbTests.cs │ │ │ │ └── Resources │ │ │ │ └── assemblies │ │ │ │ ├── VBConsApp.exe │ │ │ │ ├── VBConsApp.pdb │ │ │ │ ├── fsapp.exe │ │ │ │ ├── fsapp.pdb │ │ │ │ ├── test.exe │ │ │ │ └── test.pdb │ │ ├── omnisharp.sublime-project │ │ └── packages │ │ │ ├── CsQuery.1.3.4 │ │ │ ├── CsQuery.1.3.4.nupkg │ │ │ └── lib │ │ │ │ └── net40 │ │ │ │ ├── CsQuery.XML │ │ │ │ └── CsQuery.dll │ │ │ ├── NUnit.2.6.3 │ │ │ ├── NUnit.2.6.3.nupkg │ │ │ ├── lib │ │ │ │ ├── nunit.framework.dll │ │ │ │ └── nunit.framework.xml │ │ │ └── license.txt │ │ │ ├── Nancy.0.23.2 │ │ │ ├── Nancy.0.23.2.nupkg │ │ │ └── lib │ │ │ │ └── net40 │ │ │ │ ├── Nancy.dll │ │ │ │ └── Nancy.xml │ │ │ ├── Nancy.Authentication.Forms.0.23.2 │ │ │ ├── Nancy.Authentication.Forms.0.23.2.nupkg │ │ │ └── lib │ │ │ │ └── net40 │ │ │ │ ├── Nancy.Authentication.Forms.XML │ │ │ │ └── Nancy.Authentication.Forms.dll │ │ │ ├── Nancy.Hosting.Self.0.23.2 │ │ │ ├── Nancy.Hosting.Self.0.23.2.nupkg │ │ │ └── lib │ │ │ │ └── net40 │ │ │ │ ├── Nancy.Hosting.Self.dll │ │ │ │ └── Nancy.Hosting.Self.xml │ │ │ ├── Nancy.MetaData.0.23.2 │ │ │ ├── Nancy.MetaData.0.23.2.nupkg │ │ │ └── lib │ │ │ │ └── net40 │ │ │ │ ├── Nancy.Metadata.Module.XML │ │ │ │ └── Nancy.Metadata.Module.dll │ │ │ ├── Nancy.Swagger.0.1.0-alpha3 │ │ │ ├── Nancy.Swagger.0.1.0-alpha3.nupkg │ │ │ └── lib │ │ │ │ └── net40 │ │ │ │ ├── Nancy.Swagger.XML │ │ │ │ └── Nancy.Swagger.dll │ │ │ ├── Nancy.Testing.0.23.2 │ │ │ ├── Nancy.Testing.0.23.2.nupkg │ │ │ └── lib │ │ │ │ └── net40 │ │ │ │ ├── Nancy.Testing.dll │ │ │ │ └── Nancy.Testing.xml │ │ │ ├── Should.1.1.20 │ │ │ ├── Should.1.1.20.nupkg │ │ │ └── lib │ │ │ │ └── Should.dll │ │ │ ├── Swagger.ObjectModel.0.1.0-alpha3 │ │ │ ├── Swagger.ObjectModel.0.1.0-alpha3.nupkg │ │ │ └── lib │ │ │ │ └── net40 │ │ │ │ └── Swagger.ObjectModel.dll │ │ │ ├── System.IO.Abstractions.1.4.0.92 │ │ │ ├── System.IO.Abstractions.1.4.0.92.nupkg │ │ │ └── lib │ │ │ │ └── net35 │ │ │ │ └── System.IO.Abstractions.dll │ │ │ ├── System.IO.Abstractions.TestingHelpers.1.4.0.92 │ │ │ ├── System.IO.Abstractions.TestingHelpers.1.4.0.92.nupkg │ │ │ └── lib │ │ │ │ └── net35 │ │ │ │ └── System.IO.Abstractions.TestingHelpers.dll │ │ │ ├── monodoc.dll │ │ │ └── repositories.config │ ├── argparse │ │ ├── .gitignore │ │ ├── .hgignore │ │ ├── .hgtags │ │ ├── LICENSE.txt │ │ ├── MANIFEST.in │ │ ├── NEWS.txt │ │ ├── README.txt │ │ ├── argparse.py │ │ ├── doc │ │ │ ├── Makefile │ │ │ ├── make.bat │ │ │ └── source │ │ │ │ ├── Python-License.txt │ │ │ │ ├── argparse.rst │ │ │ │ ├── conf.py │ │ │ │ ├── index.rst │ │ │ │ └── license.rst │ │ ├── setup.cfg │ │ ├── setup.py │ │ └── test │ │ │ └── test_argparse.py │ ├── bottle │ │ ├── .coveragerc │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── Makefile │ │ ├── README.rst │ │ ├── bottle.py │ │ ├── docs │ │ │ ├── _locale │ │ │ │ ├── README.txt │ │ │ │ ├── update.sh │ │ │ │ └── zh_CN │ │ │ │ │ ├── api.po │ │ │ │ │ ├── async.po │ │ │ │ │ ├── changelog.po │ │ │ │ │ ├── configuration.po │ │ │ │ │ ├── contact.po │ │ │ │ │ ├── deployment.po │ │ │ │ │ ├── development.po │ │ │ │ │ ├── faq.po │ │ │ │ │ ├── index.po │ │ │ │ │ ├── plugindev.po │ │ │ │ │ ├── plugins.po │ │ │ │ │ ├── recipes.po │ │ │ │ │ ├── routing.po │ │ │ │ │ ├── stpl.po │ │ │ │ │ ├── tutorial.po │ │ │ │ │ └── tutorial_app.po │ │ │ ├── api.rst │ │ │ ├── async.rst │ │ │ ├── changelog.rst │ │ │ ├── conf.py │ │ │ ├── configuration.rst │ │ │ ├── contact.rst │ │ │ ├── deployment.rst │ │ │ ├── development.rst │ │ │ ├── faq.rst │ │ │ ├── index.rst │ │ │ ├── plugindev.rst │ │ │ ├── plugins │ │ │ │ └── index.rst │ │ │ ├── recipes.rst │ │ │ ├── routing.rst │ │ │ ├── stpl.rst │ │ │ ├── tutorial.rst │ │ │ └── tutorial_app.rst │ │ ├── setup.cfg │ │ ├── setup.py │ │ ├── test │ │ │ ├── .coveragerc │ │ │ ├── build_python.sh │ │ │ ├── servertest.py │ │ │ ├── test_auth.py │ │ │ ├── test_config.py │ │ │ ├── test_configdict.py │ │ │ ├── test_contextlocals.py │ │ │ ├── test_environ.py │ │ │ ├── test_fileupload.py │ │ │ ├── test_formsdict.py │ │ │ ├── test_importhook.py │ │ │ ├── test_jinja2.py │ │ │ ├── test_mako.py │ │ │ ├── test_mdict.py │ │ │ ├── test_mount.py │ │ │ ├── test_outputfilter.py │ │ │ ├── test_plugins.py │ │ │ ├── test_resources.py │ │ │ ├── test_route.py │ │ │ ├── test_router.py │ │ │ ├── test_securecookies.py │ │ │ ├── test_sendfile.py │ │ │ ├── test_server.py │ │ │ ├── test_stpl.py │ │ │ ├── test_wsgi.py │ │ │ ├── testall.py │ │ │ ├── tools.py │ │ │ ├── travis-requirements.txt │ │ │ ├── travis_setup.sh │ │ │ └── views │ │ │ │ ├── jinja2_base.tpl │ │ │ │ ├── jinja2_inherit.tpl │ │ │ │ ├── jinja2_simple.tpl │ │ │ │ ├── mako_base.tpl │ │ │ │ ├── mako_inherit.tpl │ │ │ │ ├── mako_simple.tpl │ │ │ │ ├── stpl_include.tpl │ │ │ │ ├── stpl_no_vars.tpl │ │ │ │ ├── stpl_simple.tpl │ │ │ │ ├── stpl_t2base.tpl │ │ │ │ ├── stpl_t2inc.tpl │ │ │ │ ├── stpl_t2main.tpl │ │ │ │ └── stpl_unicode.tpl │ │ └── tox.ini │ ├── frozendict │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── MANIFEST.in │ │ ├── README.md │ │ ├── README.txt │ │ ├── frozendict │ │ │ └── __init__.py │ │ └── setup.py │ ├── gocode │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _gccgo │ │ │ └── package.go │ │ ├── _goremote │ │ │ └── goremote.go │ │ ├── _testing │ │ │ ├── DESC │ │ │ ├── README │ │ │ ├── all.bash │ │ │ ├── run.py │ │ │ ├── run.rb │ │ │ ├── run.tcl │ │ │ ├── test.0001 │ │ │ │ ├── cursor.47 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0002 │ │ │ │ ├── cursor.105 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0003 │ │ │ │ ├── cursor.552 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0004 │ │ │ │ ├── cursor.1348 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0005 │ │ │ │ ├── b.go │ │ │ │ ├── cursor.327 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0006 │ │ │ │ ├── b.go │ │ │ │ ├── cursor.286 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0007 │ │ │ │ ├── cursor.58 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0008 │ │ │ │ ├── cursor.120 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0009 │ │ │ │ ├── cursor.126 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0010 │ │ │ │ ├── cursor.104 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0011 │ │ │ │ ├── cursor.76 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0012 │ │ │ │ ├── cursor.114 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0013 │ │ │ │ ├── cursor.359 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0014 │ │ │ │ ├── cursor.191 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0015 │ │ │ │ ├── cursor.130 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0016 │ │ │ │ ├── cursor.122 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0017 │ │ │ │ ├── cursor.70 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0018 │ │ │ │ ├── cursor.355 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0019 │ │ │ │ ├── cursor.72 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0020 │ │ │ │ ├── cursor.174 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0021 │ │ │ │ ├── cursor.82 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0022 │ │ │ │ ├── cursor.79 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0023 │ │ │ │ ├── cursor.88 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0024 │ │ │ │ ├── cursor.71 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0025 │ │ │ │ ├── cursor.53 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0026 │ │ │ │ ├── cursor.164 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0027 │ │ │ │ ├── cursor.84 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0028 │ │ │ │ ├── cursor.129 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0029 │ │ │ │ ├── cursor.62 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0030 │ │ │ │ ├── cursor.85 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0031 │ │ │ │ ├── cursor.80 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0032 │ │ │ │ ├── cursor.1835 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0033 │ │ │ │ ├── cursor.138 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0034 │ │ │ │ ├── cursor.82 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0035 │ │ │ │ ├── cursor.91 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0036 │ │ │ │ ├── cursor.67 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0037 │ │ │ │ ├── cursor.139 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0038 │ │ │ │ ├── cursor.87 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0039 │ │ │ │ ├── cursor.88 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0040 │ │ │ │ ├── cursor.96 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0041 │ │ │ │ ├── cursor.140 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0042 │ │ │ │ ├── cursor.126 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0043 │ │ │ │ ├── cursor.182 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0044 │ │ │ │ ├── cursor.105 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0045 │ │ │ │ ├── cursor.51 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0046 │ │ │ │ ├── cursor.53 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0047 │ │ │ │ ├── cursor.43 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0048 │ │ │ │ ├── cursor.53 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0049 │ │ │ │ ├── cursor.44 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ ├── test.0050 │ │ │ │ ├── cursor.45 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ │ └── test.0051 │ │ │ │ ├── cursor.247 │ │ │ │ ├── out.expected │ │ │ │ └── test.go.in │ │ ├── autocompletecontext.go │ │ ├── autocompletefile.go │ │ ├── client.go │ │ ├── config.go │ │ ├── cursorcontext.go │ │ ├── debian │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── docs │ │ │ ├── gocode.default │ │ │ ├── rules │ │ │ └── source │ │ │ │ └── format │ │ ├── decl.go │ │ ├── declcache.go │ │ ├── docs │ │ │ ├── IDE_integration.md │ │ │ └── autocomplete_formats.md │ │ ├── emacs-company │ │ │ ├── README.md │ │ │ └── company-go.el │ │ ├── emacs │ │ │ └── go-autocomplete.el │ │ ├── formatters.go │ │ ├── gocode.go │ │ ├── nvim │ │ │ ├── autoload │ │ │ │ └── gocomplete.vim │ │ │ ├── ftplugin │ │ │ │ └── go │ │ │ │ │ └── gocomplete.vim │ │ │ ├── pathogen_update.sh │ │ │ ├── symlink.sh │ │ │ └── update.sh │ │ ├── os_posix.go │ │ ├── os_windows.go │ │ ├── package.go │ │ ├── package_bin.go │ │ ├── package_text.go │ │ ├── pre_go17.go │ │ ├── ripper.go │ │ ├── rpc.go │ │ ├── scope.go │ │ ├── server.go │ │ ├── subl3 │ │ │ ├── README.md │ │ │ ├── gocode.py │ │ │ └── syntax │ │ │ │ ├── GoSublime-Go.tmLanguage │ │ │ │ ├── GoSublime-Go.tmLanguage.json │ │ │ │ ├── GoSublime-HTML.tmLanguage │ │ │ │ ├── GoSublime-HTML.tmLanguage.json │ │ │ │ ├── GoSublime-Template.tmLanguage │ │ │ │ ├── GoSublime-Template.tmLanguage.json │ │ │ │ └── LICENSE.md │ │ ├── utils.go │ │ └── vim │ │ │ ├── autoload │ │ │ └── gocomplete.vim │ │ │ ├── ftplugin │ │ │ └── go │ │ │ │ └── gocomplete.vim │ │ │ ├── pathogen_update.sh │ │ │ ├── symlink.sh │ │ │ └── update.sh │ ├── godef │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README │ │ ├── doc.go │ │ ├── go_local │ │ │ ├── ast │ │ │ │ ├── ast.go │ │ │ │ ├── filter.go │ │ │ │ ├── print.go │ │ │ │ ├── print_test.go │ │ │ │ ├── resolve.go │ │ │ │ ├── scope.go │ │ │ │ └── walk.go │ │ │ ├── parser │ │ │ │ ├── interface.go │ │ │ │ ├── parser.go │ │ │ │ ├── parser_test.go │ │ │ │ └── universe.go │ │ │ ├── printer │ │ │ │ ├── nodes.go │ │ │ │ ├── performance_test.go │ │ │ │ ├── printer.go │ │ │ │ ├── printer_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── comments.golden │ │ │ │ │ ├── comments.input │ │ │ │ │ ├── comments.x │ │ │ │ │ ├── declarations.golden │ │ │ │ │ ├── declarations.input │ │ │ │ │ ├── empty.golden │ │ │ │ │ ├── empty.input │ │ │ │ │ ├── expressions.golden │ │ │ │ │ ├── expressions.input │ │ │ │ │ ├── expressions.raw │ │ │ │ │ ├── linebreaks.golden │ │ │ │ │ ├── linebreaks.input │ │ │ │ │ ├── parser.go │ │ │ │ │ ├── slow.golden │ │ │ │ │ ├── slow.input │ │ │ │ │ ├── statements.golden │ │ │ │ │ └── statements.input │ │ │ ├── scanner │ │ │ │ ├── errors.go │ │ │ │ ├── scanner.go │ │ │ │ └── scanner_test.go │ │ │ ├── sym │ │ │ │ └── sym.go │ │ │ ├── token │ │ │ │ ├── position.go │ │ │ │ ├── position_test.go │ │ │ │ └── token.go │ │ │ └── types │ │ │ │ ├── goodarch.go │ │ │ │ ├── objpos.go │ │ │ │ ├── types.go │ │ │ │ └── types_test.go │ │ └── godef.go │ ├── python-future │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── MANIFEST.in │ │ ├── README.rst │ │ ├── TESTING.txt │ │ ├── check_rst.sh │ │ ├── discover_tests.py │ │ ├── docs │ │ │ ├── 3rd-party-py3k-compat-code │ │ │ │ ├── astropy_py3compat.py │ │ │ │ ├── django_utils_encoding.py │ │ │ │ ├── gevent_py3k.py │ │ │ │ ├── ipython_py3compat.py │ │ │ │ ├── jinja2_compat.py │ │ │ │ ├── numpy_py3k.py │ │ │ │ ├── pandas_py3k.py │ │ │ │ ├── pycrypto_py3compat.py │ │ │ │ └── statsmodels_py3k.py │ │ │ ├── _static │ │ │ │ ├── python-future-icon-32.ico │ │ │ │ ├── python-future-icon-white-32.ico │ │ │ │ ├── python-future-logo-textless-transparent.png │ │ │ │ ├── python-future-logo.png │ │ │ │ └── python-future-logo.tiff │ │ │ ├── _templates │ │ │ │ ├── layout.html │ │ │ │ ├── navbar.html │ │ │ │ ├── sidebarintro.html │ │ │ │ ├── sidebarlogo.html │ │ │ │ └── sidebartoc.html │ │ │ ├── _themes │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ └── future │ │ │ │ │ ├── layout.html │ │ │ │ │ ├── relations.html │ │ │ │ │ ├── static │ │ │ │ │ └── future.css_t │ │ │ │ │ └── theme.conf │ │ │ ├── automatic_conversion.rst │ │ │ ├── bind_method.rst │ │ │ ├── bytes_object.rst │ │ │ ├── changelog.rst │ │ │ ├── compatible_idioms.rst │ │ │ ├── conf.py │ │ │ ├── contents.rst.inc │ │ │ ├── conversion_limitations.rst │ │ │ ├── credits.rst │ │ │ ├── custom_iterators.rst │ │ │ ├── custom_str_methods.rst │ │ │ ├── dev_notes.rst │ │ │ ├── development.rst │ │ │ ├── dict_object.rst │ │ │ ├── faq.rst │ │ │ ├── func_annotations.rst │ │ │ ├── future-builtins.rst │ │ │ ├── futureext.py │ │ │ ├── futurize.rst │ │ │ ├── futurize_cheatsheet.rst │ │ │ ├── futurize_overview.rst │ │ │ ├── hindsight.rst │ │ │ ├── imports.rst │ │ │ ├── index.rst │ │ │ ├── int_object.rst │ │ │ ├── isinstance.rst │ │ │ ├── limitations.rst │ │ │ ├── metaclasses.rst │ │ │ ├── notebooks │ │ │ │ ├── Writing Python 2-3 compatible code.ipynb │ │ │ │ ├── bytes object.ipynb │ │ │ │ └── object special methods (next, bool, ...).ipynb │ │ │ ├── older_interfaces.rst │ │ │ ├── open_function.rst │ │ │ ├── other │ │ │ │ ├── auto2to3.py │ │ │ │ ├── find_pattern.py │ │ │ │ ├── fix_notebook_html_colour.py │ │ │ │ ├── lessons.txt │ │ │ │ ├── todo.txt │ │ │ │ ├── upload_future_docs.sh │ │ │ │ └── useful_links.txt │ │ │ ├── overview.rst │ │ │ ├── pasteurize.rst │ │ │ ├── quickstart.rst │ │ │ ├── reference.rst │ │ │ ├── roadmap.rst │ │ │ ├── standard_library_imports.rst │ │ │ ├── stdlib_incompatibilities.rst │ │ │ ├── str_object.rst │ │ │ ├── translation.rst │ │ │ ├── unicode_literals.rst │ │ │ ├── upgrading.rst │ │ │ ├── utilities.rst │ │ │ ├── what_else.rst │ │ │ ├── whatsnew.rst │ │ │ └── why_python3.rst │ │ ├── futurize.py │ │ ├── pasteurize.py │ │ ├── pytest.ini │ │ ├── requirements_py26.txt │ │ ├── setup.py │ │ ├── src │ │ │ ├── __init__.py │ │ │ ├── _dummy_thread │ │ │ │ └── __init__.py │ │ │ ├── _markupbase │ │ │ │ └── __init__.py │ │ │ ├── _thread │ │ │ │ └── __init__.py │ │ │ ├── builtins │ │ │ │ └── __init__.py │ │ │ ├── configparser │ │ │ │ └── __init__.py │ │ │ ├── copyreg │ │ │ │ └── __init__.py │ │ │ ├── future │ │ │ │ ├── __init__.py │ │ │ │ ├── backports │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _markupbase.py │ │ │ │ │ ├── datetime.py │ │ │ │ │ ├── email │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _encoded_words.py │ │ │ │ │ │ ├── _header_value_parser.py │ │ │ │ │ │ ├── _parseaddr.py │ │ │ │ │ │ ├── _policybase.py │ │ │ │ │ │ ├── base64mime.py │ │ │ │ │ │ ├── charset.py │ │ │ │ │ │ ├── encoders.py │ │ │ │ │ │ ├── errors.py │ │ │ │ │ │ ├── feedparser.py │ │ │ │ │ │ ├── generator.py │ │ │ │ │ │ ├── header.py │ │ │ │ │ │ ├── headerregistry.py │ │ │ │ │ │ ├── iterators.py │ │ │ │ │ │ ├── message.py │ │ │ │ │ │ ├── mime │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── application.py │ │ │ │ │ │ │ ├── audio.py │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── image.py │ │ │ │ │ │ │ ├── message.py │ │ │ │ │ │ │ ├── multipart.py │ │ │ │ │ │ │ ├── nonmultipart.py │ │ │ │ │ │ │ └── text.py │ │ │ │ │ │ ├── parser.py │ │ │ │ │ │ ├── policy.py │ │ │ │ │ │ ├── quoprimime.py │ │ │ │ │ │ └── utils.py │ │ │ │ │ ├── html │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── entities.py │ │ │ │ │ │ └── parser.py │ │ │ │ │ ├── http │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── client.py │ │ │ │ │ │ ├── cookiejar.py │ │ │ │ │ │ ├── cookies.py │ │ │ │ │ │ └── server.py │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── socket.py │ │ │ │ │ ├── socketserver.py │ │ │ │ │ ├── test │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── badcert.pem │ │ │ │ │ │ ├── badkey.pem │ │ │ │ │ │ ├── dh512.pem │ │ │ │ │ │ ├── https_svn_python_org_root.pem │ │ │ │ │ │ ├── keycert.passwd.pem │ │ │ │ │ │ ├── keycert.pem │ │ │ │ │ │ ├── keycert2.pem │ │ │ │ │ │ ├── nokia.pem │ │ │ │ │ │ ├── nullbytecert.pem │ │ │ │ │ │ ├── nullcert.pem │ │ │ │ │ │ ├── pystone.py │ │ │ │ │ │ ├── sha256.pem │ │ │ │ │ │ ├── ssl_cert.pem │ │ │ │ │ │ ├── ssl_key.passwd.pem │ │ │ │ │ │ ├── ssl_key.pem │ │ │ │ │ │ ├── ssl_servers.py │ │ │ │ │ │ └── support.py │ │ │ │ │ ├── total_ordering.py │ │ │ │ │ ├── urllib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── error.py │ │ │ │ │ │ ├── parse.py │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ └── robotparser.py │ │ │ │ │ └── xmlrpc │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── client.py │ │ │ │ │ │ └── server.py │ │ │ │ ├── builtins │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── disabled.py │ │ │ │ │ ├── iterators.py │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── newnext.py │ │ │ │ │ ├── newround.py │ │ │ │ │ └── newsuper.py │ │ │ │ ├── moves │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _dummy_thread.py │ │ │ │ │ ├── _markupbase.py │ │ │ │ │ ├── _thread.py │ │ │ │ │ ├── builtins.py │ │ │ │ │ ├── collections.py │ │ │ │ │ ├── configparser.py │ │ │ │ │ ├── copyreg.py │ │ │ │ │ ├── dbm │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── dumb.py │ │ │ │ │ │ ├── gnu.py │ │ │ │ │ │ └── ndbm.py │ │ │ │ │ ├── html │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── entities.py │ │ │ │ │ │ └── parser.py │ │ │ │ │ ├── http │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── client.py │ │ │ │ │ │ ├── cookiejar.py │ │ │ │ │ │ ├── cookies.py │ │ │ │ │ │ └── server.py │ │ │ │ │ ├── itertools.py │ │ │ │ │ ├── pickle.py │ │ │ │ │ ├── queue.py │ │ │ │ │ ├── reprlib.py │ │ │ │ │ ├── socketserver.py │ │ │ │ │ ├── subprocess.py │ │ │ │ │ ├── sys.py │ │ │ │ │ ├── test │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── support.py │ │ │ │ │ ├── tkinter │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── colorchooser.py │ │ │ │ │ │ ├── commondialog.py │ │ │ │ │ │ ├── constants.py │ │ │ │ │ │ ├── dialog.py │ │ │ │ │ │ ├── dnd.py │ │ │ │ │ │ ├── filedialog.py │ │ │ │ │ │ ├── font.py │ │ │ │ │ │ ├── messagebox.py │ │ │ │ │ │ ├── scrolledtext.py │ │ │ │ │ │ ├── simpledialog.py │ │ │ │ │ │ ├── tix.py │ │ │ │ │ │ └── ttk.py │ │ │ │ │ ├── urllib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── error.py │ │ │ │ │ │ ├── parse.py │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ └── robotparser.py │ │ │ │ │ ├── winreg.py │ │ │ │ │ └── xmlrpc │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── client.py │ │ │ │ │ │ └── server.py │ │ │ │ ├── standard_library │ │ │ │ │ └── __init__.py │ │ │ │ ├── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── base.py │ │ │ │ ├── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── newbytes.py │ │ │ │ │ ├── newdict.py │ │ │ │ │ ├── newint.py │ │ │ │ │ ├── newlist.py │ │ │ │ │ ├── newmemoryview.py │ │ │ │ │ ├── newobject.py │ │ │ │ │ ├── newopen.py │ │ │ │ │ ├── newrange.py │ │ │ │ │ └── newstr.py │ │ │ │ └── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── surrogateescape.py │ │ │ ├── html │ │ │ │ ├── __init__.py │ │ │ │ ├── entities.py │ │ │ │ └── parser.py │ │ │ ├── http │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── cookiejar.py │ │ │ │ ├── cookies.py │ │ │ │ └── server.py │ │ │ ├── libfuturize │ │ │ │ ├── __init__.py │ │ │ │ ├── fixer_util.py │ │ │ │ ├── fixes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── fix_UserDict.py │ │ │ │ │ ├── fix_absolute_import.py │ │ │ │ │ ├── fix_add__future__imports_except_unicode_literals.py │ │ │ │ │ ├── fix_basestring.py │ │ │ │ │ ├── fix_bytes.py │ │ │ │ │ ├── fix_cmp.py │ │ │ │ │ ├── fix_division.py │ │ │ │ │ ├── fix_division_safe.py │ │ │ │ │ ├── fix_execfile.py │ │ │ │ │ ├── fix_future_builtins.py │ │ │ │ │ ├── fix_future_standard_library.py │ │ │ │ │ ├── fix_future_standard_library_urllib.py │ │ │ │ │ ├── fix_metaclass.py │ │ │ │ │ ├── fix_next_call.py │ │ │ │ │ ├── fix_object.py │ │ │ │ │ ├── fix_oldstr_wrap.py │ │ │ │ │ ├── fix_order___future__imports.py │ │ │ │ │ ├── fix_print.py │ │ │ │ │ ├── fix_print_with_import.py │ │ │ │ │ ├── fix_raise.py │ │ │ │ │ ├── fix_remove_old__future__imports.py │ │ │ │ │ ├── fix_unicode_keep_u.py │ │ │ │ │ ├── fix_unicode_literals_import.py │ │ │ │ │ └── fix_xrange_with_import.py │ │ │ │ └── main.py │ │ │ ├── libpasteurize │ │ │ │ ├── __init__.py │ │ │ │ ├── fixes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── feature_base.py │ │ │ │ │ ├── fix_add_all__future__imports.py │ │ │ │ │ ├── fix_add_all_future_builtins.py │ │ │ │ │ ├── fix_add_future_standard_library_import.py │ │ │ │ │ ├── fix_annotations.py │ │ │ │ │ ├── fix_division.py │ │ │ │ │ ├── fix_features.py │ │ │ │ │ ├── fix_fullargspec.py │ │ │ │ │ ├── fix_future_builtins.py │ │ │ │ │ ├── fix_getcwd.py │ │ │ │ │ ├── fix_imports.py │ │ │ │ │ ├── fix_imports2.py │ │ │ │ │ ├── fix_kwargs.py │ │ │ │ │ ├── fix_memoryview.py │ │ │ │ │ ├── fix_metaclass.py │ │ │ │ │ ├── fix_newstyle.py │ │ │ │ │ ├── fix_next.py │ │ │ │ │ ├── fix_printfunction.py │ │ │ │ │ ├── fix_raise.py │ │ │ │ │ ├── fix_raise_.py │ │ │ │ │ ├── fix_throw.py │ │ │ │ │ └── fix_unpacking.py │ │ │ │ └── main.py │ │ │ ├── past │ │ │ │ ├── __init__.py │ │ │ │ ├── builtins │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── misc.py │ │ │ │ │ └── noniterators.py │ │ │ │ ├── tests │ │ │ │ │ └── __init__.py │ │ │ │ ├── translation │ │ │ │ │ └── __init__.py │ │ │ │ ├── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── basestring.py │ │ │ │ │ ├── olddict.py │ │ │ │ │ └── oldstr.py │ │ │ │ └── utils │ │ │ │ │ └── __init__.py │ │ │ ├── queue │ │ │ │ └── __init__.py │ │ │ ├── reprlib │ │ │ │ └── __init__.py │ │ │ ├── socketserver │ │ │ │ └── __init__.py │ │ │ ├── tkinter │ │ │ │ ├── __init__.py │ │ │ │ ├── colorchooser.py │ │ │ │ ├── commondialog.py │ │ │ │ ├── constants.py │ │ │ │ ├── dialog.py │ │ │ │ ├── dnd.py │ │ │ │ ├── filedialog.py │ │ │ │ ├── font.py │ │ │ │ ├── messagebox.py │ │ │ │ ├── scrolledtext.py │ │ │ │ ├── simpledialog.py │ │ │ │ ├── tix.py │ │ │ │ └── ttk.py │ │ │ ├── winreg │ │ │ │ └── __init__.py │ │ │ └── xmlrpc │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── server.py │ │ └── tests │ │ │ ├── test_future │ │ │ ├── __init__.py │ │ │ ├── test_backports.py │ │ │ ├── test_buffer.py │ │ │ ├── test_builtins.py │ │ │ ├── test_builtins_explicit_import.py │ │ │ ├── test_bytes.py │ │ │ ├── test_common_iterators.py │ │ │ ├── test_decorators.py │ │ │ ├── test_dict.py │ │ │ ├── test_explicit_imports.py │ │ │ ├── test_futurize.py │ │ │ ├── test_html.py │ │ │ ├── test_htmlparser.py │ │ │ ├── test_http_cookiejar.py │ │ │ ├── test_httplib.py │ │ │ ├── test_import_star.py │ │ │ ├── test_imports_httplib.py │ │ │ ├── test_imports_urllib.py │ │ │ ├── test_int.py │ │ │ ├── test_int_old_division.py │ │ │ ├── test_isinstance.py │ │ │ ├── test_libfuturize_fixers.py │ │ │ ├── test_list.py │ │ │ ├── test_magicsuper.py │ │ │ ├── test_object.py │ │ │ ├── test_pasteurize.py │ │ │ ├── test_py2_str_literals_to_bytes.py │ │ │ ├── test_range.py │ │ │ ├── test_requests.py │ │ │ ├── test_standard_library.py │ │ │ ├── test_str.py │ │ │ ├── test_super.py │ │ │ ├── test_surrogateescape.py │ │ │ ├── test_urllib.py │ │ │ ├── test_urllib2.py │ │ │ ├── test_urllib_response.py │ │ │ ├── test_urllib_toplevel.py │ │ │ ├── test_urllibnet.py │ │ │ ├── test_urlparse.py │ │ │ └── test_utils.py │ │ │ └── test_past │ │ │ ├── __init__.py │ │ │ ├── test_basestring.py │ │ │ ├── test_builtins.py │ │ │ ├── test_noniterators.py │ │ │ ├── test_olddict.py │ │ │ ├── test_oldstr.py │ │ │ └── test_translation.py │ ├── racerd │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── build.rs │ │ ├── docs │ │ │ └── API.md │ │ ├── scripts │ │ │ ├── assert_cargo_lock_unchanged │ │ │ ├── download_rust_source.sh │ │ │ ├── run_wrk_benchmarks.py │ │ │ └── wrk_completion_bench.lua.tpl │ │ ├── src │ │ │ ├── bin │ │ │ │ └── racerd.rs │ │ │ ├── engine │ │ │ │ ├── error.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── mod.rs.in │ │ │ │ └── racer.rs │ │ │ ├── http │ │ │ │ ├── completion.rs │ │ │ │ ├── completion.rs.in │ │ │ │ ├── definition.rs │ │ │ │ ├── definition.rs.in │ │ │ │ ├── file.rs │ │ │ │ ├── mod.rs │ │ │ │ └── ping.rs │ │ │ ├── lib.rs │ │ │ └── util │ │ │ │ ├── fs.rs │ │ │ │ └── mod.rs │ │ └── tests │ │ │ ├── lib.rs │ │ │ └── util │ │ │ ├── http.rs │ │ │ └── mod.rs │ ├── requests │ │ ├── .gitignore │ │ ├── AUTHORS.rst │ │ ├── CONTRIBUTING.md │ │ ├── HISTORY.rst │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── README.rst │ │ ├── docs │ │ │ ├── MANIFEST.in │ │ │ ├── Makefile │ │ │ ├── _static │ │ │ │ └── requests-sidebar.png │ │ │ ├── _templates │ │ │ │ ├── sidebarintro.html │ │ │ │ └── sidebarlogo.html │ │ │ ├── _themes │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.rst │ │ │ │ ├── flask_theme_support.py │ │ │ │ ├── kr │ │ │ │ │ ├── layout.html │ │ │ │ │ ├── relations.html │ │ │ │ │ ├── static │ │ │ │ │ │ └── flasky.css_t │ │ │ │ │ └── theme.conf │ │ │ │ └── kr_small │ │ │ │ │ ├── layout.html │ │ │ │ │ ├── static │ │ │ │ │ └── flasky.css_t │ │ │ │ │ └── theme.conf │ │ │ ├── api.rst │ │ │ ├── community │ │ │ │ ├── faq.rst │ │ │ │ ├── out-there.rst │ │ │ │ ├── recommended.rst │ │ │ │ ├── release-process.rst │ │ │ │ ├── support.rst │ │ │ │ ├── updates.rst │ │ │ │ └── vulnerabilities.rst │ │ │ ├── conf.py │ │ │ ├── dev │ │ │ │ ├── authors.rst │ │ │ │ ├── contributing.rst │ │ │ │ ├── philosophy.rst │ │ │ │ └── todo.rst │ │ │ ├── index.rst │ │ │ ├── make.bat │ │ │ ├── requirements.txt │ │ │ └── user │ │ │ │ ├── advanced.rst │ │ │ │ ├── authentication.rst │ │ │ │ ├── install.rst │ │ │ │ ├── intro.rst │ │ │ │ └── quickstart.rst │ │ ├── ext │ │ │ ├── requests-logo.ai │ │ │ └── requests-logo.svg │ │ ├── requests │ │ │ ├── __init__.py │ │ │ ├── adapters.py │ │ │ ├── api.py │ │ │ ├── auth.py │ │ │ ├── cacert.pem │ │ │ ├── certs.py │ │ │ ├── compat.py │ │ │ ├── cookies.py │ │ │ ├── exceptions.py │ │ │ ├── hooks.py │ │ │ ├── models.py │ │ │ ├── packages │ │ │ │ ├── README.rst │ │ │ │ ├── __init__.py │ │ │ │ ├── chardet │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── big5freq.py │ │ │ │ │ ├── big5prober.py │ │ │ │ │ ├── chardetect.py │ │ │ │ │ ├── chardistribution.py │ │ │ │ │ ├── charsetgroupprober.py │ │ │ │ │ ├── charsetprober.py │ │ │ │ │ ├── codingstatemachine.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── cp949prober.py │ │ │ │ │ ├── escprober.py │ │ │ │ │ ├── escsm.py │ │ │ │ │ ├── eucjpprober.py │ │ │ │ │ ├── euckrfreq.py │ │ │ │ │ ├── euckrprober.py │ │ │ │ │ ├── euctwfreq.py │ │ │ │ │ ├── euctwprober.py │ │ │ │ │ ├── gb2312freq.py │ │ │ │ │ ├── gb2312prober.py │ │ │ │ │ ├── hebrewprober.py │ │ │ │ │ ├── jisfreq.py │ │ │ │ │ ├── jpcntx.py │ │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ │ ├── langgreekmodel.py │ │ │ │ │ ├── langhebrewmodel.py │ │ │ │ │ ├── langhungarianmodel.py │ │ │ │ │ ├── langthaimodel.py │ │ │ │ │ ├── latin1prober.py │ │ │ │ │ ├── mbcharsetprober.py │ │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ │ ├── mbcssm.py │ │ │ │ │ ├── sbcharsetprober.py │ │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ │ ├── sjisprober.py │ │ │ │ │ ├── universaldetector.py │ │ │ │ │ └── utf8prober.py │ │ │ │ └── urllib3 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _collections.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── connectionpool.py │ │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── appengine.py │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ └── pyopenssl.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── fields.py │ │ │ │ │ ├── filepost.py │ │ │ │ │ ├── packages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ordered_dict.py │ │ │ │ │ ├── six.py │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _implementation.py │ │ │ │ │ ├── poolmanager.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ └── util │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ ├── retry.py │ │ │ │ │ ├── ssl_.py │ │ │ │ │ ├── timeout.py │ │ │ │ │ └── url.py │ │ │ ├── sessions.py │ │ │ ├── status_codes.py │ │ │ ├── structures.py │ │ │ └── utils.py │ │ ├── requirements.txt │ │ ├── setup.cfg │ │ ├── setup.py │ │ └── test_requests.py │ ├── tern_runtime │ │ └── package.json │ └── waitress │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGES.txt │ │ ├── CONTRIBUTORS.txt │ │ ├── COPYRIGHT.txt │ │ ├── LICENSE.txt │ │ ├── README.rst │ │ ├── TODO.txt │ │ ├── docs │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── api.rst │ │ ├── arguments.rst │ │ ├── conf.py │ │ ├── design.rst │ │ ├── differences.rst │ │ ├── filewrapper.rst │ │ ├── glossary.rst │ │ ├── index.rst │ │ ├── rebuild │ │ └── runner.rst │ │ ├── rtd.txt │ │ ├── setup.cfg │ │ ├── setup.py │ │ ├── tox.ini │ │ └── waitress │ │ ├── __init__.py │ │ ├── adjustments.py │ │ ├── buffers.py │ │ ├── channel.py │ │ ├── compat.py │ │ ├── parser.py │ │ ├── receiver.py │ │ ├── runner.py │ │ ├── server.py │ │ ├── task.py │ │ ├── tests │ │ ├── __init__.py │ │ ├── fixtureapps │ │ │ ├── __init__.py │ │ │ ├── badcl.py │ │ │ ├── echo.py │ │ │ ├── error.py │ │ │ ├── filewrapper.py │ │ │ ├── getline.py │ │ │ ├── groundhog1.jpg │ │ │ ├── nocl.py │ │ │ ├── runner.py │ │ │ ├── sleepy.py │ │ │ ├── toolarge.py │ │ │ └── writecb.py │ │ ├── test_adjustments.py │ │ ├── test_buffers.py │ │ ├── test_channel.py │ │ ├── test_compat.py │ │ ├── test_functional.py │ │ ├── test_init.py │ │ ├── test_parser.py │ │ ├── test_receiver.py │ │ ├── test_regression.py │ │ ├── test_runner.py │ │ ├── test_server.py │ │ ├── test_task.py │ │ ├── test_trigger.py │ │ └── test_utilities.py │ │ ├── trigger.py │ │ └── utilities.py │ ├── tox.ini │ ├── update_boost.py │ ├── vagrant_bootstrap.sh │ ├── ycm_core.pyd │ └── ycmd │ ├── __init__.py │ ├── __main__.py │ ├── bottle_utils.py │ ├── completers │ ├── __init__.py │ ├── all │ │ ├── __init__.py │ │ └── identifier_completer.py │ ├── c │ │ └── hook.py │ ├── completer.py │ ├── completer_utils.py │ ├── cpp │ │ ├── __init__.py │ │ ├── clang_completer.py │ │ ├── clang_helpers.py │ │ ├── ephemeral_values_set.py │ │ ├── flags.py │ │ └── hook.py │ ├── cs │ │ ├── __init__.py │ │ ├── cs_completer.py │ │ ├── hook.py │ │ └── solutiondetection.py │ ├── general │ │ ├── __init__.py │ │ ├── filename_completer.py │ │ ├── general_completer_store.py │ │ └── ultisnips_completer.py │ ├── general_completer.py │ ├── go │ │ ├── __init__.py │ │ ├── go_completer.py │ │ └── hook.py │ ├── javascript │ │ ├── __init__.py │ │ ├── hook.py │ │ └── tern_completer.py │ ├── objc │ │ └── hook.py │ ├── objcpp │ │ └── hook.py │ ├── python │ │ ├── __init__.py │ │ ├── hook.py │ │ └── jedi_completer.py │ ├── rust │ │ ├── __init__.py │ │ ├── hook.py │ │ └── rust_completer.py │ └── typescript │ │ ├── __init__.py │ │ ├── hook.py │ │ └── typescript_completer.py │ ├── default_settings.json │ ├── extra_conf_store.py │ ├── handlers.py │ ├── hmac_plugin.py │ ├── hmac_utils.py │ ├── identifier_utils.py │ ├── request_validation.py │ ├── request_wrap.py │ ├── responses.py │ ├── server_state.py │ ├── server_utils.py │ ├── tests │ ├── __init__.py │ ├── bottle_utils_test.py │ ├── clang │ │ ├── __init__.py │ │ ├── comment_strip_test.py │ │ ├── debug_info_test.py │ │ ├── diagnostics_test.py │ │ ├── flags_test.py │ │ ├── get_completions_test.py │ │ ├── subcommands_test.py │ │ └── testdata │ │ │ ├── .ycm_extra_conf.py │ │ │ ├── FixIt_Clang_cpp11.cpp │ │ │ ├── FixIt_Clang_objc.m │ │ │ ├── GetDoc_Clang.cc │ │ │ ├── GetParent_Clang_test.cc │ │ │ ├── GetType_Clang_test.cc │ │ │ ├── GoTo_Clang_ZeroBasedLineAndColumn_test.cc │ │ │ ├── GoTo_all_Clang_test.cc │ │ │ ├── basic.cpp │ │ │ ├── client_data │ │ │ ├── .ycm_extra_conf.py │ │ │ ├── include.cpp │ │ │ ├── include.hpp │ │ │ └── main.cpp │ │ │ ├── general_fallback │ │ │ ├── .ycm_extra_conf.py │ │ │ ├── lang_c.c │ │ │ └── lang_cpp.cc │ │ │ ├── multiple_missing_includes.cc │ │ │ ├── noflags │ │ │ ├── .ycm_extra_conf.py │ │ │ └── basic.cpp │ │ │ ├── test-include │ │ │ ├── .ycm_extra_conf.py │ │ │ ├── a.hpp │ │ │ ├── main.cpp │ │ │ ├── quote │ │ │ │ └── b.hpp │ │ │ └── system │ │ │ │ ├── a.hpp │ │ │ │ └── c.hpp │ │ │ └── unicode.cc │ ├── client_test.py │ ├── completer_test.py │ ├── completer_utils_test.py │ ├── cs │ │ ├── __init__.py │ │ ├── debug_info_test.py │ │ ├── diagnostics_test.py │ │ ├── get_completions_test.py │ │ ├── subcommands_test.py │ │ └── testdata │ │ │ ├── testy-multiple-solutions │ │ │ ├── solution-named-like-folder │ │ │ │ ├── not-testy │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ └── testy.csproj │ │ │ │ ├── solution-named-like-folder.sln │ │ │ │ ├── testy.sln │ │ │ │ ├── testy │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ └── testy.csproj │ │ │ │ └── testy2.sln │ │ │ └── solution-not-named-like-folder │ │ │ │ ├── extra-conf-abs │ │ │ │ ├── .ycm_extra_conf.py │ │ │ │ ├── testy │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ └── testy.csproj │ │ │ │ └── testy2.sln │ │ │ │ ├── extra-conf-bad │ │ │ │ ├── testy │ │ │ │ │ ├── .ycm_extra_conf.py │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ └── testy.csproj │ │ │ │ └── testy2.sln │ │ │ │ ├── extra-conf-rel │ │ │ │ ├── .ycm_extra_conf.py │ │ │ │ ├── testy │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── testy.csproj │ │ │ │ │ └── testy2.sln │ │ │ │ └── testy2.sln │ │ │ │ ├── testy │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── testy.csproj │ │ │ │ ├── testy1.sln │ │ │ │ └── testy2.sln │ │ │ ├── testy │ │ │ ├── ContinuousTest.cs │ │ │ ├── DiagnosticRange.cs │ │ │ ├── FixItTestCase.cs │ │ │ ├── GetDocTestCase.cs │ │ │ ├── GetTypeTestCase.cs │ │ │ ├── GotoTestCase.cs │ │ │ ├── ImportTest.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Unicode.cs │ │ │ ├── testy.csproj │ │ │ ├── testy.sln │ │ │ └── testy.userprefs │ │ │ └── неприличное слово │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── a project.csproj │ │ │ ├── a project.sln │ │ │ └── a project.userprefs │ ├── diagnostics_test.py │ ├── extra_conf_store_test.py │ ├── filename_completer_test.py │ ├── get_completions_test.py │ ├── go │ │ ├── __init__.py │ │ ├── debug_info_test.py │ │ ├── get_completions_test.py │ │ ├── go_completer_test.py │ │ ├── subcommands_test.py │ │ └── testdata │ │ │ ├── dontpanic.go │ │ │ ├── gocode_dontpanic_output_offset_10.json │ │ │ ├── gocode_output_offset_121.json │ │ │ ├── gocode_output_offset_215.json │ │ │ ├── gocode_output_offset_292.json │ │ │ ├── goto.go │ │ │ ├── test.go │ │ │ ├── test2.go │ │ │ ├── unicode.go │ │ │ └── win.go │ ├── hmac_utils_test.py │ ├── identifier_completer_test.py │ ├── identifier_utils_test.py │ ├── javascript │ │ ├── __init__.py │ │ ├── debug_info_test.py │ │ ├── event_notification_test.py │ │ ├── get_completions_test.py │ │ ├── subcommands_test.py │ │ └── testdata │ │ │ ├── .tern-project │ │ │ ├── coollib │ │ │ ├── cool_object.js │ │ │ └── cool_widget.js │ │ │ ├── file1.js │ │ │ ├── file2.js │ │ │ ├── file3.js │ │ │ ├── file4.js │ │ │ ├── lamelib │ │ │ └── lame_widget.js │ │ │ ├── requirejs_test.js │ │ │ ├── simple_test.js │ │ │ ├── simple_test.modified.js │ │ │ ├── trivial.js │ │ │ ├── trivial2.js │ │ │ └── unicode.js │ ├── misc_handlers_test.py │ ├── python │ │ ├── __init__.py │ │ ├── debug_info_test.py │ │ ├── get_completions_test.py │ │ ├── subcommands_test.py │ │ ├── testdata │ │ │ ├── GetDoc.py │ │ │ ├── basic.py │ │ │ ├── general_fallback │ │ │ │ └── lang_python.py │ │ │ ├── goto_file1.py │ │ │ ├── goto_file2.py │ │ │ ├── goto_file3.py │ │ │ ├── goto_file4.py │ │ │ ├── goto_file5.py │ │ │ ├── goto_references.py │ │ │ └── unicode.py │ │ └── user_defined_python_test.py │ ├── python_support_test.py │ ├── request_validation_test.py │ ├── request_wrap_test.py │ ├── rust │ │ ├── __init__.py │ │ ├── debug_info_test.py │ │ ├── get_completions_test.py │ │ ├── subcommands_test.py │ │ └── testdata │ │ │ ├── docs.rs │ │ │ ├── std_completions.rs │ │ │ └── test.rs │ ├── server_utils_test.py │ ├── shutdown_test.py │ ├── subcommands_test.py │ ├── test_utils.py │ ├── testdata │ │ ├── basic.tags │ │ ├── client │ │ │ ├── .ycm_extra_conf.py │ │ │ ├── cs_solution.sln │ │ │ └── some_file │ │ ├── extra_conf │ │ │ ├── erroneous_extra_conf.py │ │ │ ├── global_extra_conf.py │ │ │ └── project │ │ │ │ └── .ycm_extra_conf.py │ │ ├── filename_completer │ │ │ ├── inner_dir │ │ │ │ ├── foo漢字.txt │ │ │ │ ├── include │ │ │ │ │ ├── Qt │ │ │ │ │ │ └── QtGui │ │ │ │ │ └── QtGui │ │ │ │ │ │ ├── QDialog │ │ │ │ │ │ └── QWidget │ │ │ │ ├── test.cpp │ │ │ │ └── test.hpp │ │ │ └── ∂†∫ │ │ │ │ └── †es†.txt │ │ ├── python-future │ │ │ ├── standard_library │ │ │ │ └── os.py │ │ │ └── virtualenv_library │ │ │ │ ├── orig-prefix.txt │ │ │ │ └── os.py │ │ ├── unix │ │ │ └── compile_commands.json │ │ └── windows │ │ │ └── compile_commands.json │ ├── typescript │ │ ├── __init__.py │ │ ├── debug_info_test.py │ │ ├── event_notification_test.py │ │ ├── get_completions_test.py │ │ ├── subcommands_test.py │ │ └── testdata │ │ │ ├── buffer_unload │ │ │ ├── imported.ts │ │ │ └── main.ts │ │ │ ├── file2.ts │ │ │ ├── file3.ts │ │ │ ├── test.ts │ │ │ ├── tsconfig.json │ │ │ └── unicode.ts │ └── utils_test.py │ ├── user_options_store.py │ ├── utils.py │ ├── watchdog_plugin.py │ └── wsgi_server.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [report] 2 | omit = 3 | */tests/* 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/COPYING.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/appveyor.yml -------------------------------------------------------------------------------- /autoload/youcompleteme.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/autoload/youcompleteme.vim -------------------------------------------------------------------------------- /ci/appveyor/appveyor_install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/ci/appveyor/appveyor_install.bat -------------------------------------------------------------------------------- /ci/travis/travis_install.linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/ci/travis/travis_install.linux.sh -------------------------------------------------------------------------------- /ci/travis/travis_install.osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/ci/travis/travis_install.osx.sh -------------------------------------------------------------------------------- /ci/travis/travis_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/ci/travis/travis_install.sh -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/codecov.yml -------------------------------------------------------------------------------- /doc/youcompleteme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/doc/youcompleteme.txt -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/install.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/install.sh -------------------------------------------------------------------------------- /plugin/youcompleteme.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/plugin/youcompleteme.vim -------------------------------------------------------------------------------- /print_todos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/print_todos.sh -------------------------------------------------------------------------------- /python/.ycm_extra_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/.ycm_extra_conf.py -------------------------------------------------------------------------------- /python/test_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/test_requirements.txt -------------------------------------------------------------------------------- /python/ycm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/ycm/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/base.py -------------------------------------------------------------------------------- /python/ycm/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/ycm/client/base_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/client/base_request.py -------------------------------------------------------------------------------- /python/ycm/client/command_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/client/command_request.py -------------------------------------------------------------------------------- /python/ycm/client/completer_available_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/client/completer_available_request.py -------------------------------------------------------------------------------- /python/ycm/client/completion_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/client/completion_request.py -------------------------------------------------------------------------------- /python/ycm/client/debug_info_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/client/debug_info_request.py -------------------------------------------------------------------------------- /python/ycm/client/event_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/client/event_notification.py -------------------------------------------------------------------------------- /python/ycm/client/omni_completion_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/client/omni_completion_request.py -------------------------------------------------------------------------------- /python/ycm/client/shutdown_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/client/shutdown_request.py -------------------------------------------------------------------------------- /python/ycm/client/ycmd_keepalive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/client/ycmd_keepalive.py -------------------------------------------------------------------------------- /python/ycm/diagnostic_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/diagnostic_filter.py -------------------------------------------------------------------------------- /python/ycm/diagnostic_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/diagnostic_interface.py -------------------------------------------------------------------------------- /python/ycm/omni_completer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/omni_completer.py -------------------------------------------------------------------------------- /python/ycm/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/paths.py -------------------------------------------------------------------------------- /python/ycm/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/setup.py -------------------------------------------------------------------------------- /python/ycm/syntax_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/syntax_parse.py -------------------------------------------------------------------------------- /python/ycm/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/tests/__init__.py -------------------------------------------------------------------------------- /python/ycm/tests/base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/tests/base_test.py -------------------------------------------------------------------------------- /python/ycm/tests/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/ycm/tests/client/command_request_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/tests/client/command_request_test.py -------------------------------------------------------------------------------- /python/ycm/tests/client/completion_request_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/tests/client/completion_request_test.py -------------------------------------------------------------------------------- /python/ycm/tests/client/debug_info_request_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/tests/client/debug_info_request_test.py -------------------------------------------------------------------------------- /python/ycm/tests/command_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/tests/command_test.py -------------------------------------------------------------------------------- /python/ycm/tests/completion_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/tests/completion_test.py -------------------------------------------------------------------------------- /python/ycm/tests/diagnostic_filter_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/tests/diagnostic_filter_test.py -------------------------------------------------------------------------------- /python/ycm/tests/event_notification_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/tests/event_notification_test.py -------------------------------------------------------------------------------- /python/ycm/tests/omni_completer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/tests/omni_completer_test.py -------------------------------------------------------------------------------- /python/ycm/tests/paths_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/tests/paths_test.py -------------------------------------------------------------------------------- /python/ycm/tests/postcomplete_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/tests/postcomplete_test.py -------------------------------------------------------------------------------- /python/ycm/tests/syntax_parse_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/tests/syntax_parse_test.py -------------------------------------------------------------------------------- /python/ycm/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/tests/test_utils.py -------------------------------------------------------------------------------- /python/ycm/tests/testdata/cpp_syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/tests/testdata/cpp_syntax -------------------------------------------------------------------------------- /python/ycm/tests/testdata/java_syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/tests/testdata/java_syntax -------------------------------------------------------------------------------- /python/ycm/tests/testdata/php_syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/tests/testdata/php_syntax -------------------------------------------------------------------------------- /python/ycm/tests/testdata/python_syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/tests/testdata/python_syntax -------------------------------------------------------------------------------- /python/ycm/tests/testdata/uni¢𐍈d€/tags: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/ycm/tests/vimsupport_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/tests/vimsupport_test.py -------------------------------------------------------------------------------- /python/ycm/tests/youcompleteme_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/tests/youcompleteme_test.py -------------------------------------------------------------------------------- /python/ycm/unsafe_thread_pool_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/unsafe_thread_pool_executor.py -------------------------------------------------------------------------------- /python/ycm/vimsupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/vimsupport.py -------------------------------------------------------------------------------- /python/ycm/youcompleteme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/python/ycm/youcompleteme.py -------------------------------------------------------------------------------- /run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/run_tests.py -------------------------------------------------------------------------------- /third_party/pythonfutures/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/pythonfutures/CHANGES -------------------------------------------------------------------------------- /third_party/pythonfutures/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/pythonfutures/LICENSE -------------------------------------------------------------------------------- /third_party/pythonfutures/concurrent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/pythonfutures/concurrent/__init__.py -------------------------------------------------------------------------------- /third_party/pythonfutures/concurrent/futures/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/pythonfutures/concurrent/futures/_base.py -------------------------------------------------------------------------------- /third_party/pythonfutures/concurrent/futures/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/pythonfutures/concurrent/futures/_compat.py -------------------------------------------------------------------------------- /third_party/pythonfutures/concurrent/futures/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/pythonfutures/concurrent/futures/process.py -------------------------------------------------------------------------------- /third_party/pythonfutures/concurrent/futures/thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/pythonfutures/concurrent/futures/thread.py -------------------------------------------------------------------------------- /third_party/pythonfutures/crawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/pythonfutures/crawl.py -------------------------------------------------------------------------------- /third_party/pythonfutures/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/pythonfutures/docs/conf.py -------------------------------------------------------------------------------- /third_party/pythonfutures/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/pythonfutures/docs/index.rst -------------------------------------------------------------------------------- /third_party/pythonfutures/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/pythonfutures/docs/make.bat -------------------------------------------------------------------------------- /third_party/pythonfutures/futures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/pythonfutures/futures/__init__.py -------------------------------------------------------------------------------- /third_party/pythonfutures/futures/process.py: -------------------------------------------------------------------------------- 1 | from concurrent.futures import ProcessPoolExecutor 2 | -------------------------------------------------------------------------------- /third_party/pythonfutures/futures/thread.py: -------------------------------------------------------------------------------- 1 | from concurrent.futures import ThreadPoolExecutor 2 | -------------------------------------------------------------------------------- /third_party/pythonfutures/primes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/pythonfutures/primes.py -------------------------------------------------------------------------------- /third_party/pythonfutures/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/pythonfutures/setup.cfg -------------------------------------------------------------------------------- /third_party/pythonfutures/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/pythonfutures/setup.py -------------------------------------------------------------------------------- /third_party/pythonfutures/test_futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/pythonfutures/test_futures.py -------------------------------------------------------------------------------- /third_party/pythonfutures/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/pythonfutures/tox.ini -------------------------------------------------------------------------------- /third_party/requests-futures/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/requests-futures/.gitignore -------------------------------------------------------------------------------- /third_party/requests-futures/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/requests-futures/.travis.yml -------------------------------------------------------------------------------- /third_party/requests-futures/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/requests-futures/LICENSE -------------------------------------------------------------------------------- /third_party/requests-futures/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/requests-futures/MANIFEST.in -------------------------------------------------------------------------------- /third_party/requests-futures/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/requests-futures/README.rst -------------------------------------------------------------------------------- /third_party/requests-futures/requirements-python-2.7.txt: -------------------------------------------------------------------------------- 1 | futures 2 | requests>=1.2.0 3 | -------------------------------------------------------------------------------- /third_party/requests-futures/requirements-python-3.2.txt: -------------------------------------------------------------------------------- 1 | requests>=1.2.0 2 | -------------------------------------------------------------------------------- /third_party/requests-futures/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/requests-futures/setup.py -------------------------------------------------------------------------------- /third_party/requests-futures/test_requests_futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/requests-futures/test_requests_futures.py -------------------------------------------------------------------------------- /third_party/ycmd/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/.coveragerc -------------------------------------------------------------------------------- /third_party/ycmd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/.gitignore -------------------------------------------------------------------------------- /third_party/ycmd/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/.gitmodules -------------------------------------------------------------------------------- /third_party/ycmd/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/.travis.yml -------------------------------------------------------------------------------- /third_party/ycmd/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /third_party/ycmd/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/CONTRIBUTING.md -------------------------------------------------------------------------------- /third_party/ycmd/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/COPYING.txt -------------------------------------------------------------------------------- /third_party/ycmd/CORE_VERSION: -------------------------------------------------------------------------------- 1 | 25 2 | -------------------------------------------------------------------------------- /third_party/ycmd/DEV_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/DEV_SETUP.md -------------------------------------------------------------------------------- /third_party/ycmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/README.md -------------------------------------------------------------------------------- /third_party/ycmd/TESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/TESTS.md -------------------------------------------------------------------------------- /third_party/ycmd/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/Vagrantfile -------------------------------------------------------------------------------- /third_party/ycmd/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/appveyor.yml -------------------------------------------------------------------------------- /third_party/ycmd/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/build.py -------------------------------------------------------------------------------- /third_party/ycmd/ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ci/README.md -------------------------------------------------------------------------------- /third_party/ycmd/ci/appveyor/appveyor_install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ci/appveyor/appveyor_install.bat -------------------------------------------------------------------------------- /third_party/ycmd/ci/travis/travis_install.linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ci/travis/travis_install.linux.sh -------------------------------------------------------------------------------- /third_party/ycmd/ci/travis/travis_install.osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ci/travis/travis_install.osx.sh -------------------------------------------------------------------------------- /third_party/ycmd/ci/travis/travis_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ci/travis/travis_install.sh -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/Intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/Intrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/adxintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/adxintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/altivec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/altivec.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/ammintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/ammintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/arm_acle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/arm_acle.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/avx2intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/avx2intrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/avx512fintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/avx512fintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/avxintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/avxintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/bmi2intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/bmi2intrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/bmiintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/bmiintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/cpuid.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/emmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/emmintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/f16cintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/f16cintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/float.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/fma4intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/fma4intrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/fmaintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/fmaintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/fxsrintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/fxsrintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/htmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/htmintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/htmxlintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/htmxlintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/ia32intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/ia32intrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/immintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/immintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/inttypes.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/iso646.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/limits.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/lzcntintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/lzcntintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/mm3dnow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/mm3dnow.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/mm_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/mm_malloc.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/mmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/mmintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/mwaitxintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/mwaitxintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/nmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/nmmintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/opencl-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/opencl-c.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/pkuintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/pkuintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/pmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/pmmintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/popcntintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/popcntintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/prfchwintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/prfchwintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/rdseedintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/rdseedintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/rtmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/rtmintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/s390intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/s390intrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/shaintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/shaintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/smmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/smmintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/stdalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/stdalign.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/stdarg.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/stdatomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/stdatomic.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/stdbool.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/stddef.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/stdint.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/stdnoreturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/stdnoreturn.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/tbmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/tbmintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/tgmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/tgmath.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/tmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/tmmintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/unwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/unwind.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/vadefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/vadefs.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/varargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/varargs.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/vecintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/vecintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/wmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/wmmintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/x86intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/x86intrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/xmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/xmmintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/xopintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/xopintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/xsavecintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/xsavecintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/xsaveintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/xsaveintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/xsavesintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/xsavesintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/clang_includes/include/xtestintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/clang_includes/include/xtestintrin.h -------------------------------------------------------------------------------- /third_party/ycmd/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/codecov.yml -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/align/align.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/align/align.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/array.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/assert.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/assign.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/assign.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/assign/std.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/assign/std.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/atomic.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/atomic/atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/atomic/atomic.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/atomic/fences.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/atomic/fences.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/bind.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/bind/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/bind/arg.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/bind/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/bind/bind.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/bind/bind_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/bind/bind_cc.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/bind/mem_fn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/bind/mem_fn.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/bind/protect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/bind/protect.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/bind/storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/bind/storage.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/call_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/call_traits.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/cast.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/cerrno.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/cerrno.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/chrono/ceil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/chrono/ceil.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/chrono/chrono.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/chrono/chrono.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/chrono/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/chrono/config.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/concept/usage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/concept/usage.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/concept_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/concept_check.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/config.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/config/suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/config/suffix.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/config/user.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/core/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/core/ref.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/core/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/core/swap.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/cregex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/cregex.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/cstdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/cstdint.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/cstdlib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/cstdlib.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/filesystem.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/foreach.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/foreach.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/format.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/function.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/functional.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/integer.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/io_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/io_fwd.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/iterator.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/limits.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mem_fn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mem_fn.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/move/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/move/core.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/move/move.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/move/move.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpi.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpi/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpi/config.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpi/group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpi/group.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpi/python.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpi/python.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpi/status.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpi/status.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpi/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpi/timer.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/always.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/always.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/and.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/apply.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/arg.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/assert.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/at.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/at_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/at_fwd.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/back.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/base.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/begin.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/bind.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/bool.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/clear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/clear.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/deref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/deref.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/empty.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/end.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/find.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/fold.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/front.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/if.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/insert.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/int.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/lambda.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/less.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/list.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/long.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/long.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/minus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/minus.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/negate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/negate.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/next.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/next.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/not.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/not.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/or.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/pair.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/plus.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/print.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/prior.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/quote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/quote.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/size.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/size_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/size_t.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/tag.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/times.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/times.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/vector.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/mpl/void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/mpl/void.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/next_prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/next_prior.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/non_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/non_type.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/none.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/none.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/none_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/none_t.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/operators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/operators.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/optional.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/pointee.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/pointee.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/predef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/predef.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/predef/make.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/predef/make.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/predef/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/predef/os.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/predef/other.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/predef/other.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/python.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/python.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/python/def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/python/def.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/python/ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/python/ptr.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/python/str.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/python/str.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/python/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/python/tag.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/range/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/range/end.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/range/rend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/range/rend.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/range/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/range/size.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/rational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/rational.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/ref.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/regex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/regex.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/regex/icu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/regex/icu.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/regex/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/regex/user.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/regex_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/regex_fwd.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/scoped_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/scoped_ptr.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/shared_ptr.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/smart_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/smart_ptr.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/swap.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/test/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/test/debug.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/thread.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/thread/tss.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/thread/tss.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/timer.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/tokenizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/tokenizer.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/type.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/type_index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/type_index.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/utility.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/version.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/visit_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/visit_each.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/BoostParts/boost/weak_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/BoostParts/boost/weak_ptr.hpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/ycmd/cpp/llvm/include/clang-c/CXString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/llvm/include/clang-c/CXString.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/llvm/include/clang-c/Index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/llvm/include/clang-c/Index.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/llvm/include/clang-c/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/llvm/include/clang-c/Platform.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/.ycm_extra_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/.ycm_extra_conf.py -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/Candidate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/Candidate.cpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/Candidate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/Candidate.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/CandidateRepository.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/CandidateRepository.cpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/CandidateRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/CandidateRepository.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/ClangCompleter/ClangUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/ClangCompleter/ClangUtils.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/ClangCompleter/Diagnostic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/ClangCompleter/Diagnostic.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/ClangCompleter/Location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/ClangCompleter/Location.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/ClangCompleter/Range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/ClangCompleter/Range.cpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/ClangCompleter/Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/ClangCompleter/Range.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/DLLDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/DLLDefines.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/IdentifierCompleter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/IdentifierCompleter.cpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/IdentifierCompleter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/IdentifierCompleter.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/IdentifierDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/IdentifierDatabase.cpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/IdentifierDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/IdentifierDatabase.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/IdentifierUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/IdentifierUtils.cpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/IdentifierUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/IdentifierUtils.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/LetterNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/LetterNode.cpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/LetterNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/LetterNode.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/LetterNodeListMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/LetterNodeListMap.cpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/LetterNodeListMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/LetterNodeListMap.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/PythonSupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/PythonSupport.cpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/PythonSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/PythonSupport.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/ReleaseGil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/ReleaseGil.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/Result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/Result.cpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/Result.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/Utils.cpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/Utils.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/exceptions.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/standard.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/tests/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/Candidate_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/tests/Candidate_test.cpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/IsUppercase_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/tests/IsUppercase_test.cpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/LetterNode_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/tests/LetterNode_test.cpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/TestUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/tests/TestUtils.cpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/TestUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/tests/TestUtils.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/cmake/FindGMock.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/tests/cmake/FindGMock.cmake -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/gmock/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/tests/gmock/CHANGES -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/gmock/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/tests/gmock/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/gmock/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/tests/gmock/CONTRIBUTORS -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/gmock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/tests/gmock/LICENSE -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/gmock/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/tests/gmock/Makefile.am -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/gmock/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/tests/gmock/README -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/gmock/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/tests/gmock/configure.ac -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/gmock/gtest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/tests/gmock/gtest/CHANGES -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/gmock/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/tests/gmock/gtest/LICENSE -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/gmock/gtest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/tests/gmock/gtest/README -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/gmock/scripts/generator/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/gmock/src/gmock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/tests/gmock/src/gmock.cc -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/tests/main.cpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/testdata/SWObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/tests/testdata/SWObject.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/testdata/SWObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/tests/testdata/SWObject.m -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/testdata/basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/tests/testdata/basic.cpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/testdata/basic.tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/tests/testdata/basic.tags -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/tests/testdata/goto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/tests/testdata/goto.cpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/versioning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/versioning.cpp -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/versioning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/versioning.h -------------------------------------------------------------------------------- /third_party/ycmd/cpp/ycm/ycm_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/cpp/ycm/ycm_core.cpp -------------------------------------------------------------------------------- /third_party/ycmd/examples/.ycm_extra_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/examples/.ycm_extra_conf.py -------------------------------------------------------------------------------- /third_party/ycmd/examples/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/examples/LICENSE.txt -------------------------------------------------------------------------------- /third_party/ycmd/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/examples/README.md -------------------------------------------------------------------------------- /third_party/ycmd/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/examples/example_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/examples/example_client.py -------------------------------------------------------------------------------- /third_party/ycmd/examples/requirements.txt: -------------------------------------------------------------------------------- 1 | enum34>=1.0 2 | requests>=2.5.1 3 | httpie>=0.5.0 4 | -------------------------------------------------------------------------------- /third_party/ycmd/examples/samples/some_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/examples/samples/some_cpp.cpp -------------------------------------------------------------------------------- /third_party/ycmd/examples/samples/some_csharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/examples/samples/some_csharp.cs -------------------------------------------------------------------------------- /third_party/ycmd/examples/samples/some_csharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/examples/samples/some_csharp.csproj -------------------------------------------------------------------------------- /third_party/ycmd/examples/samples/some_csharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/examples/samples/some_csharp.sln -------------------------------------------------------------------------------- /third_party/ycmd/examples/samples/some_javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/examples/samples/some_javascript.js -------------------------------------------------------------------------------- /third_party/ycmd/examples/samples/some_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/examples/samples/some_python.py -------------------------------------------------------------------------------- /third_party/ycmd/libclang.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/libclang.dll -------------------------------------------------------------------------------- /third_party/ycmd/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/run_tests.py -------------------------------------------------------------------------------- /third_party/ycmd/style_format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/style_format.sh -------------------------------------------------------------------------------- /third_party/ycmd/test_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/test_requirements.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/JediHTTP/.gitignore -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/JediHTTP/.gitmodules -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/JediHTTP/.travis.yml -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/JediHTTP/LICENSE -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/JediHTTP/NOTICE -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/JediHTTP/README.md -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/JediHTTP/appveyor.yml -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/jedihttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/JediHTTP/jedihttp.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/jedihttp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/jedihttp/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/jedihttp/tests/fixtures/follow_imports/imported.py: -------------------------------------------------------------------------------- 1 | def imported_function(): 2 | pass 3 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/jedihttp/tests/fixtures/module/some_module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/jedihttp/tests/fixtures/module/some_module/main.py: -------------------------------------------------------------------------------- 1 | from some_module. 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/jedihttp/tests/fixtures/names.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | CONSTANT = 1 4 | 5 | def test(): 6 | pass 7 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/JediHTTP/tox.ini -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/travis/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/JediHTTP/travis/run.sh -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/bottle/docs/plugins/sqlite.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../plugins/sqlite/README 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/bottle/docs/plugins/werkzeug.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../plugins/werkzeug/README 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/bottle/test/views/jinja2_simple.tpl: -------------------------------------------------------------------------------- 1 | start {{var}} end -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/bottle/test/views/mako_base.tpl: -------------------------------------------------------------------------------- 1 | o${self.body()}o 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/bottle/test/views/mako_inherit.tpl: -------------------------------------------------------------------------------- 1 | <%inherit file="mako_base.tpl"/> 2 | c${var}c 3 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/bottle/test/views/mako_simple.tpl: -------------------------------------------------------------------------------- 1 | start ${var} end 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/bottle/test/views/stpl_include.tpl: -------------------------------------------------------------------------------- 1 | before 2 | %include stpl_simple var=var 3 | after 4 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/bottle/test/views/stpl_no_vars.tpl: -------------------------------------------------------------------------------- 1 | hihi -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/bottle/test/views/stpl_simple.tpl: -------------------------------------------------------------------------------- 1 | start {{var}} end 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/bottle/test/views/stpl_unicode.tpl: -------------------------------------------------------------------------------- 1 | start {{"ñç"}} {{var}} end 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/docs/global.rst: -------------------------------------------------------------------------------- 1 | :orphan: 2 | 3 | .. |jedi| replace:: *Jedi* 4 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/completion/import_tree/mod2.py: -------------------------------------------------------------------------------- 1 | from . import mod1 as fake 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/completion/import_tree/pkg/__init__.py: -------------------------------------------------------------------------------- 1 | a = list 2 | 3 | from math import * 4 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/completion/import_tree/pkg/mod1.py: -------------------------------------------------------------------------------- 1 | a = 1.0 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/completion/import_tree/random.py: -------------------------------------------------------------------------------- 1 | """ 2 | Here because random is also a builtin module. 3 | """ 4 | a = set 5 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/completion/import_tree/rename1.py: -------------------------------------------------------------------------------- 1 | """ used for renaming tests """ 2 | 3 | abc = 3 4 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/static_analysis/import_tree/a.py: -------------------------------------------------------------------------------- 1 | from . import b 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/static_analysis/import_tree/b.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/buildout_project/bin/empty_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/buildout_project/buildout.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/buildout_project/src/proj_name/module_name.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/flask-site-packages/flask/ext/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/flask-site-packages/flask_baz/__init__.py: -------------------------------------------------------------------------------- 1 | Baz = 1 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/flask-site-packages/flaskext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/flask-site-packages/flaskext/moo/__init__.py: -------------------------------------------------------------------------------- 1 | Moo = 1 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/namespace_package/ns1/pkg/ns1_file.py: -------------------------------------------------------------------------------- 1 | foo = 'ns1_file!' 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/namespace_package/ns1/pkg/ns1_folder/__init__.py: -------------------------------------------------------------------------------- 1 | foo = 'ns1_folder!' 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/namespace_package/ns2/pkg/ns2_file.py: -------------------------------------------------------------------------------- 1 | foo = 'ns2_file!' 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/namespace_package/ns2/pkg/ns2_folder/__init__.py: -------------------------------------------------------------------------------- 1 | foo = 'ns2_folder!' 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/namespace_package/ns2/pkg/ns2_folder/nested/__init__.py: -------------------------------------------------------------------------------- 1 | foo = 'nested!' 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/nested_namespaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/nested_namespaces/namespace/pkg/__init__.py: -------------------------------------------------------------------------------- 1 | CONST = 1 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/not_in_sys_path/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/not_in_sys_path/not_in_sys_path.py: -------------------------------------------------------------------------------- 1 | value = 3 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/not_in_sys_path/not_in_sys_path_package/__init__.py: -------------------------------------------------------------------------------- 1 | value = 'package' 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/not_in_sys_path/not_in_sys_path_package/module.py: -------------------------------------------------------------------------------- 1 | value = 'package.module' 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/not_in_sys_path/pkg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/sample_venvs/venv27/lib/python2.7/site-packages/egg_link.egg-link: -------------------------------------------------------------------------------- 1 | /path/from/egg-link 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/sample_venvs/venv27/lib/python2.7/site-packages/foo.pth: -------------------------------------------------------------------------------- 1 | ./dir-from-foo-pth 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/sample_venvs/venv27/lib/python2.7/site-packages/relative.egg-link: -------------------------------------------------------------------------------- 1 | ./relative/egg-link/path 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/sample_venvs/venv34/lib/python3.4/site-packages/egg_link.egg-link: -------------------------------------------------------------------------------- 1 | /path/from/egg-link 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/sample_venvs/venv34/lib/python3.4/site-packages/foo.pth: -------------------------------------------------------------------------------- 1 | ./dir-from-foo-pth 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_evaluate/sample_venvs/venv34/lib/python3.4/site-packages/relative.egg-link: -------------------------------------------------------------------------------- 1 | ./relative/egg-link/path 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/jedi/test/test_parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/waitress/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Zope Foundation and Contributors -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/waitress/docs/.gitignore: -------------------------------------------------------------------------------- 1 | _themes 2 | _build 3 | 4 | 5 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/waitress/docs/rebuild: -------------------------------------------------------------------------------- 1 | make clean html SPHINXBUILD=../env26/bin/sphinx-build 2 | 3 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/JediHTTP/vendor/waitress/waitress/tests/fixtureapps/__init__.py: -------------------------------------------------------------------------------- 1 | # package (for -m) 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=lf 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/Test/Resources/assemblies/text_file.txt: -------------------------------------------------------------------------------- 1 | Cecil ftw! 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/symbols/mdb/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | *.xml 4 | *.user 5 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/symbols/mdb/Test/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | *.xml 4 | *.user 5 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/symbols/pdb/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | *.xml 4 | *.user 5 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/OmniSharpServer/cecil/symbols/pdb/Test/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | *.xml 4 | *.user 5 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/argparse/.gitignore -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/argparse/.hgignore -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/argparse/.hgtags -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/argparse/LICENSE.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/argparse/MANIFEST.in -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/argparse/NEWS.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/argparse/README.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/argparse/argparse.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/argparse/doc/Makefile -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/argparse/doc/make.bat -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/argparse/setup.cfg -------------------------------------------------------------------------------- /third_party/ycmd/third_party/argparse/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/argparse/setup.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/bottle/.coveragerc -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/bottle/.gitignore -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/bottle/.travis.yml -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/bottle/AUTHORS -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/bottle/LICENSE -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/bottle/MANIFEST.in -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/bottle/Makefile -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/bottle/README.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/bottle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/bottle/bottle.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/bottle/docs/api.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/async.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/bottle/docs/async.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/bottle/docs/conf.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/contact.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/bottle/docs/contact.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/bottle/docs/faq.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/bottle/docs/index.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/recipes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/bottle/docs/recipes.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/routing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/bottle/docs/routing.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/docs/stpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/bottle/docs/stpl.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | 4 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/bottle/setup.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/bottle/test/.coveragerc -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/testall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/bottle/test/testall.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/bottle/test/tools.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/views/jinja2_simple.tpl: -------------------------------------------------------------------------------- 1 | start {{var}} end -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/views/mako_base.tpl: -------------------------------------------------------------------------------- 1 | o${self.body()}o 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/views/mako_inherit.tpl: -------------------------------------------------------------------------------- 1 | <%inherit file="mako_base.tpl"/> 2 | c${var}c 3 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/views/mako_simple.tpl: -------------------------------------------------------------------------------- 1 | start ${var} end 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/views/stpl_include.tpl: -------------------------------------------------------------------------------- 1 | before 2 | %include('stpl_simple', var=var) 3 | after 4 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/views/stpl_no_vars.tpl: -------------------------------------------------------------------------------- 1 | hihi -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/views/stpl_simple.tpl: -------------------------------------------------------------------------------- 1 | start {{var}} end 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/test/views/stpl_unicode.tpl: -------------------------------------------------------------------------------- 1 | start {{"ñç"}} {{var}} end 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/bottle/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/bottle/tox.ini -------------------------------------------------------------------------------- /third_party/ycmd/third_party/frozendict/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/frozendict/.gitignore -------------------------------------------------------------------------------- /third_party/ycmd/third_party/frozendict/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/frozendict/LICENSE.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/frozendict/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.txt 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/frozendict/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/frozendict/README.md -------------------------------------------------------------------------------- /third_party/ycmd/third_party/frozendict/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/frozendict/README.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/frozendict/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/frozendict/setup.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/.gitignore -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/LICENSE -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/README.md -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/DESC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/_testing/DESC -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/_testing/README -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/_testing/run.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/_testing/run.rb -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/run.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/_testing/run.tcl -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0001/cursor.47: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0002/cursor.105: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0003/cursor.552: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0004/cursor.1348: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0005/cursor.327: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0006/cursor.286: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0007/cursor.58: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0008/cursor.120: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0009/cursor.126: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0010/cursor.104: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0011/cursor.76: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0012/cursor.114: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0013/cursor.359: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0014/cursor.191: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0015/cursor.130: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0016/cursor.122: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0017/cursor.70: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0018/cursor.355: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0018/out.expected: -------------------------------------------------------------------------------- 1 | Found 2 candidates: 2 | func Bark() 3 | var Legs int 4 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0019/cursor.72: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0020/cursor.174: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0021/cursor.82: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0022/cursor.79: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0023/cursor.88: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0024/cursor.71: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0025/cursor.53: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0026/cursor.164: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0027/cursor.84: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0028/cursor.129: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0028/out.expected: -------------------------------------------------------------------------------- 1 | Found 1 candidates: 2 | func PowerOfTwo() int 3 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0029/cursor.62: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0030/cursor.85: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0031/cursor.80: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0031/out.expected: -------------------------------------------------------------------------------- 1 | Found 2 candidates: 2 | func main() 3 | var c int 4 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0032/cursor.1835: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0033/cursor.138: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0034/cursor.82: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0035/cursor.91: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0036/cursor.67: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0037/cursor.139: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0038/cursor.87: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0038/out.expected: -------------------------------------------------------------------------------- 1 | Found 2 candidates: 2 | func main() 3 | var x 4 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0039/cursor.88: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0039/out.expected: -------------------------------------------------------------------------------- 1 | Found 2 candidates: 2 | func main() 3 | var z 4 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0040/cursor.96: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0041/cursor.140: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0042/cursor.126: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0043/cursor.182: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0044/cursor.105: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0045/cursor.51: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0046/cursor.53: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0047/cursor.43: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0047/out.expected: -------------------------------------------------------------------------------- 1 | Nothing to complete. 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0047/test.go.in: -------------------------------------------------------------------------------- 1 | package p 2 | 3 | type T struct{ X } 4 | 5 | var _ = T.x. 6 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0048/cursor.53: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0049/cursor.44: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0049/out.expected: -------------------------------------------------------------------------------- 1 | Found 1 candidates: 2 | var i int 3 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0050/cursor.45: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0050/out.expected: -------------------------------------------------------------------------------- 1 | Found 1 candidates: 2 | var i int 3 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/_testing/test.0051/cursor.247: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/client.go -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/config.go -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/cursorcontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/cursorcontext.go -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/debian/changelog -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/debian/control -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/debian/copyright -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/debian/rules -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/decl.go -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/declcache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/declcache.go -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/formatters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/formatters.go -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/gocode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/gocode.go -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/nvim/symlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/nvim/symlink.sh -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/nvim/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/nvim/update.sh -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/os_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/os_posix.go -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/os_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/os_windows.go -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/package.go -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/package_bin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/package_bin.go -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/package_text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/package_text.go -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/pre_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/pre_go17.go -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/ripper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/ripper.go -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/rpc.go -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/scope.go -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/server.go -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/subl3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/subl3/README.md -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/subl3/gocode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/subl3/gocode.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/utils.go -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/vim/symlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/vim/symlink.sh -------------------------------------------------------------------------------- /third_party/ycmd/third_party/gocode/vim/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/gocode/vim/update.sh -------------------------------------------------------------------------------- /third_party/ycmd/third_party/godef/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/godef/.gitignore -------------------------------------------------------------------------------- /third_party/ycmd/third_party/godef/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/godef/LICENSE -------------------------------------------------------------------------------- /third_party/ycmd/third_party/godef/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/godef/README -------------------------------------------------------------------------------- /third_party/ycmd/third_party/godef/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/godef/doc.go -------------------------------------------------------------------------------- /third_party/ycmd/third_party/godef/godef.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/godef/godef.go -------------------------------------------------------------------------------- /third_party/ycmd/third_party/python-future/docs/_themes/future/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = basic 3 | stylesheet = future.css 4 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/python-future/docs/overview.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | 3 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/python-future/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/python-future/setup.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/python-future/src/future/backports/email/mime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/python-future/src/future/backports/http/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/python-future/src/future/backports/test/nullcert.pem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/python-future/src/future/backports/urllib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/python-future/src/future/backports/xmlrpc/__init__.py: -------------------------------------------------------------------------------- 1 | # This directory is a Python package. 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/python-future/src/future/moves/xmlrpc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/python-future/src/future/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/python-future/src/libfuturize/__init__.py: -------------------------------------------------------------------------------- 1 | # empty to make this a package 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/python-future/src/libpasteurize/__init__.py: -------------------------------------------------------------------------------- 1 | # empty to make this a package 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/python-future/src/past/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/python-future/tests/test_future/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/python-future/tests/test_future/test_py2_str_literals_to_bytes.py: -------------------------------------------------------------------------------- 1 | a = '123' 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/python-future/tests/test_past/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/racerd/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/racerd/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/racerd/.travis.yml -------------------------------------------------------------------------------- /third_party/ycmd/third_party/racerd/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/racerd/Cargo.lock -------------------------------------------------------------------------------- /third_party/ycmd/third_party/racerd/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/racerd/Cargo.toml -------------------------------------------------------------------------------- /third_party/ycmd/third_party/racerd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/racerd/LICENSE -------------------------------------------------------------------------------- /third_party/ycmd/third_party/racerd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/racerd/README.md -------------------------------------------------------------------------------- /third_party/ycmd/third_party/racerd/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/racerd/appveyor.yml -------------------------------------------------------------------------------- /third_party/ycmd/third_party/racerd/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/racerd/build.rs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/racerd/docs/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/racerd/docs/API.md -------------------------------------------------------------------------------- /third_party/ycmd/third_party/racerd/src/http/completion.rs: -------------------------------------------------------------------------------- 1 | include!(concat!(env!("OUT_DIR"), "/http/completion.rs")); 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/racerd/src/http/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/racerd/src/http/file.rs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/racerd/src/http/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/racerd/src/http/mod.rs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/racerd/src/http/ping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/racerd/src/http/ping.rs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/racerd/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/racerd/src/lib.rs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/racerd/src/util/fs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/racerd/src/util/fs.rs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/racerd/src/util/mod.rs: -------------------------------------------------------------------------------- 1 | //! Som misc shared functionality 2 | pub mod fs; 3 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/racerd/tests/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/racerd/tests/lib.rs -------------------------------------------------------------------------------- /third_party/ycmd/third_party/requests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/requests/.gitignore -------------------------------------------------------------------------------- /third_party/ycmd/third_party/requests/AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/requests/AUTHORS.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/requests/HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/requests/HISTORY.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/requests/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/requests/LICENSE -------------------------------------------------------------------------------- /third_party/ycmd/third_party/requests/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/requests/MANIFEST.in -------------------------------------------------------------------------------- /third_party/ycmd/third_party/requests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/requests/Makefile -------------------------------------------------------------------------------- /third_party/ycmd/third_party/requests/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/requests/NOTICE -------------------------------------------------------------------------------- /third_party/ycmd/third_party/requests/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/requests/README.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/requests/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/requests/docs/Makefile -------------------------------------------------------------------------------- /third_party/ycmd/third_party/requests/docs/_themes/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.pyo 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/requests/docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/requests/docs/api.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/requests/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/requests/docs/conf.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/requests/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/requests/docs/index.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/requests/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/requests/docs/make.bat -------------------------------------------------------------------------------- /third_party/ycmd/third_party/requests/docs/requirements.txt: -------------------------------------------------------------------------------- 1 | Sphinx==1.1.3 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/requests/requests/packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/requests/requests/packages/urllib3/packages/ssl_match_hostname/.gitignore: -------------------------------------------------------------------------------- 1 | env 2 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/requests/setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/requests/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/requests/setup.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/waitress/.gitignore -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/waitress/.travis.yml -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/waitress/CHANGES.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Zope Foundation and Contributors -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/waitress/LICENSE.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/waitress/README.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/waitress/TODO.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/docs/.gitignore: -------------------------------------------------------------------------------- 1 | _themes 2 | _build 3 | 4 | 5 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/waitress/docs/Makefile -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/waitress/docs/api.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/waitress/docs/conf.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/waitress/docs/index.rst -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/docs/rebuild: -------------------------------------------------------------------------------- 1 | make clean html SPHINXBUILD=../env26/bin/sphinx-build 2 | 3 | -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/rtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/waitress/rtd.txt -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/waitress/setup.cfg -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/waitress/setup.py -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/third_party/waitress/tox.ini -------------------------------------------------------------------------------- /third_party/ycmd/third_party/waitress/waitress/tests/fixtureapps/__init__.py: -------------------------------------------------------------------------------- 1 | # package (for -m) 2 | -------------------------------------------------------------------------------- /third_party/ycmd/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/tox.ini -------------------------------------------------------------------------------- /third_party/ycmd/update_boost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/update_boost.py -------------------------------------------------------------------------------- /third_party/ycmd/vagrant_bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/vagrant_bootstrap.sh -------------------------------------------------------------------------------- /third_party/ycmd/ycm_core.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycm_core.pyd -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/__main__.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/bottle_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/bottle_utils.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/all/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/c/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/completers/c/hook.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/completer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/completers/completer.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/completer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/completers/completer_utils.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/cpp/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/completers/cpp/flags.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/cpp/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/completers/cpp/hook.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/cs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/cs/cs_completer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/completers/cs/cs_completer.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/cs/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/completers/cs/hook.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/general/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/go/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/go/go_completer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/completers/go/go_completer.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/go/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/completers/go/hook.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/javascript/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/javascript/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/completers/javascript/hook.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/objc/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/completers/objc/hook.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/objcpp/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/completers/objcpp/hook.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/python/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/completers/python/hook.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/rust/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/rust/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/completers/rust/hook.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/typescript/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/completers/typescript/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/completers/typescript/hook.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/default_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/default_settings.json -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/extra_conf_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/extra_conf_store.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/handlers.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/hmac_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/hmac_plugin.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/hmac_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/hmac_utils.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/identifier_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/identifier_utils.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/request_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/request_validation.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/request_wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/request_wrap.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/responses.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/server_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/server_state.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/server_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/server_utils.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/__init__.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/bottle_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/bottle_utils_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/clang/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/clang/__init__.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/clang/debug_info_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/clang/debug_info_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/clang/flags_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/clang/flags_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/clang/testdata/basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/clang/testdata/basic.cpp -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/clang/testdata/client_data/include.cpp: -------------------------------------------------------------------------------- 1 | #include " 2 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/clang/testdata/client_data/include.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/clang/testdata/test-include/a.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/clang/testdata/test-include/quote/b.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/clang/testdata/test-include/system/a.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/clang/testdata/test-include/system/c.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/client_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/completer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/completer_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/completer_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/completer_utils_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/cs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/cs/__init__.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/cs/debug_info_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/cs/debug_info_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/cs/diagnostics_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/cs/diagnostics_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/cs/subcommands_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/cs/subcommands_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/diagnostics_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/diagnostics_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/extra_conf_store_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/extra_conf_store_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/get_completions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/get_completions_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/go/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/go/__init__.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/go/debug_info_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/go/debug_info_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/go/go_completer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/go/go_completer_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/go/subcommands_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/go/subcommands_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/go/testdata/dontpanic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/go/testdata/dontpanic.go -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/go/testdata/goto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/go/testdata/goto.go -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/go/testdata/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/go/testdata/test.go -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/go/testdata/test2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/go/testdata/test2.go -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/go/testdata/unicode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/go/testdata/unicode.go -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/go/testdata/win.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/go/testdata/win.go -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/hmac_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/hmac_utils_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/identifier_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/identifier_utils_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/javascript/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/javascript/__init__.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/javascript/testdata/file2.js: -------------------------------------------------------------------------------- 1 | 2 | console.log( global ); 3 | 4 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/javascript/testdata/file3.js: -------------------------------------------------------------------------------- 1 | 2 | function method( xyz ) { 3 | return global 4 | } 5 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/javascript/testdata/trivial2.js: -------------------------------------------------------------------------------- 1 | X. 2 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/misc_handlers_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/misc_handlers_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/python/__init__.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/python/testdata/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/python/testdata/basic.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/python/testdata/goto_file2.py: -------------------------------------------------------------------------------- 1 | from goto_file3 import bar as foo 2 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/python/testdata/goto_file3.py: -------------------------------------------------------------------------------- 1 | def bar(): 2 | pass 3 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/python/testdata/goto_file5.py: -------------------------------------------------------------------------------- 1 | class Foo(object): 2 | pass 3 | 4 | Bar 5 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/python/testdata/unicode.py: -------------------------------------------------------------------------------- 1 | def Foo(): 2 | """aafäö""" 3 | pass 4 | 5 | Fo 6 | 7 | x = '†'.cen 8 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/python_support_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/python_support_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/request_wrap_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/request_wrap_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/rust/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/rust/__init__.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/rust/debug_info_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/rust/debug_info_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/rust/subcommands_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/rust/subcommands_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/rust/testdata/docs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/rust/testdata/docs.rs -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/rust/testdata/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/rust/testdata/test.rs -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/server_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/server_utils_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/shutdown_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/shutdown_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/subcommands_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/subcommands_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/test_utils.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/basic.tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/testdata/basic.tags -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/client/.ycm_extra_conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/client/cs_solution.sln: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/client/some_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/extra_conf/project/.ycm_extra_conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/filename_completer/inner_dir/foo漢字.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/filename_completer/inner_dir/include/Qt/QtGui: -------------------------------------------------------------------------------- 1 | // This file includes all QtGui headers 2 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/filename_completer/inner_dir/include/QtGui/QDialog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/filename_completer/inner_dir/include/QtGui/QWidget: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/filename_completer/inner_dir/test.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/filename_completer/∂†∫/†es†.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/python-future/standard_library/os.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/python-future/virtualenv_library/orig-prefix.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/testdata/python-future/virtualenv_library/os.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/typescript/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/typescript/__init__.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/typescript/testdata/file2.ts: -------------------------------------------------------------------------------- 1 | new Bar().testMethod(); 2 | -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/tests/utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/tests/utils_test.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/user_options_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/user_options_store.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/utils.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/watchdog_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/watchdog_plugin.py -------------------------------------------------------------------------------- /third_party/ycmd/ycmd/wsgi_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/third_party/ycmd/ycmd/wsgi_server.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeleon/YouCompleteMe-x86/HEAD/tox.ini --------------------------------------------------------------------------------