Home
last modified time | relevance | path

Searched refs:callType (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/bsd/elftosb/dist/elftosb2/
H A DElftosbAST.h967 CallStatementASTNode(call_type_t callType=kCallType)
968 : StatementASTNode(), m_type(callType), m_target(), m_arg(), m_isHAB(false) in StatementASTNode()
972 CallStatementASTNode(call_type_t callType, ASTNode * target, ASTNode * arg) in CallStatementASTNode() argument
973 : StatementASTNode(), m_type(callType), m_target(target), m_arg(arg), m_isHAB(false) in CallStatementASTNode()
985 inline void setCallType(call_type_t callType) { m_type = callType; } in setCallType() argument
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaChecking.cpp7718 bool inFunctionCall, Sema::VariadicCallType callType, in CheckFormatHandler() argument
7724 inFunctionCall(inFunctionCall), CallType(callType), in CheckFormatHandler()