| /src/usr.sbin/wsmoused/ |
| config_yacc.y | 76 Config :
|
| /src/crypto/external/apache2/openssl/dist/util/perl/OpenSSL/Config/ |
| Query.pm | 8 package OpenSSL::Config::Query; 17 OpenSSL::Config::Query - Query OpenSSL configuration info 21 use OpenSSL::Config::Info; 23 my $query = OpenSSL::Config::Query->new(info => \%unified_info); 43 Creates an instance of the B<OpenSSL::Config::Query> class. It takes options 54 =item B<config> =E<gt> I<HASHREF> 56 A reference to a config information hash table, most commonly known as 57 %config. 63 my $info = OpenSSL::Config::Info->new(info => \%unified_info); 75 config => 'HASH') [all...] |
| /src/crypto/external/bsd/openssl/dist/util/perl/OpenSSL/Config/ |
| Query.pm | 8 package OpenSSL::Config::Query; 17 OpenSSL::Config::Query - Query OpenSSL configuration info 21 use OpenSSL::Config::Info; 23 my $query = OpenSSL::Config::Query->new(info => \%unified_info); 43 Creates an instance of the B<OpenSSL::Config::Query> class. It takes options 54 =item B<config> =E<gt> I<HASHREF> 56 A reference to a config information hash table, most commonly known as 57 %config. 63 my $info = OpenSSL::Config::Info->new(info => \%unified_info); 75 config => 'HASH') [all...] |
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| Yaml.h | 45 T Config; 46 Input >> Config; 54 return Config;
|
| DebugCheckers.cpp | 271 const Table &Config = mgr.options.Config; 274 for (Table::const_iterator I = Config.begin(), E = Config.end(); I != E; 279 llvm::errs() << "[config]\n";
|
| GenericTaintChecker.cpp | 87 /// Parse the config. 89 TaintConfiguration &&Config); 318 static void mapping(IO &IO, TaintConfig &Config) { 319 IO.mapOptional("Propagations", Config.Propagations); 320 IO.mapOptional("Filters", Config.Filters); 321 IO.mapOptional("Sinks", Config.Sinks); 383 TaintConfiguration &&Config) { 384 for (auto &P : Config.Propagations) { 393 for (auto &F : Config.Filters) { 399 for (auto &S : Config.Sinks) [all...] |
| /src/external/bsd/nsd/dist/contrib/bind2nsd/bind2nsd/ |
| Config.py | 23 # class to represent all of the bind2nsd/syncem config items 49 class Config: 54 self.config = \ 97 if self.config['DEBUG']: 113 print '? hrm. no config file found -- did you _mean_ that?' 127 if item in self.config: 128 self.config[item] = ' '.join(info[2:]) 138 fname = self.config['password_file'] 146 self.config['syspw'] = obj.decrypt(mkcipher(syspw), '#') 147 self.config['dnspw'] = obj.decrypt(mkcipher(dnspw), '#' [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/ |
| FunctionComparator.h | 55 struct Config : ValueMapConfig<GlobalValue *> { 59 // Each GlobalValue is mapped to an identifier. The Config ensures when RAUW 62 using ValueNumberMap = ValueMap<GlobalValue *, uint64_t, Config>;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/Symbolize/ |
| DIPrinter.h | 73 PrinterConfig Config; 88 PlainPrinterBase(raw_ostream &OS, raw_ostream &ES, PrinterConfig &Config) 89 : DIPrinter(), OS(OS), ES(ES), Config(Config) {} 113 LLVMPrinter(raw_ostream &OS, raw_ostream &ES, PrinterConfig &Config) 114 : PlainPrinterBase(OS, ES, Config) {} 122 GNUPrinter(raw_ostream &OS, raw_ostream &ES, PrinterConfig &Config) 123 : PlainPrinterBase(OS, ES, Config) {} 129 PrinterConfig Config; 133 json::OStream JOS(OS, Config.Pretty ? 2 : 0) [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/ |
| CodeTemplate.h | 126 // See InstructionBenchmarkKey.::Config. 127 std::string Config;
|
| BenchmarkResult.h | 42 std::string Config;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/LTO/legacy/ |
| LTOCodeGenerator.h | 44 #include "llvm/LTO/Config.h" 92 Config.RelocModel = Model; 97 void setFileType(CodeGenFileType FT) { Config.CGFileType = FT; } 99 void setCpu(StringRef MCpu) { Config.CPU = std::string(MCpu); } 100 void setAttrs(std::vector<std::string> MAttrs) { Config.MAttrs = MAttrs; } 183 void setFreestanding(bool Enabled) { Config.Freestanding = Enabled; } 185 void setDisableVerify(bool Value) { Config.DisableVerify = Value; } 187 void setUseNewPM(bool Value) { Config.UseNewPM = Value; } 241 lto::Config Config; [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ |
| llvm-objcopy.cpp | 156 const CommonConfig &Config = ConfigMgr.getCommonConfig(); 157 switch (Config.OutputFormat) { 169 return elf::executeObjcopyOnRawBinary(Config, *ELFConfig, In, Out); 177 static Error executeObjcopyOnBinary(const MultiFormatConfig &Config, 180 Expected<const ELFConfig &> ELFConfig = Config.getELFConfig(); 184 return elf::executeObjcopyOnBinary(Config.getCommonConfig(), *ELFConfig, 187 Expected<const COFFConfig &> COFFConfig = Config.getCOFFConfig(); 191 return coff::executeObjcopyOnBinary(Config.getCommonConfig(), *COFFConfig, 194 Expected<const MachOConfig &> MachOConfig = Config.getMachOConfig(); 198 return macho::executeObjcopyOnBinary(Config.getCommonConfig(), *MachOConfig [all...] |
| ConfigManager.cpp | 653 // ParseObjcopyOptions returns the config and sets the input arguments. If a 707 CommonConfig &Config = ConfigMgr.Common; 708 Config.InputFilename = Positional[0]; 709 Config.OutputFilename = Positional[Positional.size() == 1 ? 0 : 1]; 741 Config.InputFormat = StringSwitch<FileFormat>(InputFormat) 750 Config.OutputFormat = StringSwitch<FileFormat>(OutputFormat) 754 if (Config.OutputFormat == FileFormat::Unspecified) { 756 Config.OutputFormat = Config.InputFormat; 762 Config.OutputFormat = Target->Format [all...] |
| /src/external/apache2/llvm/dist/clang/tools/clang-format/ |
| ClangFormat.cpp | 91 DumpConfig("dump-config", 496 std::string Config = clang::format::configurationAsText(*FormatStyle); 497 outs() << Config << "\n";
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/LTO/ |
| Config.h | 1 //===-Config.h - LLVM Link Time Optimizer Configuration ---------*- C++ -*-===// 9 // This file defines the lto::Config data structure, which allows clients to 18 #include "llvm/Config/llvm-config.h" 40 struct Config { 248 /// This is a convenience function that configures this Config object to write 277 /// Config object. The purpose of this class is to tie ownership of the 278 /// diagnostic handler to the context, as opposed to the Config object (which 283 LTOLLVMContext(const Config &C) : DiagHandler(C.DiagHandler) {
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/ |
| CSEInfo.cpp | 75 std::unique_ptr<CSEConfigBase> Config; 77 Config = std::make_unique<CSEConfigConstantOnly>(); 79 Config = std::make_unique<CSEConfigFull>(); 80 return Config;
|
| /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/ |
| MachO_x86_64.cpp | 597 PassConfiguration Config; 601 Config.PrePrunePasses.push_back(createEHFrameSplitterPass_MachO_x86_64()); 602 Config.PrePrunePasses.push_back(createEHFrameEdgeFixerPass_MachO_x86_64()); 606 Config.PrePrunePasses.push_back(std::move(MarkLive)); 608 Config.PrePrunePasses.push_back(markAllSymbolsLive); 611 Config.PostPrunePasses.push_back( 615 Config.PreFixupPasses.push_back(optimizeMachO_x86_64_GOTAndStubs); 618 if (auto Err = Ctx->modifyPassConfig(*G, Config)) 622 MachOJITLinker_x86_64::link(std::move(Ctx), std::move(G), std::move(Config));
|
| MachO_arm64.cpp | 678 PassConfiguration Config; 683 Config.PrePrunePasses.push_back(std::move(MarkLive)); 685 Config.PrePrunePasses.push_back(markAllSymbolsLive); 688 Config.PostPrunePasses.push_back( 692 if (auto Err = Ctx->modifyPassConfig(*G, Config)) 696 MachOJITLinker_arm64::link(std::move(Ctx), std::move(G), std::move(Config));
|
| ELF_x86_64.cpp | 898 PassConfiguration Config; 902 Config.PrePrunePasses.push_back(EHFrameSplitter(".eh_frame")); 903 Config.PrePrunePasses.push_back(EHFrameEdgeFixer( 905 Config.PrePrunePasses.push_back(EHFrameNullTerminator(".eh_frame")); 910 Config.PrePrunePasses.push_back(std::move(MarkLive)); 912 Config.PrePrunePasses.push_back(markAllSymbolsLive); 915 Config.PostPrunePasses.push_back( 919 Config.PostAllocationPasses.push_back( 924 Config.PreFixupPasses.push_back(optimizeELF_x86_64_GOTAndStubs); 927 if (auto Err = Ctx->modifyPassConfig(*G, Config)) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| Z3Solver.cpp | 11 #include "llvm/Config/config.h" 27 Z3_config Config; 30 Z3Config() : Config(Z3_mk_config()) { 32 Z3_set_param_value(Config, "model", "true"); 34 Z3_set_param_value(Config, "proof", "false"); 36 Z3_set_param_value(Config, "timeout", "15000"); 39 ~Z3Config() { Z3_del_config(Config); } 54 Context = Z3_mk_context_rc(Z3Config().Config);
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-libtool-darwin/ |
| llvm-libtool-darwin.cpp | 104 struct Config { 211 const Config &C) { 234 NewArchiveMember Member, const Config &C) { 269 NewArchiveMember Member, const Config &C) { 301 const object::Archive::Child &M, const Config &C) { 320 const Config &C) { 334 NewArchiveMember NM, StringRef FileName, const Config &C) { 352 NewArchiveMember NM, StringRef FileName, const Config &C) { 419 StringRef FileName, const Config &C) { 463 static Error createStaticLibrary(const Config &C) [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-symbolizer/ |
| llvm-symbolizer.cpp | 19 #include "llvm/Config/config.h" 273 PrinterConfig Config; 291 Config.SourceContextLines); 303 Config.PrintAddress = Args.hasArg(OPT_addresses); 304 Config.PrintFunctions = Opts.PrintFunctions != FunctionNameKind::None; 305 Config.Pretty = Args.hasArg(OPT_pretty_print); 306 Config.Verbose = Args.hasArg(OPT_verbose); 331 Printer = std::make_unique<GNUPrinter>(outs(), errs(), Config); 333 Printer = std::make_unique<JSONPrinter>(outs(), Config); [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/ |
| AnalyzerOptions.h | 144 /// analyzer configuration options, which are preceded by -analyzer-config 145 /// (e.g.: -analyzer-config notes-as-events=true). 160 /// and should be eventually converted into -analyzer-config flags. New analyzer 207 ConfigTable Config; 267 // Create a field for each -analyzer-config option. 279 // Create an array of all -analyzer-config command line options. Sort it in 323 /// `-analyzer-config CheckerName:OptionName=Value. 343 /// `-analyzer-config CheckerName:OptionName=Value. 363 /// `-analyzer-config CheckerName:OptionName=Value. 389 /// This is controlled by the 'c++-inlining' config option [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-lipo/ |
| llvm-lipo.cpp | 111 struct Config { 149 static Config parseLipoOptions(ArrayRef<const char *> ArgsArr) { 150 Config C; 727 Config C = parseLipoOptions(makeArrayRef(argv + 1, argc));
|