Lines Matching defs:methodOffset
41 uint32_t methodOffset;
54 void IterateValByMethodOffset(uint32_t methodOffset, Type type, const Callback &cb) const
56 if (methodOffsetToValVec_.find(methodOffset) != methodOffsetToValVec_.end()) {
57 const ValVec &valVec = methodOffsetToValVec_.at(methodOffset);
65 void IterateValByMethodOffsetAndType(uint32_t methodOffset, const Callback &cb) const
67 if (methodOffsetToValVec_.find(methodOffset) != methodOffsetToValVec_.end()) {
68 const ValVec &valVec = methodOffsetToValVec_.at(methodOffset);
97 void IterateInfoAndType(uint32_t methodOffset, const Callback &cb) const
101 infos_[idx].IterateValByMethodOffset(methodOffset, type, cb);
106 void IterateInfoByType(uint32_t methodOffset, Type type, const Callback &cb) const
108 infos_[type].IterateValByMethodOffsetAndType(methodOffset, cb);