Searched defs:createObjectFile (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Object/
H A DObjectFile.cpp49 ObjectFile::createObjectFile(std::unique_ptr<MemoryBuffer> &Object, function in class:ObjectFile
85 ErrorOr<ObjectFile *> ObjectFile::createObjectFile(StringRef ObjectPath) { function in class:ObjectFile
90 return createObjectFile(FileOrErr.get());
/external/llvm/include/llvm/Object/
H A DObjectFile.h203 /// Concrete instances of this object are created by createObjectFile, which
335 static ErrorOr<ObjectFile *> createObjectFile(StringRef ObjectPath);
337 createObjectFile(std::unique_ptr<MemoryBuffer> &Object,
340 createObjectFile(std::unique_ptr<MemoryBuffer> &Object) { function in class:llvm::object::ObjectFile
341 return createObjectFile(Object, sys::fs::file_magic::unknown);

Completed in 446 milliseconds