Lines Matching defs:table
20 #include "src/objects/hash-table-inl.h"
1550 Handle<SwissNameDictionary> table = args.at<SwissNameDictionary>(0);
1557 return *SwissNameDictionary::Add(isolate, table, key, value, details);
1565 auto table = SwissNameDictionary::cast(args[0]);
1567 InternalIndex index = table.FindEntry(isolate, key);
1578 auto table = SwissNameDictionary::cast(args[0]);
1581 table.ValueAtPut(index, value);
1584 table.DetailsAtPut(index, details);
1593 Handle<SwissNameDictionary> table = args.at<SwissNameDictionary>(0);
1596 return *SwissNameDictionary::DeleteEntry(isolate, table, index);
1604 auto table = SwissNameDictionary::cast(args[0]);
1606 return Smi::FromInt(table.EqualsForTesting(other));
1614 auto table = SwissNameDictionary::cast(args[0]);
1615 return Smi::FromInt(table.NumberOfElements());
1623 auto table = SwissNameDictionary::cast(args[0]);
1625 return table.KeyAt(index);
1633 auto table = SwissNameDictionary::cast(args[0]);
1635 return table.ValueAt(index);
1643 auto table = SwissNameDictionary::cast(args[0]);
1645 PropertyDetails d = table.DetailsAt(index);