Lines Matching defs:refs
306 void Serializer::PutPendingForwardReference(PendingObjectReferences& refs) {
311 if (refs == nullptr) {
316 refs = new std::vector<int>();
318 refs->push_back(forward_ref_id);
326 // If there are no more unresolved forward refs, reset the forward ref id to
327 // zero so that future forward refs compress better.
354 // Add the given object to the pending objects -> forward refs map.
370 std::vector<int>* refs;
371 CHECK(forward_refs_per_pending_object_.Delete(obj, &refs));
372 if (refs) {
373 for (int index : *refs) {
378 delete refs;