Home
last modified time | relevance | path

Searched refs:IsGoodEvent (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/tools/aapt2/xml/
DXmlPullParser.h66 static bool IsGoodEvent(Event event);
235 while (IsGoodEvent(event = parser->Next()) && parser->depth() > start_depth + 1) { in NextChildNode()
239 while ((event != Event::kEndElement || parser->depth() > start_depth) && IsGoodEvent(event)) { in NextChildNode()
274 inline bool XmlPullParser::IsGoodEvent(XmlPullParser::Event event) { in IsGoodEvent() function
/frameworks/base/tools/aapt2/unflatten/
DResChunkPullParser.h54 static bool IsGoodEvent(Event event);
104 inline bool ResChunkPullParser::IsGoodEvent(ResChunkPullParser::Event event) { in IsGoodEvent() function
DResChunkPullParser.cpp40 if (!IsGoodEvent(event_)) { in Next()
DBinaryResourceParser.cpp90 if (!ResChunkPullParser::IsGoodEvent(parser.Next())) { in Parse()
135 while (ResChunkPullParser::IsGoodEvent(parser.Next())) { in ParseTable()
220 while (ResChunkPullParser::IsGoodEvent(parser.Next())) { in ParsePackage()
/frameworks/base/tools/aapt2/
DResourceParser.cpp176 while (xml::XmlPullParser::IsGoodEvent(parser->Next())) { in FlattenXmlSubtree()