Lines Matching refs:Entry
25 for (HashMap::Entry* p = names_.Start(); p != NULL; p = names_.Next(p)) {
33 HashMap::Entry* entry = GetEntry(src, len);
34 if (entry->value == NULL) {
38 entry->key = dst.start();
39 entry->value = entry->key;
41 return reinterpret_cast<const char*>(entry->value);
55 HashMap::Entry* entry = GetEntry(str, len);
56 if (entry->value == NULL) {
57 // New entry added.
58 entry->key = str;
59 entry->value = str;
63 return reinterpret_cast<const char*>(entry->value);
110 size += sizeof(HashMap::Entry) * names_.capacity();
111 for (HashMap::Entry* p = names_.Start(); p != NULL; p = names_.Next(p)) {
118 HashMap::Entry* StringsStorage::GetEntry(const char* str, int len) {