/external/webkit/Source/JavaScriptCore/wtf/ |
D | WTFThreadData.h | 55 class IdentifierTable { 58 ~IdentifierTable(); 101 JSC::IdentifierTable* currentIdentifierTable() in currentIdentifierTable() 106 JSC::IdentifierTable* setCurrentIdentifierTable(JSC::IdentifierTable* identifierTable) in setCurrentIdentifierTable() 108 JSC::IdentifierTable* oldIdentifierTable = m_currentIdentifierTable; in setCurrentIdentifierTable() 129 JSC::IdentifierTable* m_defaultIdentifierTable; 130 JSC::IdentifierTable* m_currentIdentifierTable;
|
D | WTFThreadData.cpp | 42 , m_defaultIdentifierTable(new JSC::IdentifierTable()) in WTFThreadData()
|
/external/webkit/Source/JavaScriptCore/runtime/ |
D | Identifier.cpp | 40 IdentifierTable::~IdentifierTable() in ~IdentifierTable() 46 std::pair<HashSet<StringImpl*>::iterator, bool> IdentifierTable::add(StringImpl* value) in add() 53 std::pair<HashSet<StringImpl*>::iterator, bool> IdentifierTable::add(U value) in add() 60 IdentifierTable* createIdentifierTable() in createIdentifierTable() 62 return new IdentifierTable; in createIdentifierTable() 65 void deleteIdentifierTable(IdentifierTable* table) in deleteIdentifierTable() 123 IdentifierTable& identifierTable = *globalData->identifierTable; in add()
|
D | Identifier.h | 138 IdentifierTable* createIdentifierTable(); 139 void deleteIdentifierTable(IdentifierTable*);
|
D | JSGlobalData.h | 62 class IdentifierTable; variable 179 IdentifierTable* identifierTable;
|
D | JSGlobalData.cpp | 182 …IdentifierTable* existingEntryIdentifierTable = wtfThreadData().setCurrentIdentifierTable(identifi… in JSGlobalData()
|
/external/clang/include/clang/Basic/ |
D | Builtins.h | 28 class IdentifierTable; variable 74 void InitializeBuiltins(IdentifierTable &Table, const LangOptions& LangOpts); 132 void ForgetBuiltin(unsigned ID, IdentifierTable &Table);
|
D | IdentifierTable.h | 36 class IdentifierTable; variable 81 friend class IdentifierTable; variable 410 class IdentifierTable { 421 IdentifierTable(const LangOptions &LangOpts, 724 static Selector constructSetterName(IdentifierTable &Idents,
|
/external/clang/lib/Basic/ |
D | IdentifierTable.cpp | 74 IdentifierTable::IdentifierTable(const LangOptions &LangOpts, in IdentifierTable() function in IdentifierTable 123 const LangOptions &LangOpts, IdentifierTable &Table) { in AddKeyword() 159 IdentifierTable &Table) { in AddCXXOperatorKeyword() 168 IdentifierTable &Table) { in AddObjCKeyword() 174 void IdentifierTable::AddKeywords(const LangOptions &LangOpts) { in AddKeywords() 256 void IdentifierTable::PrintStats() const { in PrintStats() 469 SelectorTable::constructSetterName(IdentifierTable &Idents, in constructSetterName()
|
D | Builtins.cpp | 50 void Builtin::Context::InitializeBuiltins(IdentifierTable &Table, in InitializeBuiltins() 80 void Builtin::Context::ForgetBuiltin(unsigned ID, IdentifierTable &Table) { in ForgetBuiltin()
|
D | Android.mk | 31 IdentifierTable.cpp \
|
D | CMakeLists.txt | 11 IdentifierTable.cpp
|
/external/webkit/Source/JavaScriptGlue/ |
D | JSUtils.h | 88 IdentifierTable* m_storedIdentifierTable;
|
/external/webkit/Source/JavaScriptCore/API/ |
D | APIShims.h | 59 IdentifierTable* m_entryIdentifierTable;
|
D | JSContextRef.cpp | 127 …IdentifierTable* savedIdentifierTable = wtfThreadData().setCurrentIdentifierTable(globalData.ident…
|
/external/clang/lib/ARCMigrate/ |
D | TransGCCalls.cpp | 30 IdentifierTable &Ids = MigrateCtx.Pass.Ctx.Idents; in GCCollectableCallsChecker()
|
D | TransAPIUses.cpp | 41 IdentifierTable &ids = Pass.Ctx.Idents; in APIChecker()
|
/external/clang/include/clang/Frontend/ |
D | Utils.h | 37 class IdentifierTable; variable
|
/external/clang/include/clang/Lex/ |
D | Preprocessor.h | 142 mutable IdentifierTable Identifiers; 395 IdentifierTable &getIdentifierTable() { return Identifiers; } in getIdentifierTable()
|
/external/clang/include/clang/AST/ |
D | ASTContext.h | 55 class IdentifierTable; variable 389 IdentifierTable &Idents; 704 IdentifierTable &idents, SelectorTable &sels,
|
/external/clang/lib/Serialization/ |
D | ASTWriter.cpp | 2621 for (IdentifierTable::iterator ID = PP.getIdentifierTable().begin(), in WriteIdentifierTable() 2640 SmallString<4096> IdentifierTable; in WriteIdentifierTable() local 2644 llvm::raw_svector_ostream Out(IdentifierTable); in WriteIdentifierTable() 2661 Stream.EmitRecordWithBlob(IDTableAbbrev, Record, IdentifierTable.str()); in WriteIdentifierTable() 3249 IdentifierTable &Table = PP.getIdentifierTable(); in WriteASTCore() 3259 for (IdentifierTable::iterator ID = PP.getIdentifierTable().begin(), in WriteASTCore()
|
D | ASTReader.cpp | 2681 for (IdentifierTable::iterator Id = PP.getIdentifierTable().begin(), in ReadAST() 6270 IdentifierTable &ASTReader::getIdentifierTable() { in getIdentifierTable()
|
/external/clang/include/clang/Serialization/ |
D | ASTReader.h | 1494 IdentifierTable &getIdentifierTable();
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog-2010-05-24 | 2834 (JSC::IdentifierTable::~IdentifierTable): 2835 (JSC::IdentifierTable::add): 2853 (JSC::IdentifierTable::remove): 2854 (JSC::IdentifierTable::literalTable): 3802 global data, and those for workers) use a IdentifierTable provided (and owned) 3803 by wtfThreadData. This allow the lifetime of these IdentifierTable to match 3861 Unify JSC::IdentifierTable and WebCore::AtomicStringTable implementations. 3869 IdentifierTable & AtomicStringTable, expect for Identifier's literalTable, 4090 (JSC::IdentifierTable::~IdentifierTable): 4091 (JSC::IdentifierTable::add): [all …]
|
/external/clang/lib/Sema/ |
D | SemaLookup.cpp | 3811 for (IdentifierTable::iterator I = Context.Idents.begin(), in CorrectTypo()
|