Searched refs:isMyFormat (Results 1 - 18 of 18) sorted by relevance

/frameworks/compile/mclinker/include/mcld/LD/
H A DBSDArchiveReader.h31 bool isMyFormat(Input& pInput, bool &pContinue) const;
H A DBinaryReader.h27 virtual bool isMyFormat(Input& pInput, bool &pContinue) const function in class:mcld::BinaryReader
H A DLDReader.h37 virtual bool isMyFormat(Input& pInput, bool &pContinue) const = 0;
H A DELFBinaryReader.h31 bool isMyFormat(Input& pInput, bool &pContinue) const;
H A DELFDynObjReader.h34 bool isMyFormat(Input &pFile, bool &pContinue) const;
H A DELFObjectReader.h46 bool isMyFormat(Input &pFile, bool &pContinue) const;
H A DGNUArchiveReader.h37 /// isMyFormat
38 bool isMyFormat(Input& input, bool &pContinue) const;
/frameworks/compile/mclinker/lib/LD/
H A DBSDArchiveReader.cpp30 bool BSDArchiveReader::isMyFormat(Input& pInput, bool &pContinue) const function in class:BSDArchiveReader
H A DGroupReader.cpp77 if (m_ArchiveReader.isMyFormat(**input, doContinue)) {
88 else if (doContinue && m_BinaryReader.isMyFormat(**input, doContinue)) {
94 else if (doContinue && m_ObjectReader.isMyFormat(**input, doContinue)) {
104 else if (doContinue && m_DynObjReader.isMyFormat(**input, doContinue)) {
H A DELFBinaryReader.cpp36 bool ELFBinaryReader::isMyFormat(Input& pInput, bool &pContinue) const function in class:ELFBinaryReader
H A DGNUArchiveReader.cpp44 /// isMyFormat
45 bool GNUArchiveReader::isMyFormat(Input& pInput, bool &pContinue) const function in class:GNUArchiveReader
402 if (m_ELFObjectReader.isMyFormat(*member, doContinue)) {
414 else if (doContinue && isMyFormat(*member, doContinue)) {
H A DELFDynObjReader.cpp46 /// isMyFormat
47 bool ELFDynObjReader::isMyFormat(Input &pInput, bool &pContinue) const function in class:ELFDynObjReader
H A DELFObjectReader.cpp61 /// isMyFormat
62 bool ELFObjectReader::isMyFormat(Input &pInput, bool &pContinue) const function in class:ELFObjectReader
/frameworks/compile/mclinker/unittests/
H A DELFBinaryReaderTest.cpp57 ASSERT_TRUE(reader->isMyFormat(input, doContinue));
60 ASSERT_FALSE(reader->isMyFormat(input, doContinue));
H A DELFReaderTest.cpp158 ASSERT_TRUE( m_pELFObjReader->isMyFormat(*m_pInput, doContinue) );
/frameworks/compile/mclinker/include/mcld/Script/
H A DScriptReader.h34 /// isMyFormat
35 bool isMyFormat(Input& pInput, bool &pContinue) const;
/frameworks/compile/mclinker/lib/Script/
H A DScriptReader.cpp31 /// isMyFormat
32 bool ScriptReader::isMyFormat(Input& input, bool &doContinue) const function in class:ScriptReader
/frameworks/compile/mclinker/lib/Object/
H A DObjectLinker.cpp178 if (getBinaryReader()->isMyFormat(**input, doContinue)) {
184 else if (doContinue && getObjectReader()->isMyFormat(**input, doContinue)) {
192 else if (doContinue && getDynObjReader()->isMyFormat(**input, doContinue)) {
199 else if (doContinue && getArchiveReader()->isMyFormat(**input, doContinue)) {
212 else if (doContinue && getScriptReader()->isMyFormat(**input, doContinue)) {

Completed in 1335 milliseconds