OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:detectCallDepth
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/angle/src/compiler/translator/
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:
Completed in 63 milliseconds