HomeSort by relevance Sort by last modified time
    Searched defs:hashKey (Results 1 - 7 of 7) sorted by null

  /external/webkit/WebCore/bridge/qt/
qt_instance.h 62 QObject* hashKey() const { return m_hashkey; }
  /external/webkit/WebCore/css/
CSSFontFaceSource.cpp 117 unsigned hashKey = fontDescription.computedPixelSize() << 2 | (syntheticBold ? 2 : 0) | (syntheticItalic ? 1 : 0);
118 if (SimpleFontData* cachedData = m_fontDataTable.get(hashKey))
188 m_fontDataTable.set(hashKey, fontData.get());
CSSSegmentedFontFace.cpp 100 unsigned hashKey = fontDescription.computedPixelSize() << FontTraitsMaskWidth | desiredTraitsMask;
102 SegmentedFontData* fontData = m_fontDataTable.get(hashKey);
126 m_fontDataTable.set(hashKey, fontData);
  /system/core/libcutils/
hashmap.c 80 static inline int hashKey(Hashmap* map, void* key) {
190 int hash = hashKey(map, key);
222 int hash = hashKey(map, key);
237 int hash = hashKey(map, key);
253 int hash = hashKey(map, key);
285 int hash = hashKey(map, key);
  /external/guava/src/com/google/common/collect/
MapMaker.java 528 public int hashKey(Object key) {
    [all...]
CustomConcurrentHashMap.java 95 * public int hashKey(Object key) { return key.hashCode(); }
313 * @param hash of key returned by {@link #hashKey}
381 int hashKey(Object key);
637 int h = strategy.hashKey(key);
    [all...]
  /external/icu4c/common/
locid.cpp 657 UHashTok hashKey;
658 hashKey.pointer = fullName;
659 return uhash_hashChars(hashKey);
    [all...]

Completed in 883 milliseconds