/freebsd/contrib/llvm-project/clang/include/ |
H A D | module.modulemap | 2 umbrella "clang-c" 8 umbrella "clang/Analysis" 23 umbrella "clang/AST" 33 module Clang_ASTMatchers { requires cplusplus umbrella "clang/ASTMatchers" module * { export * } } 37 umbrella "clang/Basic" 101 module Clang_CodeGen { requires cplusplus umbrella "clang/CodeGen" module * { export * } } 102 module Clang_Config { requires cplusplus umbrella "clang/Config" module * { export * } } 124 umbrella "clang/Driver" 131 module Clang_Edit { requires cplusplus umbrella "clang/Edit" module * { export * } } 132 module Clang_Format { requires cplusplus umbrella "clang/Format" module * { export * } } [all …]
|
/freebsd/contrib/llvm-project/llvm/include/ |
H A D | module.modulemap | 2 umbrella "llvm-c" 8 umbrella "llvm/Analysis" 19 umbrella "llvm/AsmParser" 41 umbrella "llvm/CodeGen" 57 umbrella "llvm/Target" 63 umbrella "llvm/Bitcode" 69 umbrella "llvm/Bitstream" 75 umbrella "llvm/BinaryFormat" module * { export * } 110 umbrella "llvm/Config" 123 umbrella "llvm/DebugInfo/DWARF" [all …]
|
/freebsd/contrib/llvm-project/lldb/include/ |
H A D | module.modulemap | 7 umbrella "lldb/API" 57 umbrella "lldb/Host/common" 67 umbrella "lldb/Initialization" 77 umbrella "lldb/Breakpoint" 84 umbrella "lldb/Core" 91 umbrella "lldb/DataFormatters" 98 umbrella "lldb/Expression" 105 umbrella "lldb/Interpreter" 112 umbrella "lldb/Symbol" 118 umbrella "lldb/Target" [all …]
|
/freebsd/sys/kern/ |
H A D | serdev_if.m | 31 # The serdev interface is used by umbrella drivers and children thereof to 36 # with interrupt handling and configuration. Conceptually, the umbrella 65 # This method is called by the umbrella driver to obtain function pointers 75 # This method is called by the umbrella driver to obtain interrupt status 76 # for the UART in question. This allows the umbrella driver to build a 84 # This method may be called by the umbrella driver for each child driver
|
/freebsd/contrib/llvm-project/lld/MachO/ |
H A D | InputFiles.cpp | 1560 static DylibFile *loadDylib(StringRef path, DylibFile *umbrella) { in loadDylib() argument 1566 return loadDylib(*mbref, umbrella); in loadDylib() 1578 static DylibFile *findDylib(StringRef path, DylibFile *umbrella, in findDylib() argument 1593 return loadDylib(*dylibPath, umbrella); in findDylib() 1597 return loadDylib(*dylibPath, umbrella); in findDylib() 1605 return loadDylib(*dylibPath, umbrella); in findDylib() 1621 fs::real_path(umbrella->getName(), newPath); in findDylib() 1626 for (StringRef rpath : umbrella->rpaths) { in findDylib() 1629 fs::real_path(umbrella->getName(), newPath); in findDylib() 1634 return loadDylib(*dylibPath, umbrella); in findDylib() [all …]
|
H A D | InputFiles.h | 219 // symbols in those sub-libraries will be available under the umbrella 221 // re-exports. When loading a re-exported dylib, `umbrella` should be set to 224 // (through an -lfoo flag), then `umbrella` should be a nullptr. 225 explicit DylibFile(MemoryBufferRef mb, DylibFile *umbrella, 228 DylibFile *umbrella, bool isBundleLoader, 230 explicit DylibFile(DylibFile *umbrella); 242 DylibFile *umbrella; 279 void loadReexport(StringRef path, DylibFile *umbrella, 235 DylibFile *umbrella; global() variable
|
H A D | Writer.cpp | 132 LCSubFramework(StringRef umbrella) : umbrella(umbrella) {} in LCSubFramework() argument 135 return alignToPowerOf2(sizeof(sub_framework_command) + umbrella.size() + 1, in getSize() 145 c->umbrella = sizeof(sub_framework_command); in writeTo() 147 memcpy(buf, umbrella.data(), umbrella.size()); in writeTo() 148 buf[umbrella.size()] = '\0'; in writeTo() 152 const StringRef umbrella; member in __anoneb56ad3f0111::LCSubFramework 810 if (!config->umbrella.empty()) in createLoadCommands() 811 in.header->addLoadCommand(make<LCSubFramework>(config->umbrella)); in createLoadCommands()
|
H A D | DriverUtils.cpp | 224 DylibFile *macho::loadDylib(MemoryBufferRef mbref, DylibFile *umbrella, in loadDylib() argument 244 make<DylibFile>(**result, umbrella, isBundleLoader, explicitlyLinked); in loadDylib() 259 file = make<DylibFile>(mbref, umbrella, isBundleLoader, explicitlyLinked); in loadDylib()
|
H A D | Driver.h | 52 DylibFile *loadDylib(llvm::MemoryBufferRef mbref, DylibFile *umbrella = nullptr,
|
H A D | Config.h | 169 llvm::StringRef umbrella; member
|
H A D | Symbols.h | 272 (file && getFile()->umbrella->forceWeakImport); in isWeakRef()
|
H A D | Options.td | 861 def umbrella : Separate<["-"], "umbrella">, 863 HelpText<"Re-export this dylib through the umbrella framework <name>">,
|
H A D | Driver.cpp | 1674 config->umbrella = arg->getValue(); in link()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | DiagnosticInstallAPIKinds.td | 21 def err_no_such_umbrella_header_file : Error<"%select{public|private|project}1 umbrella header file… 67 def err_parent_umbrella_missing: Error<"parent umbrella missing from %0: '%1'">; 68 def err_parent_umbrella_mismatch : Error<"parent umbrella does not match: '%0' (provided) vs '%1' (…
|
H A D | DiagnosticLexKinds.td | 830 "expected umbrella, header, submodule, or module export">; 837 "umbrella for module '%0' already covers this directory">; 862 "inferred submodules require a module with an umbrella">; 930 "umbrella header for module '%0' does not include header '%1'">, 933 "umbrella directory '%0' not found">,
|
H A D | DiagnosticCommonKinds.td | 117 "%select{|umbrella }0header '%1' not found">;
|
H A D | DiagnosticGroups.td | 492 def IncompleteUmbrella : DiagGroup<"incomplete-umbrella">;
|
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/BinaryReader/ |
H A D | DylibReader.cpp | 185 BA.ParentUmbrella = Slice.copyString(LCI.Ptr + SFC.umbrella); in readMachOHeader()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
H A D | MachO.h | 629 uint32_t umbrella; 1274 sys::swapByteOrder(s.umbrella); in swapStruct() 635 uint32_t umbrella; global() member
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | MachOYAML.cpp | 565 IO.mapRequired("umbrella", LoadCommand.umbrella); in mapping()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
H A D | MachODump.cpp | 9298 if (sub.umbrella < sub.cmdsize) { in PrintSubFrameworkCommand() 9299 const char *P = Ptr + sub.umbrella; in PrintSubFrameworkCommand() 9300 outs() << " umbrella " << P << " (offset " << sub.umbrella << ")\n"; in PrintSubFrameworkCommand() 9302 outs() << " umbrella ?(bad offset " << sub.umbrella << ")\n"; in PrintSubFrameworkCommand()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86.td | 388 // Deprecated umbrella feature for enabling both `retpoline-indirect-calls` and
|
/freebsd/share/dict/ |
H A D | web2a | 1374 alpine umbrella plant 68891 umbrella ant 68892 umbrella bird 68893 umbrella bush 68894 umbrella catalpa 68895 umbrella fern 68896 umbrella fir 68897 umbrella grass 68898 umbrella leaf 68899 umbrella maker [all …]
|
/freebsd/contrib/libcbor/ |
H A D | Doxyfile | 1392 # an umbrella under which multiple documentation sets from a single provider 1400 # an umbrella under which multiple documentation sets from a single provider
|
/freebsd/contrib/unbound/doc/ |
H A D | unbound.doxygen | 1465 # an umbrella under which multiple documentation sets from a single provider 1473 # an umbrella under which multiple documentation sets from a single provider
|