| /openbsd-src/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" 14 #include "lldb/API/SBBreakpointLocation.h" 15 #include "lldb/API/SBBreakpointName.h" 16 #include "lldb/API/SBBroadcaster.h" 17 #include "lldb/API/SBCommandInterpreter.h" 18 #include "lldb/API/SBCommandInterpreterRunOptions.h" 19 #include "lldb/API/SBCommandReturnObject.h" [all …]
|
| /openbsd-src/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'; 20 ok(Test2::API->can($_), "$_ method is present") for qw{ 59 ok(Test2::API::test2_load_done, "We loaded it"); 75 Test2::API::test2_add_callback_exit( 83 my $old = Test2::API::Instance->can('set_exit'); 85 *Test2::API::Instance::set_exit = sub { 164 Test2::API::context_do { [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/ExtractAPI/ |
| H A D | ExtractAPIVisitor.cpp | 76 StringRef USR = API.recordUSR(Decl); in VisitVarDecl() 92 API.addGlobalVar(Name, USR, Loc, AvailabilitySet(Decl), Linkage, Comment, in VisitVarDecl() 136 StringRef USR = API.recordUSR(Decl); in VisitFunctionDecl() 154 API.addGlobalFunction(Name, USR, Loc, AvailabilitySet(Decl), Linkage, Comment, in VisitFunctionDecl() 182 StringRef USR = API.recordUSR(Decl); in VisitEnumDecl() 196 EnumRecord *EnumRecord = API.addEnum( in VisitEnumDecl() 197 API.copyString(Name), USR, Loc, AvailabilitySet(Decl), Comment, in VisitEnumDecl() 225 StringRef USR = API.recordUSR(Decl); in VisitRecordDecl() 240 API.addStruct(Name, USR, Loc, AvailabilitySet(Decl), Comment, Declaration, in VisitRecordDecl() 259 StringRef USR = API.recordUSR(Decl); in VisitObjCInterfaceDecl() [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 __anon1533bdf60111::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-src/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 [all...] |
| /openbsd-src/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 36 libc++ can be compiled with its internal threading API delegating to an external 39 expected to provide the implementation of the libc++ internal threading API. 43 API but leaves out the implementation. 62 header to provide the internal threading API. This macro overrides 67 internal threading API. [all …]
|
| /openbsd-src/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-src/gnu/llvm/clang/lib/ExtractAPI/Serialization/ |
| H A D | SymbolGraphSerializer.cpp | 485 const RecordTy &Record, const APISet &API, in generatePathComponents() argument 498 ParentRecord = API.findRecordForUSR(CurrentParent->ParentUSR); in generatePathComponents() 504 ParentRecord = API.findRecordForUSR(CategoryRecord->Interface.USR); in generatePathComponents() 533 Array generateParentContexts(const RecordTy &Record, const APISet &API, in generateParentContexts() argument 537 Record, API, [Lang, &ParentContexts](const PathComponent &PC) { in generateParentContexts() 565 Module["name"] = API.ProductName; in serializeModule() 566 serializeObject(Module, "platform", serializePlatform(API.getTarget())); in serializeModule() 595 serializeIdentifier(Record, API.getLanguage())); in serializeAPIRecord() 596 serializeObject(Obj, "kind", serializeSymbolKind(Record, API.getLanguage())); in serializeAPIRecord() 612 if (generatePathComponents(Record, API, in serializeAPIRecord() [all …]
|
| /openbsd-src/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(); 110 import this module after API initialization it will attempt to retrofit IPC
|
| /openbsd-src/gnu/usr.bin/perl/dist/Devel-PPPort/parts/inc/ |
| H A D | ppphbin | 79 my %API = map { /^(\w+)\|([^|]*)\|([^|]*)\|(\w*)$/ 100 for $f (sort dictionary_order keys %API) { 101 next if $API{$f}{core_only}; 102 next if $API{$f}{beyond_depr}; 103 next if $API{$f}{inaccessible}; 104 next if $API{$f}{experimental}; 105 next unless $API{$f}{todo}; 106 next if int_parse_version($API{$f}{todo}) <= $int_min_perl; 109 print "$f ", '.'x $repeat, " ", format_version($API{$f}{todo}), "\n"; 128 grep { exists $API{$_} } $code =~ /(\w+)/mg; [all …]
|
| /openbsd-src/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-src/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-src/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() argument
|
| /openbsd-src/lib/libfido2/ |
| H A D | NEWS | 7 ** New API calls: 17 ** New API calls: 34 ** New API calls: 46 ** Fixed detection of Windows's native webauthn API; gh#382. 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: [all …]
|
| /openbsd-src/gnu/usr.bin/perl/dist/Devel-PPPort/ |
| H A D | Changes | 60 * A few API elements were not properly found, like IVTYPE 71 * Change ppport.h --api-info to not output non-API info unless that is the 223 * (perl #132876) define API macros on if the NEED_ macro is defined. 326 * Add support for the following API 341 * Fix cpan #86975: Deterministically order API elements in POD 369 * added support for the following API 384 * added support for the following API 397 * added support for the following API 427 * added support for the following API 438 * added support for the following API [all …]
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test2/API/ |
| 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; 37 my $upgrade_class = $params{upgrade_class} ||= 'Test2::API::InterceptResult::Event'; 57 my $hub = Test2::API::InterceptResult::Hub->new(); 102 my $squasher = Test2::API::InterceptResult::Squasher->new(events => \@out); 169 Test2::API::InterceptResult - Representation of a list of events. 174 from L<Test2::API>. 187 L<Test2::API> [all...] |
| 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(); 113 Test2::API::Stack - Object to manage a stack of L<Test2::Hub> 130 my $stack = Test2::API::Stack->new; 137 =item $stack = Test2::API::Stack->new() 160 L<Test2::API> will be used.
|
| /openbsd-src/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 11 **Incomplete solution:** Redeclare all the interesting parts of the API in your 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, 44 Clang will search for API notes files next to module maps only when passed the 51 - Since they're identified by module name, API notes cannot be used to modify 55 "Versioned" API Notes [all …]
|
| /openbsd-src/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-src/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-src/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();
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/API/ |
| H A D | Breakage.t | 11 use Test2::API::Breakage; 12 my $CLASS = 'Test2::API::Breakage'; 22 local *Test2::API::Breakage::upgrade_suggested = sub { 26 local *Test2::API::Breakage::upgrade_required = sub { 30 local *Test2::API::Breakage::known_broken = sub {
|
| H A D | Context.t | 4 BEGIN { $Test2::API::DO_DEPTH_CHECK = 1 } 7 use Test2::API qw{ 97 my $ctx = Test2::API::Context->new( 162 my $ref1 = $hub->add_context_init(sub { die "Bad Arg" unless ref($_[0]) eq 'Test2::API::Context'… 163 my $ref2 = $hub->add_context_release(sub { die "Bad Arg" unless ref($_[0]) eq 'Test2::API::Context'… 164 test2_add_callback_context_init(sub { die "Bad Arg" unless ref($_[0]) eq 'Test2::API::Context'… 165 test2_add_callback_context_release(sub { die "Bad Arg" unless ref($_[0]) eq 'Test2::API::Context'… 193 @{Test2::API::_context_init_callbacks_ref()} = (); 194 @{Test2::API::_context_release_callbacks_ref()} = (); 195 @{Test2::API::_context_acquire_callbacks_ref()} = (); [all …]
|