HomeSort by relevance Sort by last modified time
    Searched refs:IdentifierTable (Results 1 - 25 of 26) sorted by null

1 2

  /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...]
WTFThreadData.cpp 42 , m_defaultIdentifierTable(new JSC::IdentifierTable())
  /external/clang/include/clang/Basic/
Builtins.h 28 class IdentifierTable;
74 void InitializeBuiltins(IdentifierTable &Table, const LangOptions& LangOpts);
138 void ForgetBuiltin(unsigned ID, IdentifierTable &Table);
IdentifierTable.h 1 //===--- IdentifierTable.h - Hash table for identifier lookup ---*- C++ -*-===//
11 /// \brief Defines the clang::IdentifierInfo, clang::IdentifierTable, and
35 class IdentifierTable;
81 friend class IdentifierTable;
377 /// IdentifierInfoLookup - An abstract class used by IdentifierTable that
385 /// Unlike the version in IdentifierTable, this returns a pointer instead
421 class IdentifierTable {
432 IdentifierTable(const LangOptions &LangOpts,
735 static Selector constructSetterName(IdentifierTable &Idents,
  /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...]
Identifier.h 138 IdentifierTable* createIdentifierTable();
139 void deleteIdentifierTable(IdentifierTable*);
JSGlobalData.h 62 class IdentifierTable;
179 IdentifierTable* identifierTable;
JSGlobalData.cpp 158 , identifierTable(globalDataType == Default ? wtfThreadData().currentIdentifierTable() : createIdentifierTable())
182 IdentifierTable* existingEntryIdentifierTable = wtfThreadData().setCurrentIdentifierTable(identifierTable);
307 deleteIdentifierTable(identifierTable);
  /external/clang/lib/Basic/
Android.mk 30 IdentifierTable.cpp \
Builtins.cpp 15 #include "clang/Basic/IdentifierTable.h"
50 void Builtin::Context::InitializeBuiltins(IdentifierTable &Table,
80 void Builtin::Context::ForgetBuiltin(unsigned ID, IdentifierTable &Table) {
IdentifierTable.cpp 1 //===--- IdentifierTable.cpp - Hash table for identifier lookup -----------===//
11 // IdentifierTable interfaces.
15 #include "clang/Basic/IdentifierTable.h"
51 // IdentifierTable Implementation
74 IdentifierTable::IdentifierTable(const LangOptions &LangOpts,
123 const LangOptions &LangOpts, IdentifierTable &Table) {
159 IdentifierTable &Table) {
168 IdentifierTable &Table) {
174 void IdentifierTable::AddKeywords(const LangOptions &LangOpts)
    [all...]
  /external/clang/include/clang/Frontend/
Utils.h 37 class IdentifierTable;
  /external/clang/lib/ARCMigrate/
TransGCCalls.cpp 30 IdentifierTable &Ids = MigrateCtx.Pass.Ctx.Idents;
TransAPIUses.cpp 41 IdentifierTable &ids = Pass.Ctx.Idents;
  /external/webkit/Source/JavaScriptCore/API/
APIShims.h 40 , m_entryIdentifierTable(wtfThreadData().setCurrentIdentifierTable(globalData->identifierTable))
59 IdentifierTable* m_entryIdentifierTable;
94 wtfThreadData().setCurrentIdentifierTable(m_globalData->identifierTable);
JSContextRef.cpp 127 IdentifierTable* savedIdentifierTable = wtfThreadData().setCurrentIdentifierTable(globalData.identifierTable);
  /external/webkit/Source/JavaScriptGlue/
JSUtils.h 88 IdentifierTable* m_storedIdentifierTable;
  /external/clang/lib/Serialization/
GlobalModuleIndex.cpp 768 SmallString<4096> IdentifierTable;
771 llvm::raw_svector_ostream Out(IdentifierTable);
788 Stream.EmitRecordWithBlob(IDTableAbbrev, Record, IdentifierTable.str());
ASTWriter.cpp     [all...]
ASTReader.cpp     [all...]
  /external/clang/include/clang/AST/
ASTContext.h 30 #include "clang/Basic/IdentifierTable.h"
57 class IdentifierTable;
380 IdentifierTable &Idents;
773 IdentifierTable &idents, SelectorTable &sels,
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 19 #include "clang/Basic/IdentifierTable.h"
174 mutable IdentifierTable Identifiers;
177 /// IdentifierTable above, this table *isn't* populated by the preprocessor.
179 /// conceptually similar the IdentifierTable. In addition, the current control
438 IdentifierTable &getIdentifierTable() { return Identifiers; }
    [all...]
  /external/clang/lib/Format/
Format.cpp     [all...]
  /external/clang/include/clang/Serialization/
ASTReader.h 23 #include "clang/Basic/IdentifierTable.h"
    [all...]
  /external/clang/lib/Sema/
SemaLookup.cpp     [all...]

Completed in 785 milliseconds

1 2