OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IdentifierTable
(Results
1 - 5
of
5
) sorted by null
/external/webkit/Source/JavaScriptCore/wtf/
WTFThreadData.h
55
class
IdentifierTable
{
58
~
IdentifierTable
();
101
JSC::
IdentifierTable
* currentIdentifierTable()
106
JSC::
IdentifierTable
* setCurrentIdentifierTable(JSC::
IdentifierTable
*
identifierTable
)
108
JSC::
IdentifierTable
* oldIdentifierTable = m_currentIdentifierTable;
109
m_currentIdentifierTable =
identifierTable
;
129
JSC::
IdentifierTable
* m_defaultIdentifierTable;
130
JSC::
IdentifierTable
* m_currentIdentifierTable
[
all
...]
/external/webkit/Source/JavaScriptCore/runtime/
Identifier.cpp
40
IdentifierTable
::~
IdentifierTable
()
46
std::pair<HashSet<StringImpl*>::iterator, bool>
IdentifierTable
::add(StringImpl* value)
53
std::pair<HashSet<StringImpl*>::iterator, bool>
IdentifierTable
::add(U value)
60
IdentifierTable
* createIdentifierTable()
62
return new
IdentifierTable
;
65
void deleteIdentifierTable(
IdentifierTable
* table)
123
IdentifierTable
&
identifierTable
= *globalData->
identifierTable
;
[
all
...]
/external/clang/lib/Basic/
IdentifierTable.cpp
1
//===---
IdentifierTable
.cpp - Hash table for identifier lookup -----------===//
11
//
IdentifierTable
interfaces.
15
#include "clang/Basic/
IdentifierTable
.h"
46
//
IdentifierTable
Implementation
69
IdentifierTable
::
IdentifierTable
(const LangOptions &LangOpts,
112
const LangOptions &LangOpts,
IdentifierTable
&Table) {
142
IdentifierTable
&Table) {
151
IdentifierTable
&Table) {
157
void
IdentifierTable
::AddKeywords(const LangOptions &LangOpts)
[
all
...]
/external/clang/include/clang/Basic/
IdentifierTable.h
1
//===---
IdentifierTable
.h - Hash table for identifier lookup ---*- C++ -*-===//
10
// This file defines the IdentifierInfo,
IdentifierTable
, and Selector
37
class
IdentifierTable
;
76
friend class
IdentifierTable
;
322
/// IdentifierInfoLookup - An abstract class used by
IdentifierTable
that
330
/// Unlike the version in
IdentifierTable
, this returns a pointer instead
361
///
IdentifierTable
- This table implements an efficient mapping from strings to
365
class
IdentifierTable
{
374
///
IdentifierTable
ctor - Create the identifier table, populating it with
376
IdentifierTable
(const LangOptions &LangOpts
[
all
...]
/external/clang/lib/Serialization/
ASTWriter.cpp
[
all
...]
Completed in 781 milliseconds