Searched refs:HashTable (Results 26 - 39 of 39) sorted by relevance

12

/external/webkit/Source/WebCore/bindings/js/
H A DJSDOMBinding.h202 const JSC::HashTable* getHashTableForGlobalData(JSC::JSGlobalData&, const JSC::HashTable* staticTable);
/external/v8/src/
H A Dobjects.h75 // - HashTable
833 V(HashTable) \
2652 // HashTable is a subclass of FixedArray that implements a hash table
2702 class HashTable: public FixedArray { class in namespace:v8::internal
2753 // Returns a new HashTable object. Might return Failure.
2759 // number of elements. May be more than HashTable::kMaxCapacity.
2776 static inline HashTable* cast(Object* obj);
2798 // Maximal capacity of HashTable. Based on maximal length of underlying
2854 MUST_USE_RESULT MaybeObject* Rehash(HashTable* new_table, Key key);
2906 class SymbolTable: public HashTable<SymbolTableShap
[all...]
H A Dobjects.cc9952 int capacity = HashTable<Shape, Key>::Capacity();
9954 Object* k = HashTable<Shape, Key>::KeyAt(i);
9955 if (HashTable<Shape, Key>::IsKey(k)) {
9974 int capacity = HashTable<Shape, Key>::Capacity();
10854 void HashTable<Shape, Key>::IteratePrefix(ObjectVisitor* v) {
10860 void HashTable<Shape, Key>::IterateElements(ObjectVisitor* v) {
10868 MaybeObject* HashTable<Shape, Key>::Allocate(int at_least_space_for,
10871 if (capacity > HashTable::kMaxCapacity) {
10880 HashTable::cast(obj)->SetNumberOfElements(0);
10881 HashTable
[all...]
H A Dobjects-inl.h2058 int HashTable<Shape, Key>::ComputeCapacity(int at_least_space_for) {
2069 int HashTable<Shape, Key>::FindEntry(Key key) {
2076 int HashTable<Shape, Key>::FindEntry(Isolate* isolate, Key key) {
2078 uint32_t entry = FirstProbe(HashTable<Shape, Key>::Hash(key), capacity);
2184 HashTable<Shape, Key>* HashTable<Shape, Key>::cast(Object* obj) {
2186 return reinterpret_cast<HashTable*>(obj);
4635 int index = HashTable<Shape, Key>::EntryToIndex(entry);
H A Dliveobjectlist.cc83 v(HashTable, "unexpected: HashTable") \
/external/webkit/Source/JavaScriptCore/wtf/
H A DHashSet.h25 #include "HashTable.h"
48 typedef HashTable<ValueType, ValueType, IdentityExtractor<ValueType>,
H A DRefPtrHashMap.h64 typedef HashTable<KeyType, ValueType, PairFirstExtractor<ValueType>,
H A DHashMap.h24 #include "HashTable.h"
47 typedef HashTable<KeyType, ValueType, PairFirstExtractor<ValueType>,
H A DListHashSet.h65 typedef HashTable<Node*, Node*, IdentityExtractor<Node*>, NodeHash, NodeTraits, NodeTraits> ImplType;
/external/webkit/Source/JavaScriptCore/runtime/
H A DPropertyMapHashTable.h26 #include <wtf/HashTable.h>
H A DJSObject.cpp56 const HashTable* table = classInfo->propHashTable(exec);
305 if (const HashTable* propHashTable = info->propHashTable(exec)) {
H A DJSGlobalObject.h52 struct HashTable;
H A DJSObject.h55 struct HashTable;
/external/webkit/Source/WebCore/bindings/scripts/test/JS/
H A DJSTestObj.cpp106 static JSC_CONST_HASHTABLE HashTable JSTestObjTable = { 133, 127, JSTestObjTableValues, 0 };
131 static JSC_CONST_HASHTABLE HashTable JSTestObjConstructorTable = { 33, 31, JSTestObjConstructorTableValues, 0 };
239 static JSC_CONST_HASHTABLE HashTable JSTestObjPrototypeTable = { 136, 127, JSTestObjPrototypeTableValues, 0 };

Completed in 411 milliseconds

12