Home | History | Annotate | Download | only in Object

Lines Matching defs:Archive

1 //===- Archive.cpp - ar File Format implementation --------------*- C++ -*-===//
14 #include "llvm/Object/Archive.h"
56 Archive::Child Archive::Child::getNext() const {
65 // Check to see if this is past the end of the archive.
75 error_code Archive::Child::getName(StringRef &Result) const {
113 uint64_t Archive::Child::getSize() const {
117 MemoryBuffer *Archive::Child::getBuffer() const {
126 error_code Archive::Child::getAsBinary(OwningPtr<Binary> &Result) const {
135 Archive::Archive(MemoryBuffer *source, error_code &ec)
140 < (8 + sizeof(ArchiveMemberHeader) + 2) // Smallest archive.
159 Archive::child_iterator Archive::begin_children() const {
166 Archive::child_iterator Archive::end_children() const {