MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / HasNextMethod

Method HasNextMethod

Bcore/src/main/cpp/dex/dex_file.h:1213–1217  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1211 return pos_ >= EndOfDirectMethodsPos() && pos_ < EndOfVirtualMethodsPos();
1212 }
1213 bool HasNextMethod() const {
1214 const bool result = pos_ >= EndOfInstanceFieldsPos() && pos_ < EndOfVirtualMethodsPos();
1215 DCHECK_EQ(result, HasNextDirectMethod() || HasNextVirtualMethod());
1216 return result;
1217 }
1218 void SkipStaticFields() {
1219 while (HasNextStaticField()) {
1220 Next();

Callers 7

fixCodeItemFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected