| /openbsd-src/gnu/usr.bin/perl/cpan/CPAN-Meta/corpus/ |
| H A D | CL018_yaml.meta | 15 "name" : "Compiler-Lexer", 37 "Compiler::Lexer" : { 38 "file" : "lib/Compiler/Lexer.pm", 41 "Compiler::Lexer::Kind" : { 42 "file" : "lib/Compiler/Lexer/Constants.pm" 44 "Compiler::Lexer::SyntaxType" : { 45 "file" : "lib/Compiler/Lexer/Constants.pm" 47 "Compiler::Lexer::Token" : { 48 "file" : "lib/Compiler/Lexer/Token.pm" 50 "Compiler::Lexer::TokenType" : { [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/Tooling/DumpTool/ |
| H A D | ClangSrcLocDump.cpp | 57 CreateASTConsumer(clang::CompilerInstance &Compiler, in CreateASTConsumer() argument 59 return Processor.createASTConsumer(Compiler, File); in CreateASTConsumer() 137 CompilerInstance Compiler(std::make_shared<clang::PCHContainerOperations>()); in main() local 138 Compiler.setInvocation(std::move(Invocation)); in main() 140 Compiler.createDiagnostics(&DiagnosticPrinter, false); in main() 141 if (!Compiler.hasDiagnostics()) in main() 145 Compiler.getDiagnosticOpts().ShowCarets = false; in main() 146 Compiler.createSourceManager(*Files); in main() 147 Compiler.setFileManager(Files.get()); in main() 150 Compiler.ExecuteAction(ScopedToolAction); in main()
|
| /openbsd-src/gnu/llvm/compiler-rt/docs/ |
| H A D | BuildingCompilerRT.rst | 4 Building Compiler-RT 12 The instructions on this page are aimed at vendors who ship Compiler-RT as part of an 14 are a user merely trying to use Compiler-RT in your program, you most likely want to 35 The C++ compiler to use when building and testing Compiler-RT. 40 Compiler-RT specific options 47 Prefix for directories where built Compiler-RT artifacts should be installed. 59 Path where built Compiler-RT libraries should be installed. If a relative 66 Path where built Compiler-RT executables should be installed. If a relative 73 Path where Compiler-RT headers should be installed. If a relative 80 Path where Compiler-RT data should be installed. If a relative
|
| /openbsd-src/gnu/llvm/clang/tools/scan-build/libexec/ |
| H A D | ccc-analyzer | 65 my $Compiler; 92 $Compiler = $ENV{'CCC_CXX'}; 93 …if (!defined $Compiler || (! -x $Compiler && ! SearchInPath($Compiler))) { $Compiler = $DefaultCXX… 101 $Compiler = $ENV{'CCC_CC'}; 102 …if (!defined $Compiler || (! -x $Compiler && ! SearchInPath($Compiler))) { $Compiler = $DefaultCCo… 180 `"$Compiler" -v >> $PPFile.info.txt 2>&1`; 457 my $Status = system($Compiler,@ARGV); 459 print STDERR "$Compiler @ARGV\n";
|
| /openbsd-src/gnu/gcc/gcc/doc/ |
| H A D | frontends.texi | 10 @cindex GNU Compiler Collection 11 @cindex GNU C Compiler 18 GCC stands for ``GNU Compiler Collection''. GCC is an integrated 24 current official meaning is ``GNU Compiler Collection'', which refers 26 for ``GNU C Compiler'', and this usage is still common when the emphasis
|
| H A D | gcc.texi | 27 @settitle Using the GNU Compiler Collection (GCC) 67 * gcc: (gcc). The GNU Compiler Collection. 77 @title Using the GNU Compiler Collection 123 Introduction, gccint, GNU Compiler Collection (GCC) Internals}.
|
| H A D | gccint.texi | 13 @settitle GNU Compiler Collection (GCC) Internals 53 * gccint: (gccint). Internals of the GNU Compiler Collection. 63 @title GNU Compiler Collection Internals 83 Compiler Collection (GCC)}.
|
| /openbsd-src/gnu/llvm/clang/lib/Driver/ToolChains/ |
| H A D | Myriad.h | 22 class LLVM_LIBRARY_VISIBILITY Compiler : public Tool { 24 Compiler(const ToolChain &TC) : Tool("moviCompile", "movicompile", TC) {} in Compiler() function 95 mutable std::unique_ptr<Tool> Compiler;
|
| H A D | Myriad.cpp | 24 void tools::SHAVE::Compiler::ConstructJob(Compilation &C, const JobAction &JA, in ConstructJob() 275 if (!Compiler) in SelectTool() 276 Compiler.reset(new tools::SHAVE::Compiler(*this)); in SelectTool() 277 return Compiler.get(); in SelectTool()
|
| H A D | MinGW.h | 116 mutable std::unique_ptr<tools::gcc::Compiler> Compiler; variable
|
| H A D | Gnu.h | 115 class LLVM_LIBRARY_VISIBILITY Compiler : public Common { 117 Compiler(const ToolChain &TC) : Common("gcc::Compiler", "gcc frontend", TC) {} in Compiler() function 360 mutable std::unique_ptr<tools::gcc::Compiler> Compile;
|
| /openbsd-src/gnu/llvm/compiler-rt/ |
| H A D | README.txt | 1 Compiler-RT 7 Compiler-RT is open source software. You may freely distribute it under the
|
| H A D | CREDITS.TXT | 19 D: CMake'ify Compiler-RT build system 20 D: Maintain Solaris & AuroraUX ports of Compiler-RT
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/fuzzer/tests/ |
| H A D | CMakeLists.txt | 15 set_target_properties(FuzzerUnitTests PROPERTIES FOLDER "Compiler-RT Tests") 18 set_target_properties(FuzzedDataProviderUnitTests PROPERTIES FOLDER "Compiler-RT Tests") 61 FOLDER "Compiler-RT Runtime tests")
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/gwp_asan/tests/ |
| H A D | CMakeLists.txt | 37 set_target_properties(GwpAsanUnitTests PROPERTIES FOLDER "Compiler-RT Tests") 68 FOLDER "Compiler-RT Runtime tests")
|
| /openbsd-src/gnu/llvm/clang/docs/ |
| H A D | RAVFrontendAction.rst | 29 clang::CompilerInstance &Compiler, llvm::StringRef InFile) { 115 clang::CompilerInstance &Compiler, llvm::StringRef InFile) { 116 return std::make_unique<FindNamedClassConsumer>(&Compiler.getASTContext()); 189 clang::CompilerInstance &Compiler, llvm::StringRef InFile) { 190 return std::make_unique<FindNamedClassConsumer>(&Compiler.getASTContext());
|
| /openbsd-src/gnu/llvm/clang/lib/Tooling/ |
| H A D | Tooling.cpp | 418 CompilerInstance Compiler(std::move(PCHContainerOps)); in runInvocation() local 419 Compiler.setInvocation(std::move(Invocation)); in runInvocation() 420 Compiler.setFileManager(Files); in runInvocation() 428 Compiler.createDiagnostics(DiagConsumer, /*ShouldOwnClient=*/false); in runInvocation() 429 if (!Compiler.hasDiagnostics()) in runInvocation() 432 Compiler.createSourceManager(*Files); in runInvocation() 434 const bool Success = Compiler.ExecuteAction(*ScopedToolAction); in runInvocation()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/doc/ |
| H A D | install-old.texi | 24 * Cross-Compiler:: Building and installing a cross-compiler. 63 see @ref{Cross-Compiler}.) 95 @node Configurations, Cross-Compiler, , Old 209 @node Cross-Compiler, VMS Install, Configurations, Old 210 @section Building and Installing a Cross-Compiler 213 <h2>@anchor{Cross-Compiler}Building and Installing a Cross-Compiler</h2> 257 @node Steps of Cross, Configure Cross, , Cross-Compiler 291 @node Configure Cross, Tools and Libraries, Steps of Cross, Cross-Compiler 292 @subsection Configuring a Cross-Compiler 295 <h2>Configuring a Cross-Compiler</h2> [all …]
|
| H A D | frontends.texi | 16 ``GNU Compiler Collection''. GCC can compile programs written in any of these 21 ``GCC'' is a common shorthand term for the GNU Compiler Collection. This is both 24 stood for ``GNU C Compiler'').
|
| H A D | gcc.texi | 27 @settitle Using the GNU Compiler Collection (GCC) 88 * gcc: (gcc). The GNU Compiler Collection. 102 @center @titlefont{Using the GNU Compiler Collection} 140 Introduction, gccint, GNU Compiler Collection (GCC) Internals}.
|
| /openbsd-src/gnu/llvm/compiler-rt/cmake/Modules/ |
| H A D | CompilerRTUtils.cmake | 225 # Compute the path to the root of the Compiler-RT source tree 229 # is error prone due to the numerous ways Compiler-RT can be 240 # Compiler-rt supports different source root paths. 244 # Compiler-RT Builtins standalone build. 248 # Compiler-RT CRT standalone build. 252 # Compiler-RT standalone build. 261 message(FATAL_ERROR "Unhandled Compiler-RT source root configuration.") 535 FOLDER "Compiler-RT Misc") 537 FOLDER "Compiler-RT Misc")
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/interception/tests/ |
| H A D | CMakeLists.txt | 75 FOLDER "Compiler-RT Runtime tests") 90 FOLDER "Compiler-RT Tests")
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/asan/tests/ |
| H A D | CMakeLists.txt | 124 set_target_properties(AsanUnitTests PROPERTIES FOLDER "Compiler-RT Tests") 129 set_target_properties(AsanDynamicUnitTests PROPERTIES FOLDER "Compiler-RT Tests") 132 set_target_properties(AsanBenchmarks PROPERTIES FOLDER "Compiler-RT Tests") 283 FOLDER "Compiler-RT Runtime tests")
|
| /openbsd-src/gnu/llvm/clang/cmake/caches/ |
| H A D | Apple-stage2.cmake | 22 set(LLVM_BUILD_EXTERNAL_COMPILER_RT ON CACHE BOOL "Build Compiler-RT with just-built clang") 23 set(COMPILER_RT_ENABLE_IOS ON CACHE BOOL "Build iOS Compiler-RT libraries")
|
| /openbsd-src/gnu/llvm/clang/tools/clang-format-vs/ClangFormat/ |
| H A D | Resources.Designer.cs | 22 …[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResou…
|