Lines Matching refs:shouldBeCalledOnce

650         if (shouldBeCalledOnce(ParamContext, P)) {  in findCapturesToTrack()
660 if (shouldBeCalledOnce(Function, Index)) { in findParamsToTrack()
889 if (shouldBeCalledOnce(CallOrMessage, Argument.index())) { in checkIndirectCall()
1036 bool shouldBeCalledOnce(const ParmVarDecl *Parameter) const { in shouldBeCalledOnce() function in __anon2223d6250111::CalledOnceChecker
1044 bool shouldBeCalledOnce(const DeclContext *ParamContext, in shouldBeCalledOnce() function in __anon2223d6250111::CalledOnceChecker
1048 return shouldBeCalledOnce(Function, ParamIndex); in shouldBeCalledOnce()
1051 return shouldBeCalledOnce(Method, ParamIndex); in shouldBeCalledOnce()
1053 return shouldBeCalledOnce(Param); in shouldBeCalledOnce()
1056 bool shouldBeCalledOnce(const BlockDecl *Block, unsigned ParamIndex) const { in shouldBeCalledOnce() function in __anon2223d6250111::CalledOnceChecker
1057 return shouldBeCalledOnce(Block->getParamDecl(ParamIndex)); in shouldBeCalledOnce()
1060 bool shouldBeCalledOnce(const FunctionDecl *Function, in shouldBeCalledOnce() function in __anon2223d6250111::CalledOnceChecker
1071 return shouldBeCalledOnce(Function->getParamDecl(ParamIndex)) || in shouldBeCalledOnce()
1076 bool shouldBeCalledOnce(const ObjCMethodDecl *Method, in shouldBeCalledOnce() function in __anon2223d6250111::CalledOnceChecker
1089 return shouldBeCalledOnce(Parameter) || in shouldBeCalledOnce()
1095 bool shouldBeCalledOnce(const CallExpr *Call, unsigned ParamIndex) const { in shouldBeCalledOnce() function in __anon2223d6250111::CalledOnceChecker
1097 return Function && shouldBeCalledOnce(Function, ParamIndex); in shouldBeCalledOnce()
1100 bool shouldBeCalledOnce(const ObjCMessageExpr *Message, in shouldBeCalledOnce() function in __anon2223d6250111::CalledOnceChecker
1104 shouldBeCalledOnce(Method, ParamIndex); in shouldBeCalledOnce()
1176 shouldBeCalledOnce(Call, ParamIndex); in shouldBlockArgumentBeCalledOnce()
1183 return shouldBeCalledOnce(Message, ParamIndex); in shouldBlockArgumentBeCalledOnce()