Lines Matching refs:dex_deps_
44 dex_deps_.emplace(dex_file, std::move(deps)); in VerifierDeps()
66 DCHECK_EQ(dex_deps_.size(), other->dex_deps_.size()); in MergeWith()
84 auto it = dex_deps_.find(&dex_file); in GetDexFileDeps()
85 return (it == dex_deps_.end()) ? nullptr : it->second.get(); in GetDexFileDeps()
89 auto it = dex_deps_.find(&dex_file); in GetDexFileDeps()
90 return (it == dex_deps_.end()) ? nullptr : it->second.get(); in GetDexFileDeps()
797 if (dex_deps_.size() != rhs.dex_deps_.size()) { in Equals()
801 auto lhs_it = dex_deps_.begin(); in Equals()
802 auto rhs_it = rhs.dex_deps_.begin(); in Equals()
804 for (; (lhs_it != dex_deps_.end()) && (rhs_it != rhs.dex_deps_.end()); lhs_it++, rhs_it++) { in Equals()
818 DCHECK((lhs_it == dex_deps_.end()) && (rhs_it == rhs.dex_deps_.end())); in Equals()
833 for (const auto& dep : dex_deps_) { in Dump()
920 for (const auto& entry : dex_deps_) { in ValidateDependencies()