Home
last modified time | relevance | path

Searched refs:isMyFormat (Results 1 – 13 of 13) sorted by relevance

/frameworks/compile/mclinker/lib/LD/
DGroupReader.cpp68 if (m_ArchiveReader.isMyFormat(**input)) { in readGroup()
79 else if (m_ObjectReader.isMyFormat(**input)) { in readGroup()
89 else if (m_DynObjReader.isMyFormat(**input)) { in readGroup()
DBSDArchiveReader.cpp29 bool BSDArchiveReader::isMyFormat(Input& pInput) const in isMyFormat() function in BSDArchiveReader
DGNUArchiveReader.cpp45 bool GNUArchiveReader::isMyFormat(Input& pInput) const in isMyFormat() function in GNUArchiveReader
386 if (m_ELFObjectReader.isMyFormat(*member)) { in includeMember()
394 else if (isMyFormat(*member)) { in includeMember()
DELFDynObjReader.cpp47 bool ELFDynObjReader::isMyFormat(Input &pInput) const in isMyFormat() function in ELFDynObjReader
DELFObjectReader.cpp60 bool ELFObjectReader::isMyFormat(Input &pInput) const in isMyFormat() function in ELFObjectReader
/frameworks/compile/mclinker/include/mcld/LD/
DBSDArchiveReader.h33 bool isMyFormat(Input& pInput) const;
DLDReader.h40 virtual bool isMyFormat(Input& pInput) const = 0;
DBinaryReader.h36 virtual bool isMyFormat(Input& pInput) const in isMyFormat() function
DELFDynObjReader.h38 bool isMyFormat(Input &pFile) const;
DELFObjectReader.h49 bool isMyFormat(Input &pFile) const;
DGNUArchiveReader.h41 bool isMyFormat(Input& input) const;
/frameworks/compile/mclinker/lib/Object/
DObjectLinker.cpp151 else if (getObjectReader()->isMyFormat(**input)) { in normalize()
159 else if (getDynObjReader()->isMyFormat(**input)) { in normalize()
166 else if (getArchiveReader()->isMyFormat(**input)) { in normalize()
/frameworks/compile/mclinker/unittests/
DELFReaderTest.cpp159 ASSERT_TRUE( m_pELFObjReader->isMyFormat(*m_pInput) ); in TEST_F()