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

  /external/webkit/Source/JavaScriptCore/wtf/
ValueCheck.h 34 typedef T TraitType;
40 typedef P* TraitType;
HashTraits.h 52 typedef T TraitType;
95 struct PairHashTraits : GenericHashTraits<pair<typename FirstTraitsArg::TraitType, typename SecondTraitsArg::TraitType> > {
98 typedef pair<typename FirstTraits::TraitType, typename SecondTraits::TraitType> TraitType;
101 static TraitType emptyValue() { return make_pair(FirstTraits::emptyValue(), SecondTraits::emptyValue()); }
105 static void constructDeletedValue(TraitType& slot) { FirstTraits::constructDeletedValue(slot.first); }
106 static bool isDeletedValue(const TraitType& value) { return FirstTraits::isDeletedValue(value.first); }
  /external/webkit/Source/JavaScriptCore/runtime/
SymbolTable.h 116 typedef SymbolTableEntry TraitType;
StructureTransitionTable.h 61 typedef std::pair<FirstTraits::TraitType, SecondTraits::TraitType > TraitType;
64 static TraitType emptyValue() { return std::make_pair(FirstTraits::emptyValue(), SecondTraits::emptyValue()); }
68 static void constructDeletedValue(TraitType& slot) { FirstTraits::constructDeletedValue(slot.first); }
69 static bool isDeletedValue(const TraitType& value) { return FirstTraits::isDeletedValue(value.first); }
  /external/webkit/Source/WebCore/loader/
ImageLoader.cpp 45 typedef WebCore::ImageLoader* TraitType;
  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.h 415 typedef int TraitType;

Completed in 368 milliseconds