HomeSort by relevance Sort by last modified time
    Searched refs:wtfThreadData (Results 1 - 14 of 14) sorted by null

  /external/webkit/Source/JavaScriptCore/API/
APIShims.h 32 #include <wtf/WTFThreadData.h>
40 , m_entryIdentifierTable(wtfThreadData().setCurrentIdentifierTable(globalData->identifierTable))
54 wtfThreadData().setCurrentIdentifierTable(m_entryIdentifierTable);
88 wtfThreadData().resetCurrentIdentifierTable();
94 wtfThreadData().setCurrentIdentifierTable(m_globalData->identifierTable);
JSContextRef.cpp 127 IdentifierTable* savedIdentifierTable = wtfThreadData().setCurrentIdentifierTable(globalData.identifierTable);
152 wtfThreadData().setCurrentIdentifierTable(savedIdentifierTable);
  /external/webkit/Source/JavaScriptCore/runtime/
InitializeThreading.cpp 39 #include <wtf/WTFThreadData.h>
56 wtfThreadData();
Completion.cpp 32 #include "WTFThreadData.h"
40 ASSERT(exec->globalData().identifierTable == wtfThreadData().currentIdentifierTable());
53 ASSERT(exec->globalData().identifierTable == wtfThreadData().currentIdentifierTable());
JSGlobalData.cpp 55 #include <wtf/WTFThreadData.h>
158 , identifierTable(globalDataType == Default ? wtfThreadData().currentIdentifierTable() : createIdentifierTable())
179 m_stack = wtfThreadData().stack();
182 IdentifierTable* existingEntryIdentifierTable = wtfThreadData().setCurrentIdentifierTable(identifierTable);
208 wtfThreadData().setCurrentIdentifierTable(existingEntryIdentifierTable);
JSGlobalData.h 49 #include <wtf/WTFThreadData.h>
110 // thread's default string uniquing table from wtfThreadData).
203 : wtfThreadData().stack();
Identifier.cpp 33 #include <wtf/WTFThreadData.h>
297 ASSERT_UNUSED(globalData, globalData->identifierTable == wtfThreadData().currentIdentifierTable());
JSCell.h 385 ASSERT(globalData()->identifierTable == wtfThreadData().currentIdentifierTable());
  /external/webkit/Source/JavaScriptCore/wtf/
WTFThreadData.h 89 class WTFThreadData {
90 WTF_MAKE_NONCOPYABLE(WTFThreadData);
92 WTFThreadData();
93 ~WTFThreadData();
135 static JS_EXPORTDATA ThreadSpecific<WTFThreadData>* staticData;
137 static JS_EXPORTDATA WTFThreadData* staticData;
139 friend WTFThreadData& wtfThreadData();
143 inline WTFThreadData& wtfThreadData()
    [all...]
  /external/webkit/Source/WebCore/platform/
ThreadGlobalData.cpp 33 #include <wtf/WTFThreadData.h>
75 wtfThreadData();
  /external/webkit/Source/JavaScriptGlue/
JSUtils.cpp 39 #include <JavaScriptCore/WTFThreadData.h>
436 , m_storedIdentifierTable(wtfThreadData().currentIdentifierTable())
438 wtfThreadData().setCurrentIdentifierTable(getThreadGlobalData()->identifierTable);
443 wtfThreadData().setCurrentIdentifierTable(m_storedIdentifierTable);
449 wtfThreadData().resetCurrentIdentifierTable();
454 wtfThreadData().setCurrentIdentifierTable(getThreadGlobalData()->identifierTable);
  /external/webkit/Source/JavaScriptCore/heap/
Heap.cpp 111 ASSERT(globalData()->identifierTable == wtfThreadData().currentIdentifierTable());
391 ASSERT(globalData()->identifierTable == wtfThreadData().currentIdentifierTable());
  /external/webkit/Source/JavaScriptCore/wtf/text/
AtomicString.cpp 29 #include <wtf/WTFThreadData.h>
44 WTFThreadData& data = wtfThreadData();
70 // Once possible we should make this non-lazy (constructed in WTFThreadData's constructor).
71 AtomicStringTable* table = wtfThreadData().atomicStringTable();
StringImpl.cpp 32 #include <wtf/WTFThreadData.h>
52 if (!wtfThreadData().currentIdentifierTable()->remove(this))

Completed in 119 milliseconds