Searched defs:doContinue (Results 1 - 5 of 5) sorted by relevance

/frameworks/compile/mclinker/unittests/
H A DELFBinaryReaderTest.cpp55 bool doContinue = false; local
57 ASSERT_TRUE(reader->isMyFormat(input, doContinue));
60 ASSERT_FALSE(reader->isMyFormat(input, doContinue));
H A DELFReaderTest.cpp157 bool doContinue; local
158 ASSERT_TRUE( m_pELFObjReader->isMyFormat(*m_pInput, doContinue) );
/frameworks/compile/mclinker/lib/LD/
H A DGroupReader.cpp75 bool doContinue = false; local
77 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 DGNUArchiveReader.cpp400 bool doContinue = false; local
402 if (m_ELFObjectReader.isMyFormat(*member, doContinue)) {
414 else if (doContinue && isMyFormat(*member, doContinue)) {
/frameworks/compile/mclinker/lib/Object/
H A DObjectLinker.cpp176 bool doContinue = false; local
178 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)) {
[all...]

Completed in 72 milliseconds