Home | History | Annotate | Download | only in lazy

Lines Matching refs:callee

48     def updateTotalCallCount(self, callee):
52 if callee in self.comprehensiveCalledFunctionTable:
53 for child in self.comprehensiveCalledFunctionTable[callee]:
56 def updateFunctionCallMap(self, caller, callee):
60 if not callee in self.calledFunctionTable[caller]:
61 self.calledFunctionTable[caller].append(callee)
64 self.comprehensiveCalledFunctionTable[caller].append(callee)
66 def updateCalledFunctionList(self, callee):
69 self.updateTotalCallCount(callee)
71 if callee in self.calledFunctions:
74 self.calledFunctions.append(callee)
76 if callee in self.calledFunctionTable:
77 for subCallee in self.calledFunctionTable[callee]: