Home
last modified time | relevance | path

Searched refs:SimpleCall (Results 1 – 4 of 4) sorted by relevance

/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DCallEvent.h435 class SimpleCall : public AnyFunctionCall {
437 SimpleCall(const CallExpr *CE, ProgramStateRef St, in SimpleCall() function
440 SimpleCall(const SimpleCall &Other) : AnyFunctionCall(Other) {} in SimpleCall() function
464 class FunctionCall : public SimpleCall {
470 : SimpleCall(CE, St, LCtx) {} in FunctionCall()
472 FunctionCall(const FunctionCall &Other) : SimpleCall(Other) {} in FunctionCall()
486 class BlockCall : public SimpleCall {
492 : SimpleCall(CE, St, LCtx) {} in BlockCall()
494 BlockCall(const BlockCall &Other) : SimpleCall(Other) {} in BlockCall()
DExprEngine.h46 class SimpleCall; variable
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/
DCheckerManager.h36 class SimpleCall; variable
/freebsd-9-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
DCallEvent.cpp392 const FunctionDecl *SimpleCall::getDecl() const { in getDecl()