| /llvm-project/llvm/cmake/platforms/ |
| H A D | iOS.cmake | 19 message(STATUS "Using SDKROOT ${SDKROOT}") 28 message(STATUS "Using C compiler ${CMAKE_C_COMPILER}") 36 message(STATUS "Using C++ compiler ${CMAKE_CXX_COMPILER}") 45 message(STATUS "Using ar ${CMAKE_AR}") 54 message(STATUS "Using ranlib ${CMAKE_RANLIB}") 63 message(STATUS "Using strip ${CMAKE_STRIP}") 72 message(STATUS "Using dsymutil ${CMAKE_DSYMUTIL}") 81 message(STATUS "Using libtool ${CMAKE_LIBTOOL}") 90 message(STATUS "Using codesign ${CMAKE_CODESIGN}") 101 message(STATUS "Using codesign_allocate ${CMAKE_CODESIGN_ALLOCATE}")
|
| /llvm-project/mlir/test/mlir-tblgen/ |
| H A D | deprecation-transitive.td | 11 // CHECK: :[[# @LINE + 1]]:{{[0-9]+}}: warning: Using deprecated def `OpTraitA` 16 // CHECK: :[[# @LINE + 1]]:{{[0-9]+}}: warning: Using deprecated def `OpTraitA` 21 // CHECK: :[[# @LINE + 1]]:{{[0-9]+}}: warning: Using deprecated def `OpTraitA` 28 // CHECK: :[[# @LINE + 1]]:{{[0-9]+}}: warning: Using deprecated def `OpTraitA` 33 // CHECK: :[[# @LINE + 1]]:{{[0-9]+}}: warning: Using deprecated def `OpTraitA` 42 // CHECK: :[[# @LINE + 1]]:{{[0-9]+}}: warning: Using deprecated def `OpTraitA` 47 // CHECK: :[[# @LINE + 1]]:{{[0-9]+}}: warning: Using deprecated def `OpTraitA`
|
| H A D | deprecation.td | 12 // ERROR1: warning: Using deprecated def `OpTraitA`
|
| /llvm-project/clang-tools-extra/clang-tidy/misc/ |
| H A D | UnusedUsingDeclsCheck.cpp | 91 if (const auto *Using = Result.Nodes.getNodeAs<UsingDecl>("using")) { in check() 93 if (Using->getLocation().isMacroID()) in check() 97 if (isa<CXXRecordDecl>(Using->getDeclContext())) in check() 103 if (isa<FunctionDecl>(Using->getDeclContext())) in check() 106 UsingDeclContext Context(Using); in check() 108 Using->getBeginLoc(), in check() 110 Using->getEndLoc(), tok::semi, *Result.SourceManager, getLangOpts(), in check() 112 for (const auto *UsingShadow : Using->shadows()) { in check() 84 if (const auto *Using = Result.Nodes.getNodeAs<UsingDecl>("using")) { check() local
|
| /llvm-project/clang-tools-extra/clang-tidy/google/ |
| H A D | UpgradeGoogletestCaseCheck.cpp | 256 if (const auto *Using = Result.Nodes.getNodeAs<UsingDecl>("using")) { in getAliasNameRange() local 258 Using->getNameInfo().getSourceRange()); in getAliasNameRange() 284 } else if (const auto *Using = Result.Nodes.getNodeAs<UsingDecl>("using")) { in check() local 286 CharSourceRange::getTokenRange(Using->getNameInfo().getSourceRange()); in check() 287 IsInInstantiation = isInInstantiation(*Using, Result); in check() 288 IsInTemplate = isInTemplate<Decl>(*Using, Result); in check()
|
| /llvm-project/clang/docs/ |
| H A D | index.rst | 13 Using Clang as a Compiler 67 Using Clang as a Library 89 Using Clang Tools
|
| H A D | ClangPlugins.rst | 135 Using the compiler driver 140 line via the `fplugin-arg-<plugin name>-<argument>` option. Using this 157 Using the cc1 command line 195 Using the clang command line 198 Using `-fplugin=plugin` on the clang command line passes the plugin
|
| /llvm-project/clang-tools-extra/clangd/test/ |
| H A D | fixits-codeaction.test | 10 # CHECK-NEXT: "message": "Using the result of an assignment as a condition without parenthes… 29 …acter": 32}, "end": {"line": 0, "character": 37}},"severity":2,"message":"Using the result of an a… 37 # CHECK-NEXT: "message": "Using the result of an assignment as a condition without parenth… 91 # CHECK-NEXT: "message": "Using the result of an assignment as a condition without parenth…
|
| H A D | fixits-codeaction-documentchanges.test | 10 # CHECK-NEXT: "message": "Using the result of an assignment as a condition without parenthes… 29 …acter": 32}, "end": {"line": 0, "character": 37}},"severity":2,"message":"Using the result of an a… 37 # CHECK-NEXT: "message": "Using the result of an assignment as a condition without parenth… 97 # CHECK-NEXT: "message": "Using the result of an assignment as a condition without parenth…
|
| H A D | fixits-command-documentchanges.test | 10 # CHECK-NEXT: "message": "Using the result of an assignment as a condition without parenthes… 29 …acter": 32}, "end": {"line": 0, "character": 37}},"severity":2,"message":"Using the result of an a… 110 …acter": 32}, "end": {"line": 0, "character": 37}},"severity":2,"message":"Using the result of an a…
|
| H A D | fixits-command.test | 10 # CHECK-NEXT: "message": "Using the result of an assignment as a condition without parenthes… 29 …acter": 32}, "end": {"line": 0, "character": 37}},"severity":2,"message":"Using the result of an a… 98 …acter": 32}, "end": {"line": 0, "character": 37}},"severity":2,"message":"Using the result of an a…
|
| /llvm-project/clang/lib/Tooling/Refactoring/Rename/ |
| H A D | USRLocFinder.cpp | 343 bool VisitUsingDecl(const UsingDecl *Using) { in VisitUsingDecl() argument 344 for (const auto *UsingShadow : Using->shadows()) { in VisitUsingDecl() 346 UsingDecls.push_back(Using); in VisitUsingDecl() 595 for (const auto *Using : Finder.getUsingDecls()) in createRenameAtomicChanges() local 596 Replace(Using->getBeginLoc(), Using->getEndLoc(), "using " + NewName.str()); in createRenameAtomicChanges()
|
| /llvm-project/llvm/test/CodeGen/MLRegAlloc/ |
| H A D | default-eviction-advisor.ll | 19 ; CHECK: Requested regalloc eviction advisor analysis could not be created. Using default 20 ; DEFAULT-NOT: Requested regalloc eviction advisor analysis could not be created. Using default
|
| H A D | default-priority-advisor.ll | 19 ; CHECK: Requested regalloc priority advisor analysis could be created. Using default 20 ; DEFAULT-NOT: Requested regalloc priority advisor analysis could be created. Using default
|
| /llvm-project/clang-tools-extra/clang-tidy/modernize/ |
| H A D | UseUsingCheck.cpp | 183 std::string Using = "using "; 197 Using = ";\nusing "; 225 std::string Replacement = (Using + Name + " = " + Type + QualifierStr).str(); 138 std::string Using = "using "; check() local
|
| /llvm-project/llvm/utils/lit/tests/Inputs/shtest-timeout/ |
| H A D | lit.cfg | 12 lit_config.note("Using internal shell") 15 lit_config.note("Using external shell")
|
| /llvm-project/mlir/examples/standalone/ |
| H A D | CMakeLists.txt | 11 message(STATUS "Using MLIRConfig.cmake in: ${MLIR_DIR}") 12 message(STATUS "Using LLVMConfig.cmake in: ${LLVM_DIR}")
|
| /llvm-project/libc/docs/ |
| H A D | talks.rst | 18 * Using llvm-libc in LLVM Embedded Toolchain for Arm - Peter Smith 20 * `slides <https://llvm.org/devmtg/2024-10/slides/lightning/Smith-Using-llvm-libc.pdf>`__ 64 * Using LLVM's libc - Sivachandra Reddy, Michael Jones, Tue Ly 69 * Using modern CPU instructions to improve LLVM's libc math library - Tue Ly
|
| /llvm-project/cmake/Modules/ |
| H A D | FindGRPC.cmake | 15 message(STATUS "Using protobuf ${Protobuf_VERSION}") 17 message(STATUS "Using gRPC ${gRPC_VERSION}") 87 message(STATUS "Using grpc++: " ${GRPC_LIBRARY}) 96 message(STATUS "Using protobuf: " ${PROTOBUF_LIBRARY})
|
| /llvm-project/clang/lib/Index/ |
| H A D | IndexSymbol.cpp | 318 Info.Kind = SymbolKind::Using; in getSymbolInfo() 324 Info.Kind = SymbolKind::Using; in getSymbolInfo() 329 case Decl::Using: in getSymbolInfo() 330 Info.Kind = SymbolKind::Using; in getSymbolInfo() 334 Info.Kind = SymbolKind::Using; in getSymbolInfo() 536 case SymbolKind::Using: return "using"; in getSymbolKindString()
|
| /llvm-project/offload/cmake/Modules/ |
| H A D | LibomptargetGetDependencies.cmake | 18 message(STATUS "Using LLVM in: ${LLVM_DIR}") 36 "Using LLVM include directories: ${LIBOMPTARGET_LLVM_INCLUDE_DIRS}")
|
| /llvm-project/lldb/test/Shell/SymbolFile/DWARF/x86/ |
| H A D | subprogram_ranges.test | 16 # * Using volatile writes to create instructions the location may be valid over 17 # * Using two values for the variable so it is described by a location list,
|
| /llvm-project/llvm/test/MC/RISCV/ |
| H A D | rv32f-invalid.s | 31 # Using 'D' instructions for an 'F'-only target 34 # Using RV64F instructions for RV32 is tested in rv64f-valid.s
|
| /llvm-project/mlir/test/Dialect/SPIRV/Transforms/ |
| H A D | vce-deduction.mlir | 122 // Using 8-bit integers in non-interface storage class requires Int8. 134 // Using 16-bit floats in non-interface storage class requires Float16. 146 // Using 16-element vectors requires Vector16. 194 // Using 8-bit integers in interface storage class requires additional
|
| /llvm-project/clang/test/PCH/ |
| H A D | opencl-extensions.cl | 11 // Using the header.
|