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

  /external/chromium_org/third_party/angle_dx11/src/compiler/
DetectCallDepth.cpp 7 #include "compiler/DetectCallDepth.h"
10 DetectCallDepth::FunctionNode::FunctionNode(const TString& fname)
16 const TString& DetectCallDepth::FunctionNode::getName() const
21 void DetectCallDepth::FunctionNode::addCallee(
22 DetectCallDepth::FunctionNode* callee)
31 int DetectCallDepth::FunctionNode::detectCallDepth(DetectCallDepth* detectCallDepth, int depth)
34 ASSERT(detectCallDepth);
    [all...]
Compiler.cpp 8 #include "compiler/DetectCallDepth.h"
147 success = detectCallDepth(root, infoSink, (compileOptions & SH_LIMIT_CALL_STACK_DEPTH) != 0);
262 bool TCompiler::detectCallDepth(TIntermNode* root, TInfoSink& infoSink, bool limitCallStackDepth)
264 DetectCallDepth detect(infoSink, limitCallStackDepth, maxCallStackDepth);
266 switch (detect.detectCallDepth()) {
267 case DetectCallDepth::kErrorNone:
269 case DetectCallDepth::kErrorMissingMain:
273 case DetectCallDepth::kErrorRecursion:
277 case DetectCallDepth::kErrorMaxDepthExceeded:

Completed in 822 milliseconds