HomeSort by: relevance | last modified time | path
    Searched refs:Config (Results 1 - 25 of 142) sorted by relevancy

1 2 3 4 5 6

  /src/tools/llvm-lib/libLLVMSupport/
Makefile 3 CPPFLAGS.Signals.cpp+= -include llvm/Config/config.h
  /src/crypto/external/apache2/openssl/dist/Configurations/
unix-checker.pm 3 use Config;
17 This Perl version: $Config{version} for $Config{archname}
windows-checker.pm 3 use Config;
17 This Perl version: $Config{version} for $Config{archname}
  /src/crypto/external/bsd/openssl/dist/Configurations/
unix-checker.pm 3 use Config;
17 This Perl version: $Config{version} for $Config{archname}
windows-checker.pm 3 use Config;
17 This Perl version: $Config{version} for $Config{archname}
  /src/crypto/external/bsd/openssl.old/dist/Configurations/
unix-checker.pm 3 use Config;
17 This Perl version: $Config{version} for $Config{archname}
windows-checker.pm 3 use Config;
17 This Perl version: $Config{version} for $Config{archname}
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
ELFObjcopy.cpp 136 static std::unique_ptr<Writer> createELFWriter(const CommonConfig &Config,
142 return std::make_unique<ELFWriter<ELF32LE>>(Obj, Out, !Config.StripSections,
143 Config.OnlyKeepDebug);
145 return std::make_unique<ELFWriter<ELF64LE>>(Obj, Out, !Config.StripSections,
146 Config.OnlyKeepDebug);
148 return std::make_unique<ELFWriter<ELF32BE>>(Obj, Out, !Config.StripSections,
149 Config.OnlyKeepDebug);
151 return std::make_unique<ELFWriter<ELF64BE>>(Obj, Out, !Config.StripSections,
152 Config.OnlyKeepDebug);
157 static std::unique_ptr<Writer> createWriter(const CommonConfig &Config,
    [all...]
ELFObjcopy.h 26 Error executeObjcopyOnIHex(const CommonConfig &Config,
29 Error executeObjcopyOnRawBinary(const CommonConfig &Config,
32 Error executeObjcopyOnBinary(const CommonConfig &Config,
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/
COFFObjcopy.cpp 134 static Error handleArgs(const CommonConfig &Config, Object &Obj) {
136 Obj.removeSections([&Config](const Section &Sec) {
139 if (!Config.OnlySection.empty() && !Config.OnlySection.matches(Sec.Name))
142 if (Config.StripDebug || Config.StripAll || Config.StripAllGNU ||
143 Config.DiscardMode == DiscardType::All || Config.StripUnneeded) {
149 if (Config.ToRemove.matches(Sec.Name)
    [all...]
COFFObjcopy.h 26 Error executeObjcopyOnBinary(const CommonConfig &Config, const COFFConfig &,
  /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...]
llvm-objcopy.h 28 createNewArchiveMembers(const MultiFormatConfig &Config,
  /src/external/apache2/llvm/autoconf/
run-autoconf 4 rm -rf autom4te.cache autoconf/autom4te.cache include/llvm/Config/config.h.in~
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
MachOObjcopy.h 27 Error executeObjcopyOnBinary(const CommonConfig &Config, const MachOConfig &,
31 const MultiFormatConfig &Config, const object::MachOUniversalBinary &In,
MachOObjcopy.cpp 52 static Error removeSections(const CommonConfig &Config, Object &Obj) {
57 if (!Config.ToRemove.empty()) {
58 RemovePred = [&Config, RemovePred](const std::unique_ptr<Section> &Sec) {
59 return Config.ToRemove.matches(Sec->CanonicalName);
63 if (Config.StripAll || Config.StripDebug) {
73 if (!Config.OnlySection.empty()) {
75 RemovePred = [&Config](const std::unique_ptr<Section> &Sec) {
76 return !Config.OnlySection.matches(Sec->CanonicalName);
90 static void updateAndRemoveSymbols(const CommonConfig &Config, Object &Obj)
    [all...]
  /src/external/bsd/nsd/dist/contrib/bind2nsd/
set_version 39 CONFIGV=$(grep -i version bind2nsd/Config.py | sed "s/'version'//" | \
41 echo "bind2nsd/Config.py is currently => ${CONFIGV}"
48 "s/[ \t]*'version'[ \t]*: '${CONFIGV}',/ 'version' : '${NEWV}',/" bind2nsd/Config.py
55 CONFIGV=$(grep -i version bind2nsd/Config.py | sed "s/'version'//" | \
57 echo "bind2nsd/Config.py is now => ${CONFIGV}"
chk_version 31 CONFIGV=$(grep -i version bind2nsd/Config.py | sed "s/'version'//" | \
33 echo "bind2nsd/Config.py => ${CONFIGV}"
  /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-objcopy/wasm/
WasmObjcopy.cpp 42 static Error handleArgs(const CommonConfig &Config, Object &Obj) {
44 for (StringRef Flag : Config.DumpSection) {
52 Obj.removeSections([&Config](const Section &Sec) {
53 if (Config.ToRemove.matches(Sec.Name))
58 for (StringRef Flag : Config.AddSection) {
78 Error executeObjcopyOnBinary(const CommonConfig &Config, const WasmConfig &,
83 return createFileError(Config.InputFilename, ObjOrErr.takeError());
86 if (Error E = handleArgs(Config, *Obj))
90 return createFileError(Config.OutputFilename, std::move(E));
WasmObjcopy.h 25 Error executeObjcopyOnBinary(const CommonConfig &Config, const WasmConfig &,
  /src/external/apache2/llvm/dist/clang/bindings/python/tests/cindex/
test_file.py 2 from clang.cindex import Config
4 Config.set_library_path(os.environ['CLANG_LIBRARY_PATH'])
  /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/bsd/nsd/dist/contrib/bind2nsd/scripts/
s64-mkpw 36 if os.path.exists('../bind2nsd/Config.py'):
38 from Config import *
40 from bind2nsd.Config import *
47 conf = Config()

Completed in 39 milliseconds

1 2 3 4 5 6