HomeSort by relevance Sort by last modified time
    Searched refs:inlineAdd (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/
RefPtrHashMap.h 108 AddResult inlineAdd(const KeyType&, MappedPassInReferenceType);
109 AddResult inlineAdd(RawKeyType, MappedPassInReferenceType);
200 HashMap<RefPtr<T>, U, V, W, X>::inlineAdd(const KeyType& key, MappedPassInReferenceType mapped)
207 HashMap<RefPtr<T>, U, V, W, X>::inlineAdd(RawKeyType key, MappedPassInReferenceType mapped)
216 AddResult result = inlineAdd(key, mapped);
218 // The inlineAdd call above found an existing hash table entry; we need to set the mapped value.
228 AddResult result = inlineAdd(key, mapped);
230 // The inlineAdd call above found an existing hash table entry; we need to set the mapped value.
240 return inlineAdd(key, mapped);
247 return inlineAdd(key, mapped)
    [all...]
HashMap.h 136 AddResult inlineAdd(const KeyType&, MappedPassInReferenceType);
339 HashMap<T, U, V, W, X>::inlineAdd(const KeyType& key, MappedPassInReferenceType mapped)
348 AddResult result = inlineAdd(key, mapped);
350 // The inlineAdd call above found an existing hash table entry; we need to set the mapped value.
368 return inlineAdd(key, mapped);

Completed in 4884 milliseconds