Searched refs:doContinue (Results 1 – 6 of 6) sorted by relevance
/frameworks/compile/mclinker/lib/LD/ |
D | GroupReader.cpp | 75 bool doContinue = false; in readGroup() local 77 if (m_ArchiveReader.isMyFormat(**input, doContinue)) { in readGroup() 88 else if (doContinue && m_BinaryReader.isMyFormat(**input, doContinue)) { in readGroup() 94 else if (doContinue && m_ObjectReader.isMyFormat(**input, doContinue)) { in readGroup() 104 else if (doContinue && m_DynObjReader.isMyFormat(**input, doContinue)) { in readGroup()
|
D | GNUArchiveReader.cpp | 400 bool doContinue = false; in includeMember() local 402 if (m_ELFObjectReader.isMyFormat(*member, doContinue)) { in includeMember() 414 else if (doContinue && isMyFormat(*member, doContinue)) { in includeMember()
|
/frameworks/compile/mclinker/unittests/ |
D | ELFBinaryReaderTest.cpp | 55 bool doContinue = false; in TEST_F() local 57 ASSERT_TRUE(reader->isMyFormat(input, doContinue)); in TEST_F() 60 ASSERT_FALSE(reader->isMyFormat(input, doContinue)); in TEST_F()
|
D | ELFReaderTest.cpp | 157 bool doContinue; in TEST_F() local 158 ASSERT_TRUE( m_pELFObjReader->isMyFormat(*m_pInput, doContinue) ); in TEST_F()
|
/frameworks/compile/mclinker/lib/Script/ |
D | ScriptReader.cpp | 32 bool ScriptReader::isMyFormat(Input& input, bool &doContinue) const in isMyFormat() 34 doContinue = true; in isMyFormat()
|
/frameworks/compile/mclinker/lib/Object/ |
D | ObjectLinker.cpp | 176 bool doContinue = false; in normalize() local 178 if (getBinaryReader()->isMyFormat(**input, doContinue)) { in normalize() 184 else if (doContinue && getObjectReader()->isMyFormat(**input, doContinue)) { in normalize() 192 else if (doContinue && getDynObjReader()->isMyFormat(**input, doContinue)) { in normalize() 199 else if (doContinue && getArchiveReader()->isMyFormat(**input, doContinue)) { in normalize() 212 else if (doContinue && getScriptReader()->isMyFormat(**input, doContinue)) { in normalize()
|