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

/frameworks/compile/mclinker/lib/LD/
H A DBSDArchiveReader.cpp27 bool BSDArchiveReader::isMyFormat(Input& pInput, bool& pContinue) const { function in class:mcld::BSDArchiveReader
H A DGroupReader.cpp75 if (m_ArchiveReader.isMyFormat(**input, doContinue)) {
84 } else if (doContinue && m_BinaryReader.isMyFormat(**input, doContinue)) {
89 } else if (doContinue && m_ObjectReader.isMyFormat(**input, doContinue)) {
98 } else if (doContinue && m_DynObjReader.isMyFormat(**input, doContinue)) {
H A DELFBinaryReader.cpp35 bool ELFBinaryReader::isMyFormat(Input& pInput, bool& pContinue) const { function in class:mcld::ELFBinaryReader
H A DELFDynObjReader.cpp44 /// isMyFormat
45 bool ELFDynObjReader::isMyFormat(Input& pInput, bool& pContinue) const { function in class:mcld::ELFDynObjReader
H A DGNUArchiveReader.cpp41 /// isMyFormat
42 bool GNUArchiveReader::isMyFormat(Input& pInput, bool& pContinue) const { function in class:mcld::GNUArchiveReader
383 if (m_ELFObjectReader.isMyFormat(*member, doContinue)) {
394 } else if (doContinue && isMyFormat(*member, doContinue)) {
H A DELFObjectReader.cpp61 /// isMyFormat
62 bool ELFObjectReader::isMyFormat(Input& pInput, bool& pContinue) const { function in class:mcld::ELFObjectReader
/frameworks/compile/mclinker/unittests/
H A DELFBinaryReaderTest.cpp52 ASSERT_TRUE(reader->isMyFormat(input, doContinue));
55 ASSERT_FALSE(reader->isMyFormat(input, doContinue));
H A DELFReaderTest.cpp153 ASSERT_TRUE(m_pELFObjReader->isMyFormat(*m_pInput, doContinue));
/frameworks/compile/mclinker/include/mcld/LD/
H A DBSDArchiveReader.h29 bool isMyFormat(Input& pInput, bool& pContinue) const;
H A DBinaryReader.h25 virtual bool isMyFormat(Input& pInput, bool& pContinue) const { function in class:mcld::BinaryReader
H A DLDReader.h30 virtual bool isMyFormat(Input& pInput, bool& pContinue) const = 0;
H A DELFBinaryReader.h29 bool isMyFormat(Input& pInput, bool& pContinue) const;
H A DELFDynObjReader.h33 bool isMyFormat(Input& pFile, bool& pContinue) const;
H A DELFObjectReader.h44 bool isMyFormat(Input& pFile, bool& pContinue) const;
H A DGNUArchiveReader.h36 /// isMyFormat
37 bool isMyFormat(Input& input, bool& pContinue) const;
/frameworks/compile/mclinker/include/mcld/Script/
H A DScriptReader.h39 /// isMyFormat
40 bool isMyFormat(Input& pInput, bool& pContinue) const;
/frameworks/compile/mclinker/lib/Script/
H A DScriptReader.cpp36 /// isMyFormat
37 bool ScriptReader::isMyFormat(Input& input, bool& doContinue) const { function in class:mcld::ScriptReader
H A DInputCmd.cpp184 if (m_ObjectReader.isMyFormat(**input, doContinue)) {
190 } else if (doContinue && m_DynObjReader.isMyFormat(**input, doContinue)) {
195 } else if (doContinue && m_ArchiveReader.isMyFormat(**input, doContinue)) {
/frameworks/compile/mclinker/lib/Object/
H A DObjectLinker.cpp176 if (getBinaryReader()->isMyFormat(**input, doContinue)) {
181 getObjectReader()->isMyFormat(**input, doContinue)) {
189 getDynObjReader()->isMyFormat(**input, doContinue)) {
196 getArchiveReader()->isMyFormat(**input, doContinue)) {
209 getScriptReader()->isMyFormat(**input, doContinue)) {

Completed in 2546 milliseconds