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

  /external/chromium_org/third_party/angle/src/compiler/translator/
DetectCallDepth.h 17 class DetectCallDepth : public TIntermTraverser {
26 DetectCallDepth(TInfoSink& infoSync, bool limitCallStackDepth, int maxCallStackDepth);
27 ~DetectCallDepth();
33 ErrorCode detectCallDepth();
48 int detectCallDepth(DetectCallDepth* detectCallDepth, int depth);
74 DetectCallDepth(const DetectCallDepth&);
75 void operator=(const DetectCallDepth&)
    [all...]
DetectCallDepth.cpp 7 #include "compiler/translator/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 9 #include "compiler/translator/DetectCallDepth.h"
192 success = detectCallDepth(root, infoSink, (compileOptions & SH_LIMIT_CALL_STACK_DEPTH) != 0);
388 bool TCompiler::detectCallDepth(TIntermNode* root, TInfoSink& infoSink, bool limitCallStackDepth)
390 DetectCallDepth detect(infoSink, limitCallStackDepth, maxCallStackDepth);
392 switch (detect.detectCallDepth())
394 case DetectCallDepth::kErrorNone:
396 case DetectCallDepth::kErrorMissingMain:
400 case DetectCallDepth::kErrorRecursion:
404 case DetectCallDepth::kErrorMaxDepthExceeded:
Compiler.h 98 bool detectCallDepth(TIntermNode* root, TInfoSink& infoSink, bool limitCallStackDepth);

Completed in 58 milliseconds