| /openbsd-src/gnu/llvm/llvm/docs/CommandGuide/ |
| H A D | llvm-config.rst | 9 **llvm-config** *option* [*components*...] 56 **--components** 111 *components*, including any dependencies. 115 Link the components as shared libraries. 131 Print how the provided components can be collectively linked (`shared` or `static`). 136 *components*, including any dependencies. 150 To print a list of all available components, run **llvm-config 151 --components**. In most cases, components correspond directly to LLVM 152 libraries. Useful "virtual" components include: 156 Includes all LLVM libraries. The default if no components are specified.
|
| H A D | llvm-stress.rst | 15 can be used to test different components of LLVM.
|
| /openbsd-src/gnu/usr.bin/perl/dist/Filter-Simple/lib/Filter/ |
| H A D | Simple.pm | 113 local @components; 115 if (ref()) { push @components, $_; $instr=0 } 116 elsif ($instr) { $components[-1] .= $_ } 117 else { push @components, $_; $instr=1 } 125 @components; 126 @components = grep { ref $_ } @components; 128 s/$extractor/${$components[unpack('N',$1)]}/g; 132 $_ = join "", map $selector->(@_), @components;
|
| /openbsd-src/gnu/llvm/clang/tools/scan-view/share/ |
| H A D | ScanView.py | 672 components = path.split('/')[1:] 675 if components: 676 name = components[0] 677 if len(components)==2: 679 return self.send_report(components[1]) 681 return self.send_open_report(components[1]) 682 elif len(components)==1: 703 if components[-1] == '': 704 components[-1] = 'index.html' 706 relpath = '/'.join(components)
|
| /openbsd-src/gnu/llvm/llvm/utils/lit/lit/ |
| H A D | discovery.py | 82 components = [] 87 components.append(base) 89 components.reverse() 92 return ts, tuple(relative + tuple(components))
|
| H A D | Test.py | 213 def getSourcePath(self, components): argument 214 return os.path.join(self.source_root, *components) 216 def getExecPath(self, components): argument 217 return os.path.join(self.exec_root, *components)
|
| /openbsd-src/gnu/llvm/clang/utils/ |
| H A D | FindSpecRefs | 861 components = '.'.join([str(p[0]) for p in path[1:]]) 870 … linkStr = '<a href="%s#page=%d">%s</a> (pg.%d)'%(docData[0],page,components,page) 872 linkStr = components 873 if section == components: 878 print >>f, '\t\t<td valign=top>%s</td>'%(components,)
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-c-test/ |
| H A D | CMakeLists.txt | 16 # default list of components. Using libLLVM with custom components can result in
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | Path.cpp | 425 SmallVector<StringRef, 4> components; in append() local 426 if (!a.isTriviallyEmpty()) components.push_back(a.toStringRef(a_storage)); in append() 427 if (!b.isTriviallyEmpty()) components.push_back(b.toStringRef(b_storage)); in append() 428 if (!c.isTriviallyEmpty()) components.push_back(c.toStringRef(c_storage)); in append() 429 if (!d.isTriviallyEmpty()) components.push_back(d.toStringRef(d_storage)); in append() 431 for (auto &component : components) { in append() 720 SmallVector<StringRef, 16> components; in remove_dots() local 753 if (!components.empty() && components.back() != "..") { in remove_dots() 754 components.pop_back(); in remove_dots() 756 components.push_back(component); in remove_dots() [all …]
|
| /openbsd-src/gnu/llvm/llvm/docs/ |
| H A D | SupportPolicy.rst | 12 components are present in the public release on our supported architectures 15 There are, however, other components within the main repository that either 74 sub-community and which don't usually affect the core components directly. 84 …e `experimental <https://llvm.org/docs/DeveloperPolicy.html#introducing-new-components-into-llvm>`_ 121 * Impose sub-optimal implementation strategies on core tier components as a 131 the component, with the bar for simple and gracefully-degrading components 132 (such as editor bindings) much lower than for complex components that must 146 listed above. Different types of components could require different levels of 161 Due to the uncertain nature of inclusion, it's advisable that new components 175 burden on maintaining other components (core or peripheral).
|
| H A D | BuildingADistribution.rst | 86 generates a ``distribution`` target which builds all the components specified in 117 any components specified in *LLVM_RUNTIME_DISTRIBUTION_COMPONENTS* are not 143 to configure which LLVM components are part of libLLVM. 223 components to install. All LLVM-based tools are components, as well as most 234 components. This is used in conjunction with *LLVM_ENABLE_RUNTIMES* to specify 235 components of runtime libraries that you want to include in your distribution. 241 components. LLVM library components are either library names with the LLVM
|
| H A D | AddingConstrainedIntrinsics.rst | 41 Update IR components 48 Update Selector components
|
| /openbsd-src/gnu/llvm/llvm/lib/ |
| H A D | CMakeLists.txt | 52 # Special components which don't have any source attached but aggregate other 53 # components
|
| /openbsd-src/gnu/llvm/llvm/utils/ |
| H A D | llvm-compilers-check | 166 for component in components: 193 components = { c for c in bases } 195 if len(components) > 1 or len(components) == len(bases): 197 for c in components: 454 for component in components: 577 components = ["llvm", "dragonegg"] variable
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Time-Piece/ |
| H A D | Piece.pm | 106 my @components; 112 @components = @_; 115 …@components = shift =~ /(\d+)$DATE_SEP(\d+)$DATE_SEP(\d+)(?:(?:T|\s+)(\d+)$TIME_SEP(\d+)(?:$TIME_S… 116 @components = reverse(@components[0..5]); 118 return $class->new( timelocal(@components ));
|
| /openbsd-src/gnu/llvm/llvm/utils/gn/secondary/clang-tools-extra/clangd/xpc/ |
| H A D | enable.gni | 2 # Whether to build clangd's XPC components.
|
| /openbsd-src/gnu/llvm/clang/utils/hmaptool/ |
| H A D | hmaptool | 262 components = key.split('/') 263 if len(components) != 2: 265 framework_name,header_name = components
|
| /openbsd-src/gnu/llvm/lldb/source/Target/ |
| H A D | PathMappingList.cpp | 176 static void AppendPathComponents(FileSpec &path, llvm::StringRef components, in AppendPathComponents() argument 178 auto component = llvm::sys::path::begin(components, style); in AppendPathComponents() 179 auto e = llvm::sys::path::end(components); in AppendPathComponents()
|
| /openbsd-src/gnu/llvm/llvm/cmake/modules/ |
| H A D | LLVM-Config.cmake | 79 # done in case libLLVM does not contain all of the components 125 # Expand pseudo-components into real components. 128 # available and not a list of the components. 274 # that hasn't yet been processed by CMake. Missing components will
|
| /openbsd-src/gnu/llvm/llvm/docs/AMDGPU/ |
| H A D | gfx11_type_deviation_8d2078.rst | 14 The number of data components depends on wavesize: 8 in wave32 mode and 4 in wave64 mode.
|
| /openbsd-src/gnu/llvm/clang/docs/ |
| H A D | UndefinedBehaviorSanitizer.rst | 344 ``-fsanitize-undefined-strip-path-components=N`` can be used to trim this 346 UndefinedBehaviorSanitizer will drop the first ``N`` components from the file 347 path. If ``N`` is negative, the last ``N`` components will be kept. 354 * Default (No flag, or ``-fsanitize-undefined-strip-path-components=0``): ``/code/library/file.cpp`` 355 * ``-fsanitize-undefined-strip-path-components=1``: ``code/library/file.cpp`` 356 * ``-fsanitize-undefined-strip-path-components=2``: ``library/file.cpp`` 357 * ``-fsanitize-undefined-strip-path-components=-1``: ``file.cpp`` 358 * ``-fsanitize-undefined-strip-path-components=-2``: ``library/file.cpp``
|
| /openbsd-src/regress/sbin/pfctl/ |
| H A D | pf100.in | 3 anchor "1/2/3" # test anchors with multiple path components
|
| /openbsd-src/gnu/llvm/clang/ |
| H A D | CodeOwners.rst | 28 These code owners are responsible for particular high-level components within 118 umbrella or components used to support such tools. 160 a single part of the compiler, but instead span multiple components within the
|
| /openbsd-src/usr.sbin/bgpctl/ |
| H A D | parser.h | 89 uint8_t *components[FLOWSPEC_TYPE_MAX]; member
|
| /openbsd-src/gnu/usr.bin/perl/t/porting/ |
| H A D | filenames.t | 53 fail("$pathname has directory components containing '.'");
|