Home
last modified time | relevance | path

Searched refs:isCommaOp (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp43 if (!BOComma->isCommaOp()) in canExprResolveTo()
130 if (BO->isCommaOp()) in resolveExpr()
H A DCFG.cpp5174 if (E->isCommaOp()) { in VisitBinaryOperatorForTemporaryDtors()
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DDataflowEnvironment.cpp450 if (auto *Op = dyn_cast<BinaryOperator>(E); Op && Op->isCommaOp()) { in PropagateResultObject()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h4069 static bool isCommaOp(Opcode Opc) { return Opc == BO_Comma; } in isCommaOp() function
4070 bool isCommaOp() const { return isCommaOp(getOpcode()); } in isCommaOp() function
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DCompiler.cpp808 if (BO->isCommaOp()) { in VisitBinaryOperator()
1355 assert(!E->isCommaOp() && in VisitVectorBinOp()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp4928 if (isa<BinaryOperator>(E) && cast<BinaryOperator>(E)->isCommaOp()) { in ActOnArraySubscriptExpr()
4995 if ((isa<BinaryOperator>(idx) && cast<BinaryOperator>(idx)->isCommaOp()) || in ActOnArraySubscriptExpr()
H A DSemaChecking.cpp12755 } else if (BO->isCommaOp() && !S.getLangOpts().CPlusPlus) { in AnalyzeImplicitConversions()