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

  /external/webkit/JavaScriptCore/runtime/
ArrayPrototype.cpp 158 HashSet<JSObject*>& arrayVisitedElements = exec->globalData().arrayVisitedElements;
159 if (arrayVisitedElements.size() >= MaxSecondaryThreadReentryDepth) {
160 if (!isMainThread() || arrayVisitedElements.size() >= MaxMainThreadReentryDepth)
164 bool alreadyVisited = !arrayVisitedElements.add(thisObj).second;
192 arrayVisitedElements.remove(thisObj);
216 HashSet<JSObject*>& arrayVisitedElements = exec->globalData().arrayVisitedElements;
217 if (arrayVisitedElements.size() >= MaxSecondaryThreadReentryDepth) {
218 if (!isMainThread() || arrayVisitedElements.size() >= MaxMainThreadReentryDepth
    [all...]
JSGlobalData.h 172 HashSet<JSObject*> arrayVisitedElements;

Completed in 31 milliseconds