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/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"
159 success = detectCallDepth(root, infoSink, (compileOptions & SH_LIMIT_CALL_STACK_DEPTH) != 0);
294 bool TCompiler::detectCallDepth(TIntermNode* root, TInfoSink& infoSink, bool limitCallStackDepth)
296 DetectCallDepth detect(infoSink, limitCallStackDepth, maxCallStackDepth);
298 switch (detect.detectCallDepth()) {
299 case DetectCallDepth::kErrorNone:
301 case DetectCallDepth::kErrorMissingMain:
305 case DetectCallDepth::kErrorRecursion:
309 case DetectCallDepth::kErrorMaxDepthExceeded:

Completed in 80 milliseconds