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

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TimelineManager.js 59 * @param {number=} maxCallStackDepth
64 start: function(maxCallStackDepth, includeDomCounters, includeGPUEvents, callback)
68 TimelineAgent.start(maxCallStackDepth, /* bufferEvents */false, includeDomCounters, includeGPUEvents, callback);
  /external/chromium_org/third_party/angle/src/compiler/
DetectCallDepth.h 28 DetectCallDepth(TInfoSink& infoSync, bool limitCallStackDepth, int maxCallStackDepth);
DetectCallDepth.cpp 72 DetectCallDepth::DetectCallDepth(TInfoSink& infoSink, bool limitCallStackDepth, int maxCallStackDepth)
76 maxDepth(limitCallStackDepth ? maxCallStackDepth : FunctionNode::kInfiniteCallDepth)
ShHandle.h 127 int maxCallStackDepth;
Compiler.cpp 78 maxCallStackDepth(0),
98 maxCallStackDepth = resources.MaxCallStackDepth;
296 DetectCallDepth detect(infoSink, limitCallStackDepth, maxCallStackDepth);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
TimelineRecordFactory.cpp 45 PassRefPtr<JSONObject> TimelineRecordFactory::createGenericRecord(double startTime, int maxCallStackDepth, const String& type)
50 if (maxCallStackDepth) {
51 RefPtr<ScriptCallStack> stackTrace = createScriptCallStack(maxCallStackDepth, true);
TimelineRecordFactory.h 50 static PassRefPtr<JSONObject> createGenericRecord(double startTime, int maxCallStackDepth, const String& type);
InspectorTimelineAgent.cpp 310 void InspectorTimelineAgent::start(ErrorString* errorString, const int* maxCallStackDepth, const bool* bufferEvents, const bool* includeDomCounters, const bool* includeGPUEvents)
322 if (maxCallStackDepth && *maxCallStackDepth >= 0)
323 m_maxCallStackDepth = *maxCallStackDepth;
    [all...]
InspectorTimelineAgent.h 149 virtual void start(ErrorString*, const int* maxCallStackDepth, const bool* bufferEvents, const bool* includeDomCounters, const bool* includeGPUEvents);

Completed in 1310 milliseconds