Lines Matching defs:it
39 auto it = strings_.emplace(str, IdxAndDataOffset()).first;
40 CHECK_LT(it->first.length(), 128u); // Don't allow multi-byte length in uleb128.
71 auto it = protos_.emplace(proto_key, IdxAndDataOffset()).first;
72 const ProtoKey* proto = &it->first; // Valid as long as the element remains in protos_.
80 // NOTE: The builder holds the actual data, so it must live as long as the dex file.
207 auto it = protos_.find(*entry.first.proto);
208 CHECK(it != protos_.end());
209 Write16(raw_offset + 2u, it->second.idx);
223 auto it = strings_.find(type);
224 CHECK(it != strings_.end());
225 return it->second.idx;
229 auto it = types_.find(type);
230 CHECK(it != types_.end());
231 return it->second;
237 auto it = fields_.find(key);
238 CHECK(it != fields_.end());
239 return it->second;
246 auto it = methods_.find(method_key);
247 CHECK(it != methods_.end());
248 return it->second;