Home | History | Annotate | Download | only in LD

Lines Matching refs:pStr

29   size_t operator()(const char *pStr) {
31 while (*pStr)
32 hashVal = hashVal * 131 + (*pStr++);
43 const KeyType &pStr, InitType pInitVal) {
44 ::new ((void*)&pKey) KeyStorageType(pStr);
72 ValueType &getOrCreate(const KeyType &pStr, const ValueType &pInitVal);
74 ValueType &getOrCreate(const KeyType &pStr);
163 StringUnorderedMapImpl::getOrCreate(const KeyType &pStr, ValueType &pInitVal)
166 size_t hashVal = hash(pStr);
171 if(hashVal == ptr->hashVal && pStr.equals(ptr->str)) {
179 init(ans->str, ans->value, pStr, pInitVal);