HomeSort by relevance Sort by last modified time
    Searched refs:isDeletedValue (Results 1 - 25 of 27) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/graphics/qt/
FontPlatformData.h 43 , isDeletedValue(false)
49 , isDeletedValue(false)
56 , isDeletedValue(false)
59 : isDeletedValue(true)
66 bool isDeletedValue : 1;
80 m_data->isDeletedValue = true;
87 return m_data && m_data->isDeletedValue;
FontPlatformDataQt.cpp 90 if (!m_data || !other.m_data || m_data->isDeletedValue || other.m_data->isDeletedValue)
104 if (m_data->isDeletedValue)
  /external/webkit/Source/JavaScriptCore/wtf/
HashTraits.h 50 static bool isDeletedValue(T value) { return value == static_cast<T>(-1); }
64 static bool isDeletedValue(T value) { return value == -std::numeric_limits<T>::infinity(); }
76 static bool isDeletedValue(T value) { return value == std::numeric_limits<T>::max() - 1; }
83 static bool isDeletedValue(P* value) { return value == reinterpret_cast<P*>(-1); }
89 static bool isDeletedValue(const T& value) { return value.isHashTableDeletedValue(); }
109 static bool isDeletedValue(const TraitType& value) { return FirstTraits::isDeletedValue(value.first); }
HashTable.h 342 static bool isDeletedBucket(const ValueType& value) { return KeyTraits::isDeletedValue(Extractor::extract(value)); }
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/text/
AtomicStringHash.h 55 static bool isDeletedValue(const WTF::AtomicString& slot) { return slot.isHashTableDeletedValue(); }
  /external/webkit/Source/WebCore/platform/graphics/
IntPointHash.h 40 static bool isDeletedValue(const WebCore::IntPoint& slot) { return slot == WebCore::IntPoint(std::numeric_limits<int>::min(), 0); }