| /openbsd-src/gnu/llvm/llvm/bindings/ocaml/ |
| H A D | README.txt | 1 This directory contains LLVM bindings for the OCaml programming language 11 Building the bindings 14 If all dependencies are present, the bindings will be built and installed 18 The bindings can also be built out-of-tree, i.e. targeting a preinstalled 29 $ cmake -P bindings/ocaml/cmake_install.cmake
|
| /openbsd-src/gnu/llvm/clang/docs/analyzer/developer-docs/ |
| H A D | RegionStore.rst | 9 ``RegionStoreManager``. This store records bindings to memory regions using a 40 anything else, but we do have to be conservative about all other bindings within 52 concrete offset invalidates any symbolic offset bindings whose concrete offset 82 variable. Thus it is not valid to assume that all bindings with non-symbolic 93 need to throw away not just all bindings within the region itself, but within 103 all live bindings in the store (in order to throw away the dead ones). The name 104 "ClusterAnalysis" predates the cluster-based organization of bindings, but 106 bindings within a cluster must be treated in the same way for a conservative 113 Most bindings in RegionStore are simple scalar values -- integers and pointers. 114 These are known as "Direct" bindings. However, RegionStore supports a second [all …]
|
| /openbsd-src/gnu/llvm/clang/tools/libclang/ |
| H A D | CMakeLists.txt | 228 # Create a target to install the python bindings to make them easier to 229 # distribute. Since the bindings are over libclang, which is installed 233 ${CMAKE_CURRENT_SOURCE_DIR}/../../bindings/python/clang 235 libclang-python-bindings 240 add_custom_target(libclang-python-bindings) 241 add_llvm_install_targets(install-libclang-python-bindings 243 libclang-python-bindings)
|
| /openbsd-src/gnu/llvm/clang/bindings/python/ |
| H A D | README.txt | 5 This directory implements Python bindings for Clang. 11 $ env PYTHONPATH=$(echo ~/llvm/tools/clang/bindings/python/) \
|
| /openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/ |
| H A D | Analyses.def | 71 "Purge symbols, bindings, and constraints before every statement") 75 "Purge symbols, bindings, and constraints before every basic block") 78 "Do not purge symbols, bindings, or constraints")
|
| /openbsd-src/gnu/llvm/clang/utils/analyzer/ |
| H A D | exploded-graph-rewriter.py | 132 self.bindings = collections.OrderedDict( 138 return diff_dicts(self.bindings, prev.bindings) 197 self.bindings = collections.OrderedDict( 201 return diff_dicts(self.bindings, prev.bindings) 607 self._short_pretty(b.pretty), f.bindings[b])) 623 for b in f.bindings: 663 s.clusters[c].bindings[b])) 669 for b in prev_s.clusters[c].bindings: 679 for b in s.clusters[c].bindings: 683 for b in s.clusters[c].bindings:
|
| /openbsd-src/gnu/gcc/gcc/cp/ |
| H A D | name-lookup.h | 272 (*(cfun && cp_function_chain->bindings \ 273 ? &cp_function_chain->bindings \ 274 : &scope_chain->bindings))
|
| /openbsd-src/gnu/llvm/llvm/bindings/python/ |
| H A D | README.txt | 1 This directory contains Python bindings for LLVM's C library. 3 The bindings are currently a work in progress and are far from complete.
|
| /openbsd-src/gnu/llvm/llvm/bindings/ |
| H A D | README.txt | 1 This directory contains bindings for the LLVM compiler infrastructure to allow
|
| /openbsd-src/gnu/llvm/lld/MachO/ |
| H A D | SyntheticSections.cpp | 607 std::vector<BindingEntry> &bindings = p.second; in sortBindings() local 608 llvm::sort(bindings, [](const BindingEntry &a, const BindingEntry &b) { in sortBindings() 638 std::vector<BindingEntry> &bindings = p.second; in finalizeContents() local 650 for (const BindingEntry &b : bindings) in finalizeContents() 679 std::vector<BindingEntry> &bindings = p.second; in finalizeContents() local 684 for (const BindingEntry &b : bindings) in finalizeContents() 2037 auto [it, inserted] = bindings.insert( in addBinding() 2038 {{sym, outlineAddend}, static_cast<uint32_t>(bindings.size())}); in addBinding() 2053 auto it = bindings.find({sym, outlineAddend}); in getBinding() 2054 assert(it != bindings.end() && "binding not found in the imports table"); in getBinding() [all …]
|
| /openbsd-src/gnu/llvm/lldb/bindings/lua/ |
| H A D | lua.swig | 19 #include "../bindings/lua/lua-swigsafecast.swig"
|
| /openbsd-src/gnu/llvm/lldb/ |
| H A D | CMakeLists.txt | 68 ${CMAKE_CURRENT_SOURCE_DIR}/bindings/python/get-python-config.py 91 add_subdirectory(bindings)
|
| /openbsd-src/gnu/llvm/llvm/cmake/ |
| H A D | config-ix.cmake | 648 # Keep the version requirements in sync with bindings/ocaml/README.txt. 653 message(STATUS "OCaml bindings disabled.") 657 message(STATUS "OCaml bindings disabled.") 660 message(STATUS "OCaml bindings disabled, need OCaml >=4.00.0.") 664 message(STATUS "OCaml bindings enabled.") 670 message(STATUS "OCaml bindings disabled, need ctypes >=0.4.")
|
| /openbsd-src/lib/libexpat/lib/ |
| H A D | xmlparse.c | 315 BINDING *bindings; 500 static void freeBindings(XML_Parser parser, BINDING *bindings); 1274 /* moves list of bindings to m_freeBindingList */ in moveToFreeBindingList() argument 1276 moveToFreeBindingList(XML_Parser parser, BINDING *bindings) { in moveToFreeBindingList() 1277 while (bindings) { in moveToFreeBindingList() 1278 BINDING *b = bindings; in moveToFreeBindingList() 1279 bindings = bindings->nextTagBinding; in moveToFreeBindingList() 1301 moveToFreeBindingList(parser, tag->bindings); in XML_ParserReset() 1302 tag->bindings in XML_ParserReset() 313 BINDING *bindings; global() member 1523 destroyBindings(BINDING * bindings,XML_Parser parser) destroyBindings() argument 3045 BINDING *bindings = NULL; doContent() local 3290 freeBindings(XML_Parser parser,BINDING * bindings) freeBindings() argument [all...] |
| /openbsd-src/gnu/llvm/llvm/utils/gn/secondary/clang/tools/libclang/ |
| H A D | BUILD.gn | 7 # - a build target copying the Python bindings
|
| /openbsd-src/gnu/llvm/llvm/bindings/ocaml/llvm/ |
| H A D | META.llvm.in | 3 description = "LLVM OCaml bindings"
|
| /openbsd-src/gnu/lib/libreadline/examples/ |
| H A D | Inputrc | 3 # Notice the various bindings which are conditionalized depending
|
| /openbsd-src/gnu/usr.bin/texinfo/doc/ |
| H A D | info-stnd.texi | 79 * Custom Key Bindings:: How to define your own key-to-command bindings. 296 @cindex vi-like key bindings 297 @cindex Less-like key bindings 300 bindings of @code{vi} and Less. The default key bindings are generally 303 for a more general way of altering GNU Info's key bindings.) 478 is in effect (@pxref{--vi-keys}). These key bindings are designated 1936 @cindex default key bindings, overriding 1937 @cindex overriding default key bindings 1938 @cindex customizing key bindings 1939 @cindex key bindings, customizing [all …]
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | c-decl.c | 319 struct c_binding *bindings; member 504 b->prev = scope->bindings; in bind() 505 scope->bindings = b; in bind() 598 for (b = scope->bindings; b; b = b->prev) in objc_mark_locals_volatile() 704 bool keep = functionbody || scope->keep || scope->bindings; in pop_scope() 750 for (b = scope->bindings; b; b = free_binding_and_advance (b)) in pop_scope() 1626 for (here = ¤t_scope->bindings; *here; here = &(*here)->prev) in merge_decls() 1634 b->prev = current_scope->bindings; in merge_decls() 1635 current_scope->bindings = b; in merge_decls() 3697 for (b = current_scope->bindings; b; b = b->prev) in mark_forward_parm_decls() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/BLAKE3/ |
| H A D | README.md | 210 language bindings, see `llvm_blake3_hasher_init_derive_key_raw` below. 223 length. This is intended for writing language bindings, where C string
|
| /openbsd-src/usr.bin/tmux/ |
| H A D | Makefile | 88 key-bindings.c \
|
| /openbsd-src/gnu/lib/libreadline/doc/ |
| H A D | rluser.texinfo | 342 init file is read, and the key bindings are set. 350 * Conditional Init Constructs:: Conditional key bindings in the inputrc file. 363 denote variable settings and key bindings. 444 key bindings is used. By default, Readline starts up in Emacs editing 564 The syntax for controlling key bindings in the init file is 582 bindings in a format that can put directly into an initialization file. 703 bindings and variable settings to be performed as the result 708 The @code{$if} construct allows bindings to be made based on the 718 with the @samp{set keymap} command, for instance, to set bindings in 724 key bindings, perhaps to bind the key sequences output by the [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | ItaniumCXXABI.cpp | 167 DecompositionDeclName Name{DD->bindings()}; in getManglingNumber()
|
| /openbsd-src/gnu/llvm/clang/lib/Analysis/ |
| H A D | LiveVariables.cpp | 74 for (const BindingDecl *BD : DD->bindings()) in isLive() 399 for (const auto *BD : DD->bindings()) { in VisitDeclStmt()
|
| /openbsd-src/gnu/llvm/lldb/bindings/python/ |
| H A D | CMakeLists.txt | 45 "${LLDB_SOURCE_DIR}/bindings/python/createPythonInit.py"
|