OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LiteralIdentifierTable
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/JavaScriptCore/wtf/
WTFThreadData.h
53
typedef HashMap<const char*, RefPtr<StringImpl>, PtrHash<const char*> >
LiteralIdentifierTable
;
73
LiteralIdentifierTable
& literalTable() { return m_literalTable; }
77
LiteralIdentifierTable
m_literalTable;
/external/webkit/Source/JavaScriptCore/runtime/
Identifier.cpp
124
LiteralIdentifierTable
&
literalIdentifierTable
= identifierTable.literalTable();
126
const
LiteralIdentifierTable
::iterator& iter =
literalIdentifierTable
.find(c);
127
if (iter !=
literalIdentifierTable
.end())
136
literalIdentifierTable
.add(c, addedString.get());
Completed in 82 milliseconds