Searched defs:key_container (Results 1 - 1 of 1) sorted by relevance

/external/protobuf/src/google/protobuf/stubs/
H A Dmap_util.h673 // Inserts all the keys from map_container into key_container, which must
676 // Note: any initial contents of the key_container are not cleared.
679 KeyContainer* key_container) {
680 GOOGLE_CHECK(key_container != NULL);
683 key_container->insert(it->first);
687 // Appends all the keys from map_container into key_container, which must
690 // Note: any initial contents of the key_container are not cleared.
693 KeyContainer* key_container) {
694 GOOGLE_CHECK(key_container != NULL);
697 key_container
678 InsertKeysFromMap(const MapContainer& map_container, KeyContainer* key_container) argument
692 AppendKeysFromMap(const MapContainer& map_container, KeyContainer* key_container) argument
709 AppendKeysFromMap(const MapContainer& map_container, vector<KeyType>* key_container) argument
[all...]

Completed in 176 milliseconds