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"
45
//
IdentifierTable
Implementation
68
IdentifierTable
::
IdentifierTable
(const LangOptions &LangOpts,
111
const LangOptions &LangOpts,
IdentifierTable
&Table) {
138
IdentifierTable
&Table) {
147
IdentifierTable
&Table) {
153
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
36
class
IdentifierTable
;
74
friend class
IdentifierTable
;
306
/// IdentifierInfoLookup - An abstract class used by
IdentifierTable
that
314
/// Unlike the version in
IdentifierTable
, this returns a pointer instead
345
///
IdentifierTable
- This table implements an efficient mapping from strings to
349
class
IdentifierTable
{
358
///
IdentifierTable
ctor - Create the identifier table, populating it with
360
IdentifierTable
(const LangOptions &LangOpts
[
all
...]
/external/clang/lib/Serialization/
ASTWriter.cpp
[
all
...]
Completed in 40 milliseconds