/openbsd/gnu/llvm/lldb/bindings/ |
H A D | headers.swig | 10 #include "lldb/API/SBAddress.h" 11 #include "lldb/API/SBAttachInfo.h" 12 #include "lldb/API/SBBlock.h" 13 #include "lldb/API/SBBreakpoint.h" 22 #include "lldb/API/SBData.h" 26 #include "lldb/API/SBError.h" 27 #include "lldb/API/SBEvent.h" 30 #include "lldb/API/SBFile.h" 33 #include "lldb/API/SBFrame.h" 49 #include "lldb/API/SBQueue.h" [all …]
|
/openbsd/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/ |
H A D | API.t | 6 use Test2::API qw/context/; 10 $INIT = Test2::API::test2_init_done; 11 $LOADED = Test2::API::test2_load_done; 17 my $CLASS = 'Test2::API'; 75 Test2::API::test2_add_callback_exit( 85 *Test2::API::Instance::set_exit = sub { 164 Test2::API::context_do { 200 Test2::API::no_context { 218 Test2::API::no_context { 238 Test2::API::no_context { [all …]
|
/openbsd/gnu/llvm/clang/lib/ExtractAPI/ |
H A D | ExtractAPIVisitor.cpp | 76 StringRef USR = API.recordUSR(Decl); in VisitVarDecl() 136 StringRef USR = API.recordUSR(Decl); in VisitFunctionDecl() 182 StringRef USR = API.recordUSR(Decl); in VisitEnumDecl() 196 EnumRecord *EnumRecord = API.addEnum( in VisitEnumDecl() 225 StringRef USR = API.recordUSR(Decl); in VisitRecordDecl() 259 StringRef USR = API.recordUSR(Decl); in VisitObjCInterfaceDecl() 305 StringRef USR = API.recordUSR(Decl); in VisitObjCProtocolDecl() 344 StringRef USR = API.recordUSR(Decl); in VisitTypedefNameDecl() 366 StringRef USR = API.recordUSR(Decl); in VisitObjCCategoryDecl() 513 API.addObjCProperty( in recordObjCProperties() [all …]
|
H A D | ExtractAPIConsumer.cpp | 225 std::unique_ptr<LocationFileChecker> LCF, APISet &API) in ExtractAPIConsumer() argument 226 : Visitor(Context, *LCF, API), LCF(std::move(LCF)) {} in ExtractAPIConsumer() 240 MacroCallback(const SourceManager &SM, LocationFileChecker &LCF, APISet &API, in MacroCallback() argument 242 : SM(SM), LCF(LCF), API(API), PP(PP) {} in MacroCallback() 288 API.recordUSRForMacro(Name, PM.MacroNameToken.getLocation(), SM); in EndOfMainFile() 290 API.addMacroDefinition( in EndOfMainFile() 311 APISet &API; member in __anonc7a71e6c0111::MacroCallback 328 API = std::make_unique<APISet>( in CreateASTConsumer() 335 CI.getSourceManager(), *LCF, *API, CI.getPreprocessor())); in CreateASTConsumer() 355 std::move(LCF), *API); in CreateASTConsumer() [all …]
|
/openbsd/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/API/InterceptResult/ |
H A D | Squasher.t | 5 use Test2::API::InterceptResult::Squasher; 6 use Test2::API::InterceptResult::Event; 8 my $CLASS = 'Test2::API::InterceptResult::Squasher'; 17 Test2::API::InterceptResult::Event->new(facet_data => { 21 Test2::API::InterceptResult::Event->new(facet_data => { 25 Test2::API::InterceptResult::Event->new(facet_data => { 29 Test2::API::InterceptResult::Event->new(facet_data => { 35 Test2::API::InterceptResult::Event->new(facet_data => { 42 Test2::API::InterceptResult::Event->new(facet_data => { 48 Test2::API::InterceptResult::Event->new(facet_data => { [all …]
|
/openbsd/gnu/llvm/libcxx/docs/DesignDocs/ |
H A D | ThreadingSupportAPI.rst | 2 Threading Support API 14 other. To address this libc++ wraps the underlying threading API in a new and 15 consistent API, which it uses internally to implement threading primitives. 21 External Threading API and the ``<__external_threading>`` header 24 In order to support vendors with custom threading API's libc++ allows the 43 API but leaves out the implementation. 62 header to provide the internal threading API. This macro overrides 67 internal threading API. 71 internal threading API. 75 threading API to be provided by an external library. When defined [all …]
|
/openbsd/gnu/llvm/clang/tools/libclang/ |
H A D | CXExtractAPI.cpp | 85 APISet *API = new APISet(Ctx.getTargetInfo().getTriple(), Lang, in clang_createAPISet() local 88 Ctx, [](SourceLocation Loc) { return true; }, *API); in clang_createAPISet() 94 *out_api = wrap(API); in clang_createAPISet() 101 auto *API = unwrap(api); in clang_getSymbolGraphForUSR() local 103 if (auto SGF = SymbolGraphSerializer::serializeSingleSymbolSGF(usr, *API)) in clang_getSymbolGraphForUSR() 125 APISet API(Ctx.getTargetInfo().getTriple(), Lang, in clang_getSymbolGraphForCursor() local 128 Ctx, [](SourceLocation Loc) { return true; }, API); in clang_getSymbolGraphForCursor() 135 auto *Record = API.findRecordForUSR(USR); in clang_getSymbolGraphForCursor() 146 if (auto SGF = SymbolGraphSerializer::serializeSingleSymbolSGF(USR, API)) in clang_getSymbolGraphForCursor()
|
/openbsd/gnu/llvm/clang/lib/ExtractAPI/Serialization/ |
H A D | SymbolGraphSerializer.cpp | 485 const RecordTy &Record, const APISet &API, in generatePathComponents() argument 565 Module["name"] = API.ProductName; in serializeModule() 612 if (generatePathComponents(Record, API, in serializeAPIRecord() 818 for (const auto &Enum : API.getEnums()) in serialize() 822 for (const auto &Struct : API.getStructs()) in serialize() 833 for (const auto &Macro : API.getMacros()) in serialize() 836 for (const auto &Typedef : API.getTypedefs()) in serialize() 864 APIRecord *Record = API.findRecordForUSR(USR); in serializeSingleSymbolSGF() 870 SymbolGraphSerializer Serializer(API, EmptyIgnores, in serializeSingleSymbolSGF() 876 Language Lang = API.getLanguage(); in serializeSingleSymbolSGF() [all …]
|
/openbsd/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test2/ |
H A D | IPC.pm | 8 use Test2::API::Instance; 10 use Test2::API qw{ 37 sub unimport { Test2::API::test2_ipc_disable() } 42 confess "IPC is disabled" if Test2::API::test2_ipc_disabled(); 46 Test2::API::_set_ipc(_make_ipc()); 54 my ($driver) = Test2::API::test2_ipc_drivers();
|
/openbsd/gnu/usr.bin/perl/dist/Devel-PPPort/parts/inc/ |
H A D | ppphbin | 101 next if $API{$f}{core_only}; 102 next if $API{$f}{beyond_depr}; 105 next unless $API{$f}{todo}; 265 my $base = int_parse_version($API{$f}{base}) if $API{$f}{base}; 266 if ($base && ! $API{$f}{inaccessible} && ! $API{$f}{core_only}) { 274 # We normally suppress non-API items. But if the search matched no API 284 $base = int_parse_version($API{$f}{base}) if $API{$f}{base}; 286 $todo = int_parse_version($API{$f}{todo}) if $API{$f}{todo}; 324 … $max = int_parse_version($API{$_}{todo}) if $API{$_}{todo} && $API{$_}{todo} > $max; 352 if ($API{$f}{provided}) { [all …]
|
/openbsd/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/behavior/ |
H A D | no_load_api.t | 9 # This test is to insure certain objects do not load Test2::API directly or # 10 # indirectly when being required. It is ok for import() to load Test2::API if # 40 Test2/API.pm 41 Test2/API/Instance.pm 42 Test2/API/Context.pm 43 Test2/API/Stack.pm 48 Test2::Tools::Tiny::ok(!@loaded, "Test2::API was not loaded")
|
H A D | disable_ipc_c.t | 5 use Test2::API qw/test2_ipc_disable/; 9 ok(Test2::API::test2_ipc_disabled, "disabled IPC"); 10 ok(!Test2::API::test2_ipc, "No IPC");
|
H A D | disable_ipc_d.t | 5 use Test2::API qw/context/; 24 ok(Test2::API::test2_ipc_disabled, "disabled IPC"); 25 ok(!Test2::API::test2_ipc, "No IPC");
|
/openbsd/gnu/llvm/clang/include/clang/ExtractAPI/ |
H A D | ExtractAPIVisitor.h | 31 APISet &API) in ExtractAPIVisitor() argument 32 : Context(Context), API(API), in ExtractAPIVisitor() 35 const APISet &getAPI() const { return API; } in getAPI() 81 APISet &API; variable
|
/openbsd/gnu/llvm/clang/include/clang/ExtractAPI/Serialization/ |
H A D | SerializerBase.h | 37 const APISet &API; 54 APISerializer(const APISet &API, const APIIgnoresList &IgnoresList, 56 : API(API), IgnoresList(IgnoresList), Options(Options) {} in API() function
|
/openbsd/lib/libfido2/ |
H A D | NEWS | 7 ** New API calls: 17 ** New API calls: 34 ** New API calls: 51 ** Support for Windows's native webauthn API. 53 ** New API calls: 75 ** New API calls: 107 ** New API calls: 124 ** New API calls: 139 ** New API calls: 160 ** New API calls: [all …]
|
/openbsd/gnu/usr.bin/perl/dist/Devel-PPPort/ |
H A D | Changes | 326 * Add support for the following API 369 * added support for the following API 511 * update API info 699 * update API info 730 * update API info 738 * update API info 800 the following API 822 * fix API listing 842 * update API info 952 unsupported API calls [all …]
|
/openbsd/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test2/API/ |
H A D | Stack.pm | 1 package Test2::API::Stack; 29 require Test2::API; 30 $hub->format(Test2::API::test2_formatter()->new_root) 33 my $ipc = Test2::API::test2_ipc();
|
H A D | InterceptResult.pm | 1 package Test2::API::InterceptResult; 12 use Test2::API::InterceptResult::Squasher; 13 use Test2::API::InterceptResult::Event; 14 use Test2::API::InterceptResult::Hub; 57 my $hub = Test2::API::InterceptResult::Hub->new(); 102 my $squasher = Test2::API::InterceptResult::Squasher->new(events => \@out);
|
/openbsd/gnu/llvm/clang/docs/ |
H A D | APINotes.rst | 2 API Notes: Annotations Without Modifying Headers 6 extra information to the API. You don't want to put that information in the 22 That's API notes. 24 API notes use a YAML-based file format. YAML is a format best explained by 27 from the compiler test suite of API 34 API notes files are found relative to the module map that defines a module, 55 "Versioned" API Notes 58 Many API notes affect how a C API is imported into Swift. In order to change 62 explicitly-versioned API note applies to that version *and all earlier 64 over an unversioned API note. [all …]
|
/openbsd/gnu/llvm/lldb/docs/design/ |
H A D | sbapi.rst | 1 Scripting Bridge API 4 The SB APIs constitute the stable C++ API that lldb presents to external 10 The classes in the SB API's are all called SB<SomeName>, where SomeName is in 14 All the SB API classes are non-virtual, single inheritance classes. They should 23 unique_ptr to the object in the lldb_private API. All the lldb_private classes 39 In order to fit into the Python API's, we need to be able to default construct 46 Another piece of the SB API infrastructure is the Python (or other script 55 C++ API's for an SB class, you have to copy the interface to the .i file. 57 API Instrumentation 60 The reproducer infrastructure requires API methods to be instrumented so that [all …]
|
/openbsd/gnu/usr.bin/perl/cpan/Test2-Suite/t/modules/ |
H A D | Todo.t | 5 def ok => ((grep {$_->{code} == $todo->_filter} @{Test2::API::test2_stack->top->_pre_filters}), "fi… 7 def ref_is => ($todo->hub, Test2::API::test2_stack->top, "used current hub"); 12 ok(!(grep {$_->{code} == $filter} @{Test2::API::test2_stack->top->_pre_filters}), "filter removed"); 19 my $filtered_ok = $filter->(Test2::API::test2_stack->top, $ok); 24 my $filtered_diag = $filter->(Test2::API::test2_stack->top, $diag);
|
/openbsd/gnu/usr.bin/perl/cpan/Test-Simple/t/regression/ |
H A D | builder_does_not_init.t | 5 use Test2::API::Instance; 9 local *Test2::API::Instance::_finalize = sub { confess "_finalize called\n" }; 10 local *Test2::API::Instance::load = sub { confess "load called\n" };
|
/openbsd/gnu/usr.bin/perl/cpan/Test2-Suite/lib/Test2/ |
H A D | AsyncSubtest.pm | 16 use Test2::API(); 17 use Test2::API::Context(); 47 my $UUID_VIA = Test2::API::_add_uuid_via_ref(); 59 my $to = $self->{+SEND_TO} ||= Test2::API::test2_stack()->top; 75 my $ipc = Test2::API::test2_ipc(); 76 my $formatter = Test2::API::test2_stack->top->format; 120 return Test2::API::Context->new( 274 my $stack = Test2::API::test2_stack(); 294 my $stack = Test2::API::test2_stack();
|
/openbsd/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy_And_Test2/ |
H A D | preload_diag_note.t | 10 require Test2::API; 11 Test2::API::test2_start_preload(); 28 Test2::API::test2_stop_preload();
|