HomeSort by relevance Sort by last modified time
    Searched refs:MCLDFile (Results 1 - 18 of 18) sorted by null

  /frameworks/compile/mclinker/include/mcld/MC/
MCLDOutput.h 10 // Output class inherits MCLDFile, which is used to represent a output file.
20 #include <mcld/MC/MCLDFile.h>
30 * @see MCLDFile
32 class Output : public MCLDFile
36 Object = MCLDFile::Object,
37 DynObj = MCLDFile::DynObj,
38 Exec = MCLDFile::Exec
MCLDInput.h 10 // Input class inherits MCLDFile, which is used to represent a input file
20 #include "mcld/MC/MCLDFile.h"
32 * @see MCLDFile
34 class Input : public MCLDFile
39 Unknown = MCLDFile::Unknown,
40 Object = MCLDFile::Object,
41 DynObj = MCLDFile::DynObj,
42 Archive = MCLDFile::Archive,
43 Script = MCLDFile::Script
MCLDFile.h 1 //===- MCLDFile.h ---------------------------------------------------------===//
10 // MCLDFile represents a file, the content of the file is stored in LDContext.
35 /** \class MCLDFile
36 * \brief MCLDFile represents the file being linked or produced.
38 * MCLDFile is the storage of name, path and type
39 * A MCLDFile just refers to LDContext, not owns it.
43 class MCLDFile : private Uncopyable
57 MCLDFile();
58 MCLDFile(llvm::StringRef pName);
59 MCLDFile(llvm::StringRef pName
    [all...]
SearchDirs.h 21 class MCLDFile;
  /frameworks/compile/mclinker/lib/MC/
MCLDFile.cpp 1 //===- MCLDFile.cpp -------------------------------------------------------===//
9 #include "mcld/MC/MCLDFile.h"
19 // MCLDFile
20 MCLDFile::MCLDFile()
24 MCLDFile::MCLDFile(llvm::StringRef pName)
28 MCLDFile::MCLDFile(llvm::StringRef pName,
34 MCLDFile::~MCLDFile(
    [all...]
MCLDOutput.cpp 16 : MCLDFile("") {
21 : MCLDFile("", pRealPath, pType) {
MCLDInput.cpp 17 : MCLDFile(pName),
27 : MCLDFile(pName, pPath, pType),
Android.mk 12 MCLDFile.cpp \
  /frameworks/compile/mclinker/include/mcld/CodeGen/
SectLinker.h 32 class MCLDFile;
  /frameworks/compile/mclinker/unittests/
FactoriesTest.cpp 173 MCLDFile* file = m_pFileAlloc->produce();
186 MCLDFile* file = m_pFileAlloc->produce( string(name),
188 MCLDFile::Archive);
203 MCLDFile* file = m_pFileAlloc->produce( string(name),
205 MCLDFile::Archive);
  /frameworks/compile/mclinker/include/mcld/LD/
ELFReader.h 56 virtual MCLDFile::Type fileType(void* pELFHeader) const = 0;
177 inline MCLDFile::Type fileType(void* pELFHeader) const;
  /frameworks/compile/mclinker/include/mcld/Target/
TargetMachine.h 16 #include "mcld/MC/MCLDFile.h"
115 MCLDFile::Type pOutputLinkType,
  /frameworks/compile/mclinker/lib/CodeGen/
LLVMTargetMachine.cpp 13 #include "mcld/MC/MCLDFile.h"
245 MCLDFile::Exec,
257 MCLDFile::DynObj,
346 MCLDFile::Type pOutputLinkType,
394 if (pOutputLinkType == MCLDFile::DynObj &&
  /frameworks/compile/mclinker/lib/LD/
GNUArchiveReader.cpp 179 /// New a Input object and assign fileOffset in MCLDFile.
184 MCLDFile::Object,
204 MCLDFile::Archive,
220 MCLDFile::Object,
ELFDynObjReader.cpp 57 else if (MCLDFile::DynObj != m_pELFReader->fileType(ELF_hdr))
ELFObjectReader.cpp 62 else if (MCLDFile::Object != m_pELFReader->fileType(ELF_hdr))
ELFFileFormat.cpp 11 #include <mcld/MC/MCLDFile.h>
Layout.cpp 588 if (MCLDFile::Object == pOutput.type()) {

Completed in 497 milliseconds