Home
last modified time | relevance | path

Searched refs:exported (Results 1 – 25 of 302) sorted by relevance

12345678910>>...13

/openbsd/src/gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t/
D01_api.t13 ok( defined(&Load), 'Found exported Load function' );
14 ok( defined(&Dump), 'Found exported Dump function' );
17 ok( !defined(&LoadFile), 'LoadFile function not exported' );
18 ok( !defined(&DumpFile), 'DumpFile function not exported' );
19 ok( !defined(&freeze), 'freeze function not exported' );
20 ok( !defined(&thaw), 'thaw functiona not exported' );
27 ok( defined(&Load), 'Found exported Load function' );
28 ok( defined(&Dump), 'Found exported Dump function' );
29 ok( defined(&LoadFile), 'Found exported LoadFile function' );
30 ok( defined(&DumpFile), 'Found exported DumpFile function' );
[all …]
/openbsd/src/gnu/usr.bin/perl/t/porting/
Dglobvar.t36 my %exported;
43 ++$exported{$_};
64 if (delete $exported{$name}) {
78 foreach (sort keys %exported) {
/openbsd/src/gnu/llvm/libcxx/docs/DesignDocs/
DVisibilityMacros.rst21 Mark a symbol as hidden so it will not be exported from shared libraries.
24 Mark a symbol as being exported by the libc++ library. This attribute must
25 be applied to the declaration of all functions exported by the libc++ dylib.
28 Mark a symbol as being exported by the libc++ library. This attribute may
34 Mark a symbol as being exported by the libc++ library, but allow it to be
56 maintain ABI compatibility for symbols that have been historically exported
98 an extern template declaration as being exported by the libc++ library.
111 explicit instantiations themselves are marked as exported. Note that this
119 of a class template as being exported by the libc++ library. This attribute
123 the extern template declaration) as exported on Windows, as discussed above.
[all …]
/openbsd/src/gnu/usr.bin/perl/cpan/AutoLoader/lib/
DAutoLoader.pm196 for my $exported (qw( AUTOLOAD )) {
197 my $symname = $callpkg . '::' . $exported;
198 undef *{ $symname } if \&{ $symname } == \&{ $exported };
/openbsd/src/gnu/llvm/compiler-rt/cmake/Modules/
DSanitizerUtils.cmake13 # symbols that need to be exported from sanitizer runtime "<name>". Function
14 # interceptors are exported automatically, user can also provide files with
15 # symbol names that should be exported as well.
40 COMMENT "Generating exported symbols for ${target_name}"
/openbsd/src/gnu/usr.bin/perl/cpan/bignum/t/
Doverrides.t91 ::is \&hex, \&bigint::hex, 'exported hex function';
92 ::is \&oct, \&bigint::oct, 'exported oct function';
94 ::ok ref hex(), 'exported hex function returns ref outside pragma scope';
95 ::ok ref oct(), 'exported oct function returns ref outside pragma scope';
96 ::is oct("20"), "16", 'exported oct function works with "decimal"';
/openbsd/src/gnu/llvm/lld/MachO/
DExportTrie.h26 void addSymbol(const Symbol &sym) { exported.push_back(&sym); } in addSymbol()
37 std::vector<const Symbol *> exported; variable
DExportTrie.cpp226 if (exported.empty()) in build()
230 sortAndBuild(exported, root, 0, 0); in build()
/openbsd/src/usr.bin/file/magdir/
Dsgml41 0 search/1/cb \<!doctype exported SGML document text
42 0 search/1/cb \<!subdoc exported SGML subdocument text
43 0 search/1/cb \<!-- exported SGML document text
Dpsion22 >4 lelong 0x1000008A exported multi-bitmap image
/openbsd/src/gnu/lib/libstdc++/libstdc++/docs/html/
Dabi.txt193 behavior will impact the mangled names of exported symbols, and thus
242 - (anything) changing size of an exported symbol
244 - (anything) changing alignment of an exported symbol
246 - (anything) changing the layout of an exported symbol
248 - (anything) changing mangling on an exported symbol
250 - (anything) deleting an exported symbol
254 instantiated or otherwise exported in the library binary, and
258 Note: adding an exported symbol, if it's in a new and dependent
326 This is a proactive check the library ABI. Currently, exported symbol
330 addition, all exported names are demangled, and the exported objects
/openbsd/src/gnu/llvm/lld/docs/
DWebAssembly.rst50 or via the `export-name` source attribute) are exported.
134 By default the function table is neither imported nor exported, but defined
169 be exported.
172 the ``WASM_SYMBOL_EXPORTED`` flag are exported by default. In LLVM the
176 In addition, symbols can be exported via the linker command line using
207 These dependencies are symbols that must be defined, and exported, by the output
233 - Any symbol which is to be exported.
/openbsd/src/regress/usr.bin/file/
Dt21.out1 t21.in: exported SGML document text
/openbsd/src/gnu/llvm/libcxx/lib/abi/
DCMakeLists.txt8 # the list of symbols exported by libc++ for that configuration, however we could
67 COMMENT "Testing libc++'s exported symbols against the ABI list")
DREADME.TXT1 This directory contains abi lists representing the symbols exported
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy/
Dimport.t12 ok( !__PACKAGE__->can('fail'), 'fail() not exported' );
/openbsd/src/gnu/llvm/llvm/examples/OrcV2Examples/LLJITWithGDBRegistrationListener/
DCMakeLists.txt17 # for this example, so make sure they're exported.
/openbsd/src/gnu/usr.bin/perl/cpan/Module-Load-Conditional/t/
D01_Module_Load_Conditional.t253 is( $@, '', q[exported function] );
256 ok( $@, q[not exported function] );
266 ok( $@, q[not exported function - func3] );
269 ok( $@, q[not exported function - func4] );
/openbsd/src/gnu/llvm/lldb/utils/TableGen/
DCMakeLists.txt1 # tablegen targets get exported via llvm for LLVMConfig.cmake. So standalone
/openbsd/src/gnu/usr.bin/perl/
Dglobvar.sym1 # Global variables that must be exported for embedded applications.
/openbsd/src/gnu/usr.bin/perl/cpan/Module-Load/t/
D01_Module-Load.t50 ### test if functions get exported
/openbsd/src/gnu/llvm/lldb/docs/use/
Dondemand.rst90 means that static functions and non exported function will not appear in the
99 symbol tables with this features as static variables and other non exported
138 that are exported will still be in your symbol table if it is stripped, but
139 static variables and non exported globals will not be.
/openbsd/src/sys/dev/microcode/aic7xxx/
Daicasm_symbol.h104 int exported; member
/openbsd/src/gnu/llvm/libcxx/src/support/runtime/
Dexception_pointer_glibcxx.ipp12 // std::__exception_ptr::exception_ptr) is not directly exported to clients. So
/openbsd/src/gnu/usr.sbin/mkhybrid/src/libfile/
DLEGAL.NOTICE10 Department of Commerce, and may be exported to any country or planet.

12345678910>>...13