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/sdk/
TimelineManager.js 62 * @param {number=} maxCallStackDepth
68 start: function(maxCallStackDepth, liveEvents, includeCounters, includeGPUEvents, callback)
72 if (Runtime.experiments.isEnabled("timelineJSCPUProfile") && maxCallStackDepth) {
78 this.target().timelineAgent().start(maxCallStackDepth, true, liveEvents, includeCounters, includeGPUEvents, callback);
  /external/chromium_org/third_party/angle/src/compiler/translator/
DetectCallDepth.h 26 DetectCallDepth(TInfoSink& infoSync, bool limitCallStackDepth, int maxCallStackDepth);
DetectCallDepth.cpp 72 DetectCallDepth::DetectCallDepth(TInfoSink& infoSink, bool limitCallStackDepth, int maxCallStackDepth)
76 maxDepth(limitCallStackDepth ? maxCallStackDepth : FunctionNode::kInfiniteCallDepth)
Compiler.cpp 105 maxCallStackDepth(0),
123 maxCallStackDepth = resources.MaxCallStackDepth;
357 << ":MaxCallStackDepth:" << compileResources.MaxCallStackDepth
390 DetectCallDepth detect(infoSink, limitCallStackDepth, maxCallStackDepth);
Compiler.h 154 int maxCallStackDepth;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
TimelineRecordFactory.cpp 47 PassRefPtr<TimelineEvent> TimelineRecordFactory::createGenericRecord(double startTime, int maxCallStackDepth, const String& type, PassRefPtr<JSONObject> data)
54 if (maxCallStackDepth) {
55 RefPtrWillBeRawPtr<ScriptCallStack> stackTrace = createScriptCallStack(maxCallStackDepth, true);
TimelineRecordFactory.h 51 static PassRefPtr<TypeBuilder::Timeline::TimelineEvent> createGenericRecord(double startTime, int maxCallStackDepth, const String& type, PassRefPtr<JSONObject> data);
InspectorTimelineAgent.h 131 virtual void start(ErrorString*, const int* maxCallStackDepth, const bool* bufferEvents, const String* liveEvents, const bool* includeCounters, const bool* includeGPUEvents) OVERRIDE;
InspectorTimelineAgent.cpp 353 void InspectorTimelineAgent::start(ErrorString* errorString, const int* maxCallStackDepth, const bool* bufferEvents, const String* liveEvents, const bool* includeCounters, const bool* includeGPUEvents)
364 if (maxCallStackDepth && *maxCallStackDepth >= 0)
365 m_maxCallStackDepth = *maxCallStackDepth;
    [all...]

Completed in 837 milliseconds