Home
last modified time | relevance | path

Searched refs:IdentifierTable (Results 1 – 9 of 9) sorted by relevance

/external/webkit/JavaScriptCore/runtime/
DIdentifier.cpp35 class IdentifierTable : public FastAllocBase { class
37 ~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()
DJSGlobalData.h50 class IdentifierTable; variable
114 IdentifierTable* identifierTable;
DIdentifier.h139 IdentifierTable* createIdentifierTable();
140 void deleteIdentifierTable(IdentifierTable*);
DUString.h43 class IdentifierTable; variable
124 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;
/external/webkit/JavaScriptCore/
DChangeLog-2008-08-10753 (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 can
17516 Replaced isIdentifier with a pointer to IdentifierTable, so that destruction can be done
17521 (KJS::IdentifierTable::IdentifierTable):
17522 (KJS::IdentifierTable::~IdentifierTable):
[all …]
DChangeLog4717 Allow custom memory allocation control for JavaScriptCore's IdentifierTable class
4720 Inherits IdentifierTable class from FastAllocBase because it has been
DChangeLog-2009-06-1629093 these tables reference IdentifierTable, which is always per-GlobalData.
/external/webkit/JavaScriptGlue/
DChangeLog954 Make Identifier construction use an explicitly passed IdentifierTable.
/external/webkit/WebCore/
DChangeLog-2008-08-1011496 Make Identifier construction use an explicitly passed IdentifierTable.