Lines Matching refs:FunctionNode
34 AnalyzeCallDepth::FunctionNode::FunctionNode(TIntermAggregate *node) : node(node) in FunctionNode() function in AnalyzeCallDepth::FunctionNode
40 const TString &AnalyzeCallDepth::FunctionNode::getName() const in getName()
45 void AnalyzeCallDepth::FunctionNode::addCallee(AnalyzeCallDepth::FunctionNode *callee) in addCallee()
58 unsigned int AnalyzeCallDepth::FunctionNode::analyzeCallDepth(AnalyzeCallDepth *analyzeCallDepth) in analyzeCallDepth()
92 unsigned int AnalyzeCallDepth::FunctionNode::getLastDepth() const in getLastDepth()
97 void AnalyzeCallDepth::FunctionNode::removeIfUnreachable() in removeIfUnreachable()
177 currentFunction = new FunctionNode(node); in visitAggregate()
196 FunctionNode *function = findFunctionByName(node->getName()); in visitAggregate()
200 function = new FunctionNode(node); in visitAggregate()
224 FunctionNode *main = findFunctionByName("main("); in analyzeCallDepth()
253 AnalyzeCallDepth::FunctionNode *AnalyzeCallDepth::findFunctionByName(const TString &name) in findFunctionByName()