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

Method Advance

Bcore/src/main/cpp/dex/bytecode_utils.h:115–118  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

113 bool IsLast() const { return index_ == num_entries_ - 1; }
114
115 void Advance() {
116 DCHECK(!Done());
117 index_++;
118 }
119
120 int32_t CurrentKey() const {
121 return table_.IsSparse() ? table_.GetEntryAt(index_) : table_.GetEntryAt(0) + index_;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected