Searched refs:doContinue (Results 1 - 7 of 7) sorted by relevance
/frameworks/compile/mclinker/unittests/ |
H A D | ELFBinaryReaderTest.cpp | 50 bool doContinue = false; local 52 ASSERT_TRUE(reader->isMyFormat(input, doContinue)); 55 ASSERT_FALSE(reader->isMyFormat(input, doContinue));
|
H A D | ELFReaderTest.cpp | 152 bool doContinue; local 153 ASSERT_TRUE(m_pELFObjReader->isMyFormat(*m_pInput, doContinue));
|
/frameworks/compile/mclinker/lib/LD/ |
H A D | GroupReader.cpp | 73 bool doContinue = false; local 75 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 D | GNUArchiveReader.cpp | 381 bool doContinue = false; local 383 if (m_ELFObjectReader.isMyFormat(*member, doContinue)) { 394 } else if (doContinue && isMyFormat(*member, doContinue)) {
|
/frameworks/compile/mclinker/lib/Script/ |
H A D | ScriptReader.cpp | 37 bool ScriptReader::isMyFormat(Input& input, bool& doContinue) const { 38 doContinue = true;
|
H A D | InputCmd.cpp | 183 bool doContinue = false; local 184 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 D | ObjectLinker.cpp | 174 bool doContinue = false; local 176 if (getBinaryReader()->isMyFormat(**input, doContinue)) { 180 } else if (doContinue && 181 getObjectReader()->isMyFormat(**input, doContinue)) { 188 } else if (doContinue && 189 getDynObjReader()->isMyFormat(**input, doContinue)) { 195 } else if (doContinue && 196 getArchiveReader()->isMyFormat(**input, doContinue)) { 208 } else if (doContinue && 209 getScriptReader()->isMyFormat(**input, doContinue)) { [all...] |
Completed in 107 milliseconds