Searched refs:IdentifierTable (Results 1 – 9 of 9) sorted by relevance
35 class IdentifierTable : public FastAllocBase { class37 ~IdentifierTable() in ~IdentifierTable()68 IdentifierTable* createIdentifierTable() in createIdentifierTable()70 return new IdentifierTable; in createIdentifierTable()73 void deleteIdentifierTable(IdentifierTable* table) in deleteIdentifierTable()137 IdentifierTable& identifierTable = *globalData->identifierTable; in add()
50 class IdentifierTable; variable114 IdentifierTable* identifierTable;
139 IdentifierTable* createIdentifierTable();140 void deleteIdentifierTable(IdentifierTable*);
43 class IdentifierTable; variable124 IdentifierTable* identifierTable() const { return m_identifierTableAndFlags.get(); } in identifierTable()125 …void setIdentifierTable(IdentifierTable* table) { ASSERT(!isStatic()); m_identifierTableAndFlags.s… in setIdentifierTable()147 PtrAndFlags<IdentifierTable, UStringFlags> m_identifierTableAndFlags;
753 (KJS::IdentifierTable::~IdentifierTable):754 (KJS::IdentifierTable::add):5623 Make Identifier construction use an explicitly passed IdentifierTable.7554 Added a constructor explicitly taking JSGlobalData to access IdentifierTable. Actually,7558 (KJS::IdentifierTable::literalTable):7563 Combined IdentifierTable and LiteralIdentifierTable into a single class for simplicity.17507 an IdentifierTable lookup, which is now a per-thread instance. Since garbage collection can17516 Replaced isIdentifier with a pointer to IdentifierTable, so that destruction can be done17521 (KJS::IdentifierTable::IdentifierTable):17522 (KJS::IdentifierTable::~IdentifierTable):[all …]
4717 Allow custom memory allocation control for JavaScriptCore's IdentifierTable class4720 Inherits IdentifierTable class from FastAllocBase because it has been
29093 these tables reference IdentifierTable, which is always per-GlobalData.
954 Make Identifier construction use an explicitly passed IdentifierTable.
11496 Make Identifier construction use an explicitly passed IdentifierTable.