Home
last modified time | relevance | path

Searched refs:LinkSection (Results 1 – 8 of 8) sorted by relevance

/openbsd-src/gnu/usr.bin/perl/cpan/Pod-Simple/t/
H A Dlinkclas.t1 # Testing the LinkSection class
10 use Pod::Simple::LinkSection;
22 my $treelet = Pod::Simple::LinkSection->new($bare_treelet);
27 is ref($treelet), 'Pod::Simple::LinkSection';
44 } elsif(ref($this || '') eq 'Pod::Simple::LinkSection') {
H A D00about.t20 Pod::Simple::LinkSection
/openbsd-src/gnu/usr.bin/perl/cpan/Pod-Simple/lib/Pod/Simple/
H A DLinkSection.pm1 package Pod::Simple::LinkSection;
73 Pod::Simple::LinkSection -- represent "section" attributes of L codes
110 ], 'Pod::Simple::LinkSection' ),
112 ], 'Pod::Simple::LinkSection' );
H A DSubclassing.pod1027 L<Pod::Simple::LinkSection> -- class for objects representing the values
/openbsd-src/gnu/usr.bin/perl/cpan/Pod-Simple/lib/Pod/
H A DSimple.pm8 use Pod::Simple::LinkSection ();
1150 $ell->[1]{to} = Pod::Simple::LinkSection->new(
1171 Pod::Simple::LinkSection->new( $it ); # treelet!
1182 Pod::Simple::LinkSection->new( $it ); # treelet!
1341 $ell->[1]{'section'} = Pod::Simple::LinkSection->new(
1348 $ell->[1]{'to'} = Pod::Simple::LinkSection->new(
/openbsd-src/gnu/llvm/llvm/lib/ObjCopy/ELF/
H A DELFObject.cpp1031 if (ToRemove(LinkSection)) { in removeSectionReferences()
1036 LinkSection->Name.data(), this->Name.data()); in removeSectionReferences()
1037 LinkSection = nullptr; in removeSectionReferences()
1107 LinkSection = *Sec; in initialize()
1109 if (LinkSection->Type == ELF::SHT_SYMTAB) in initialize()
1110 LinkSection = nullptr; in initialize()
1115 void Section::finalize() { this->Link = LinkSection ? LinkSection->Index : 0; } in finalize()
H A DELFObject.h485 SectionBase *LinkSection = nullptr; variable
/openbsd-src/gnu/llvm/llvm/tools/obj2yaml/
H A Delf2yaml.cpp803 Expected<const Elf_Shdr *> LinkSection = Obj.getSection(Shdr->sh_link); in dumpCommonSection() local
804 if (!LinkSection) in dumpCommonSection()
807 "': " + toString(LinkSection.takeError()), in dumpCommonSection()
810 NameOrErr = getUniquedSectionName(**LinkSection); in dumpCommonSection()