Searched +refs:clang +refs:include +refs:fixer (Results 1 – 25 of 25) sorted by relevance
/external/llvm-project/clang-tools-extra/docs/ |
D | clang-include-fixer.rst | 8 management of ``#include`` directives in any file. 9 :program:`clang-include-fixer` addresses one aspect of this problem by providing 10 an automated way of adding ``#include`` directives for missing symbols in one 13 While inserting missing ``#include``, :program:`clang-include-fixer` adds 20 To use :program:`clang-include-fixer` two databases are required. Both can be 30 correspond to. Then the :program:`clang-include-fixer` can automatically pick 32 ``compile_commands.json`` as generated by CMake does not include header files, 35 .. _How To Setup Tooling For LLVM: https://clang.llvm.org/docs/HowToSetupToolingForLLVM.html 40 The include fixer contains :program:`find-all-symbols`, a tool to create a 49 $ ninja clang-include-fixer // build clang-include-fixer tool. [all …]
|
D | index.rst | 5 Welcome to the clang-tools-extra project which contains extra tools built using 18 clang-tidy/index 19 clang-include-fixer 22 clang-rename 24 clang-doc 30 tools of clang-tools-extra, not the **external** use of these tools. The Doxygen 41 Since the tools of clang-tools-extra are constantly under active
|
D | ReleaseNotes.rst | 27 the latest release, please see the `Clang Web Site <https://clang.llvm.org>`_ or 52 Improvements to clang-doc 57 Improvements to clang-query 62 Improvements to clang-rename 67 Improvements to clang-tidy 70 - Checks that allow configuring names of headers to include now support wrapping 71 the include in angle brackets to create a system include. For example, 73 <clang-tidy/checks/cppcoreguidelines-init-variables>` and 74 :doc:`modernize-make-unique <clang-tidy/checks/modernize-make-unique>`. 94 <clang-tidy/checks/altera-kernel-name-restriction>` check. [all …]
|
D | doxygen.cfg.in | 35 PROJECT_NAME = clang-tools 88 # If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member 151 # header file to include in order to use a class. If left blank only the name of 153 # specify the list of include paths that are normally passed to the compiler 294 # to include (a tag file for) the STL sources as input, then you should set this 478 # will be excluded. Set it to YES to include the internal documentation. 506 # grouped member an include statement to the documentation, telling the reader 507 # which file to include in order to use the member. 512 # If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include 748 @abs_srcdir@/../clang-apply-replacements \ [all …]
|
/external/llvm-project/clang-tools-extra/clang-include-fixer/tool/ |
D | CMakeLists.txt | 3 add_clang_tool(clang-include-fixer 7 clang_target_link_libraries(clang-include-fixer 17 target_link_libraries(clang-include-fixer 23 install(PROGRAMS clang-include-fixer.el 24 DESTINATION share/clang 25 COMPONENT clang-include-fixer) 26 install(PROGRAMS clang-include-fixer.py 27 DESTINATION share/clang 28 COMPONENT clang-include-fixer)
|
/external/llvm-project/llvm/utils/gn/secondary/clang-tools-extra/clang-include-fixer/tool/ |
D | BUILD.gn | 1 executable("clang-include-fixer") { 4 "//clang-tools-extra/clang-include-fixer", 5 "//clang-tools-extra/clang-include-fixer/find-all-symbols", 6 "//clang/lib/Basic", 7 "//clang/lib/Format", 8 "//clang/lib/Frontend", 9 "//clang/lib/Rewrite", 10 "//clang/lib/Serialization", 11 "//clang/lib/Tooling", 12 "//clang/lib/Tooling/Core",
|
/external/llvm-project/llvm/utils/gn/secondary/clang-tools-extra/unittests/clang-include-fixer/ |
D | BUILD.gn | 6 "//clang-tools-extra/clang-include-fixer", 7 "//clang-tools-extra/clang-include-fixer/find-all-symbols", 8 "//clang/lib/Basic", 9 "//clang/lib/Format", 10 "//clang/lib/Frontend", 11 "//clang/lib/Rewrite", 12 "//clang/lib/Serialization", 13 "//clang/lib/Tooling", 14 "//clang/lib/Tooling/Core", 18 "//clang-tools-extra/clang-include-fixer", [all …]
|
/external/llvm-project/llvm/utils/gn/secondary/clang-tools-extra/unittests/ |
D | BUILD.gn | 1 import("//clang-tools-extra/clangd/xpc/enable.gni") 5 "clang-apply-replacements:ClangApplyReplacementsTests", 6 "clang-change-namespace:ClangChangeNamespaceTests", 7 "clang-doc:ClangDocTests", 8 "clang-include-fixer:ClangIncludeFixerTests", 9 "clang-include-fixer/find-all-symbols:FindAllSymbolsTests", 10 "clang-move:ClangMoveTests", 11 "clang-query:ClangQueryTests", 12 "clang-tidy:ClangTidyTests",
|
/external/llvm-project/llvm/utils/gn/secondary/clang-tools-extra/unittests/clang-include-fixer/find-all-symbols/ |
D | BUILD.gn | 6 "//clang-tools-extra/clang-include-fixer/find-all-symbols", 7 "//clang/lib/AST", 8 "//clang/lib/ASTMatchers", 9 "//clang/lib/Basic", 10 "//clang/lib/Frontend", 11 "//clang/lib/Lex", 12 "//clang/lib/Serialization", 13 "//clang/lib/Tooling", 16 include_dirs = [ "//clang-tools-extra/clang-include-fixer/find-all-symbols" ]
|
/external/llvm-project/llvm/utils/gn/secondary/clang-tools-extra/clang-include-fixer/ |
D | BUILD.gn | 1 static_library("clang-include-fixer") { 5 "//clang-tools-extra/clang-include-fixer/find-all-symbols", 6 "//clang/lib/AST", 7 "//clang/lib/Basic", 8 "//clang/lib/Format", 9 "//clang/lib/Frontend", 10 "//clang/lib/Lex", 11 "//clang/lib/Parse", 12 "//clang/lib/Sema", 13 "//clang/lib/Serialization", [all …]
|
/external/llvm-project/llvm/utils/gn/secondary/clang-tools-extra/test/ |
D | BUILD.gn | 1 import("//clang-tools-extra/clang-tidy/enable.gni") 2 import("//clang/lib/StaticAnalyzer/Frontend/enable.gni") 3 import("//clang/tools/libclang/include_clang_tools_extra.gni") 15 rebase_path(get_label_info("//clang-tools-extra", "target_out_dir")), 16 "CLANG_TOOLS_SOURCE_DIR=" + rebase_path("//clang-tools-extra"), 32 input = "//clang-tools-extra/test/lit.site.cfg.py.in" 57 input = "//clang-tools-extra/test/Unit/lit.site.cfg.py.in" 62 # This target should contain all dependencies of check-clang-tools. 64 # prerequisites for check-clang but doesn't run check-clang itself. 69 "//clang-tools-extra/clang-apply-replacements/tool:clang-apply-replacements", [all …]
|
/external/llvm-project/llvm/utils/gn/secondary/clang-tools-extra/clang-include-fixer/find-all-symbols/tool/ |
D | BUILD.gn | 4 "//clang-tools-extra/clang-include-fixer/find-all-symbols", 5 "//clang/lib/AST", 6 "//clang/lib/ASTMatchers", 7 "//clang/lib/Basic", 8 "//clang/lib/Frontend", 9 "//clang/lib/Lex", 10 "//clang/lib/Serialization", 11 "//clang/lib/Tooling",
|
/external/llvm-project/llvm/utils/gn/secondary/clang-tools-extra/clang-include-fixer/plugin/ |
D | BUILD.gn | 5 "//clang-tools-extra/clang-include-fixer", 6 "//clang/lib/AST", 7 "//clang/lib/Basic", 8 "//clang/lib/Frontend", 9 "//clang/lib/Parse", 10 "//clang/lib/Sema", 11 "//clang/lib/Tooling",
|
/external/llvm-project/clang-tools-extra/unittests/ |
D | CMakeLists.txt | 8 add_subdirectory(clang-apply-replacements) 9 add_subdirectory(clang-change-namespace) 10 add_subdirectory(clang-doc) 11 add_subdirectory(clang-include-fixer) 12 add_subdirectory(clang-move) 13 add_subdirectory(clang-query) 14 add_subdirectory(clang-tidy)
|
/external/llvm-project/clang-tools-extra/ |
D | CMakeLists.txt | 1 include(CMakeDependentOption) 4 "Include static analyzer checks in clang-tidy" ON) 6 add_subdirectory(clang-apply-replacements) 7 add_subdirectory(clang-reorder-fields) 9 add_subdirectory(clang-tidy) 11 add_subdirectory(clang-change-namespace) 12 add_subdirectory(clang-doc) 13 add_subdirectory(clang-include-fixer) 14 add_subdirectory(clang-move) 15 add_subdirectory(clang-query)
|
/external/llvm-project/clang-tools-extra/unittests/clang-include-fixer/ |
D | CMakeLists.txt | 6 ${CMAKE_CURRENT_SOURCE_DIR}/../../clang-include-fixer REALPATH) 11 # We'd like to clang/unittests/Tooling/RewriterTestContext.h in the test.
|
/external/llvm-project/clang-tools-extra/unittests/clang-include-fixer/find-all-symbols/ |
D | CMakeLists.txt | 7 ${CMAKE_CURRENT_SOURCE_DIR}/../../../clang-include-fixer/find-all-symbols REALPATH)
|
/external/llvm-project/llvm/utils/gn/secondary/clang/tools/libclang/ |
D | BUILD.gn | 1 import("//clang/lib/ARCMigrate/enable.gni") 2 import("//clang/tools/libclang/include_clang_tools_extra.gni") 5 # This build file is just enough to get check-clang to pass, it's missing 23 "//clang/include/clang/Config", 24 "//clang/lib/AST", 25 "//clang/lib/Basic", 26 "//clang/lib/Frontend", 27 "//clang/lib/Headers", 28 "//clang/lib/Index", 29 "//clang/lib/Lex", [all …]
|
/external/llvm-project/clang-tools-extra/test/ |
D | CMakeLists.txt | 43 # For the clang-apply-replacements test that uses clang-rename. 44 clang-rename 46 # For the clang-doc tests that emit bitcode files. 50 clang-apply-replacements 51 clang-change-namespace 52 clang-doc 53 clang-include-fixer 54 clang-move 55 clang-query 56 clang-reorder-fields [all …]
|
/external/llvm-project/clang/docs/ |
D | ClangFormattedStatus.rst | 32 * - clang/bindings/python/tests/cindex/INPUTS 37 * - clang/docs/analyzer/checkers 42 * - clang/examples/AnnotateFunctions 47 * - clang/examples/Attribute 52 * - clang/examples/CallSuperAttribute 57 * - clang/examples/clang-interpreter 62 * - clang/examples/PrintFunctionNames 67 * - clang/include/clang/Analysis 72 * - clang/include/clang/Analysis/Analyses 77 * - clang/include/clang/Analysis/DomainSpecific [all …]
|
/external/llvm-project/clang/cmake/caches/ |
D | Fuchsia-stage2.cmake | 7 set(LLVM_ENABLE_PROJECTS "clang;clang-tools-extra;lld;llvm" CACHE STRING "") 148 …IA_${target}_COMPILER_FLAGS "--target=${target}-unknown-fuchsia -I${FUCHSIA_SDK}/pkg/fdio/include") 268 clang 271 clang-apply-replacements 272 clang-doc 273 clang-format 274 clang-resource-headers 275 clang-include-fixer 276 clang-refactor 277 clang-scan-deps [all …]
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.8.0a1.rst | 217 clang Memory Sanitizer build instrumentation was added to work around false 405 they work properly under clang's Memory Sanitizer. A new configure flag 1331 Fixed clang ubsan (undefined behavior sanitizer) warnings in dictobject.c by 2750 The :term:`2to3` :2to3fixer:`execfile` fixer now opens the file with mode 3073 ZIP files created by :mod:`distutils` will now include entries for 3820 The :2to3fixer:`reload` fixer now uses :func:`importlib.reload` instead of 5942 Do not include name field in SMTP envelope from address. Patch by Stéphane 6440 deprecated in their respective docstring, and include version since 7275 When building Python with clang and LTO, LTO flags are no longer passed into 7318 Have --with-lto works correctly with clang. [all …]
|
/external/python/cpython3/Misc/ |
D | HISTORY | 433 libc headers from the Linux Standard Base, which do not include some 935 - Issue #23330: h2py now supports arbitrary filenames in #include. 2117 include directories if they aren't already being searched. This avoids 3173 - Issue #19922: define _INCLUDE__STDC_A1_SOURCE in HP-UX to include mbstate_t 3819 - Issue #10712: 2to3 has a new "asserts" fixer that replaces deprecated names 3906 in broken interpreters when building with clang. 4020 of clang and GCC by appropriately marking known false alarms in the small 4209 include the module name when a key argument is missing. 5732 - Issue #16116: Fix include and library paths to be correct when building C 5749 server that does not include a ``Connection: close`` header in its responses. [all …]
|
/external/jline/src/src/test/resources/jline/example/ |
D | english.gz |
|
/external/kotlinx.coroutines/benchmarks/src/jmh/resources/ |
D | ospd.txt.gz |
|