OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FunctionNode
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/angle/src/compiler/translator/
DetectCallDepth.h
36
class
FunctionNode
{
40
FunctionNode
(const TString& fname);
45
void addCallee(
FunctionNode
* callee);
58
TVector<
FunctionNode
*> callees;
63
ErrorCode detectCallDepthForFunction(
FunctionNode
* func);
64
FunctionNode
* findFunctionByName(const TString& name);
69
TVector<
FunctionNode
*> functions;
70
FunctionNode
* currentFunction;
DetectCallDepth.cpp
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)
67
void DetectCallDepth::
FunctionNode
::reset()
76
maxDepth(limitCallStackDepth ? maxCallStackDepth :
FunctionNode
::kInfiniteCallDepth)
92
// Don't add
FunctionNode
here because node->getName() is the
100
currentFunction = new
FunctionNode
(node->getName())
[
all
...]
Completed in 137 milliseconds