/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/ |
H A D | PtrTypesSemantics.cpp | 446 bool VisitCXXOperatorCallExpr(const CXXOperatorCallExpr *OCE) { in VisitCXXOperatorCallExpr() argument 447 if (!checkArguments(OCE)) in VisitCXXOperatorCallExpr() 449 auto *Callee = OCE->getCalleeDecl(); in VisitCXXOperatorCallExpr()
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | ThreadSafetyCommon.cpp | 462 const CXXOperatorCallExpr *OCE, CallingContext *Ctx) { in translateCXXOperatorCallExpr() argument 465 OverloadedOperatorKind k = OCE->getOperator(); in translateCXXOperatorCallExpr() 467 auto *E = translate(OCE->getArg(0), Ctx); in translateCXXOperatorCallExpr() 472 return translateCallExpr(cast<CallExpr>(OCE), Ctx); in translateCXXOperatorCallExpr()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaTemplateVariadic.cpp | 1261 auto *OCE = dyn_cast<CXXOperatorCallExpr>(E); in CheckFoldOperand() local 1262 if ((OCE && OCE->isInfixBinaryOp()) || isa<BinaryOperator>(E) || in CheckFoldOperand()
|
H A D | CheckExprLifetime.cpp | 366 } else if (auto *OCE = dyn_cast<CXXOperatorCallExpr>(Call)) { in handleGslAnnotatedTypes() local 367 FunctionDecl *Callee = OCE->getDirectCallee(); in handleGslAnnotatedTypes() 370 VisitPointerArg(Callee, OCE->getArg(0), in handleGslAnnotatedTypes()
|
H A D | SemaExpr.cpp | 15001 CXXOperatorCallExpr *OCE = dyn_cast<CXXOperatorCallExpr>(LHSExpr); in DiagnoseShiftCompare() local 15002 if (!OCE) in DiagnoseShiftCompare() 15005 FunctionDecl *FD = OCE->getDirectCallee(); in DiagnoseShiftCompare() 15016 SuggestParentheses(S, OCE->getOperatorLoc(), in DiagnoseShiftCompare() 15019 OCE->getSourceRange()); in DiagnoseShiftCompare() 15022 SourceRange(OCE->getArg(1)->getBeginLoc(), RHSExpr->getEndLoc())); in DiagnoseShiftCompare()
|
H A D | SemaOpenMP.cpp | 19737 } else if (auto *OCE = dyn_cast<CXXOperatorCallExpr>(SimpleExpr)) { in ProcessOpenMPDoacrossClauseCommon() local 19738 OOK = OCE->getOperator(); in ProcessOpenMPDoacrossClauseCommon() 19739 OOLoc = OCE->getOperatorLoc(); in ProcessOpenMPDoacrossClauseCommon() 19740 LHS = OCE->getArg(/*Arg=*/0)->IgnoreParenImpCasts(); in ProcessOpenMPDoacrossClauseCommon() 19741 RHS = OCE->getArg(/*Arg=*/1)->IgnoreParenImpCasts(); in ProcessOpenMPDoacrossClauseCommon()
|
H A D | SemaChecking.cpp | 13325 const auto *OCE = cast<CXXOperatorCallExpr>(expr); in CheckArrayAccess() local 13326 for (const auto *Arg : OCE->arguments()) in CheckArrayAccess()
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/ |
H A D | ThreadSafetyCommon.h | 423 til::SExpr *translateCXXOperatorCallExpr(const CXXOperatorCallExpr *OCE,
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | ExprEngine.cpp | 2131 const auto *OCE = cast<CXXOperatorCallExpr>(S); in Visit() local 2135 const Decl *Callee = OCE->getCalleeDecl(); in Visit() 2141 createTemporaryRegionIfNeeded(State, LCtx, OCE->getArg(0)); in Visit() 2143 Pred = Bldr.generateNode(OCE, Pred, NewState, /*tag=*/nullptr, in Visit()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGExprCXX.cpp | 265 if (auto *OCE = dyn_cast<CXXOperatorCallExpr>(CE)) { in EmitCXXMemberOrOperatorMemberCallExpr() local 266 if (OCE->isAssignmentOp()) { in EmitCXXMemberOrOperatorMemberCallExpr()
|
H A D | CGExpr.cpp | 5953 if (auto *OCE = dyn_cast<CXXOperatorCallExpr>(E)) { in EmitCall() local 5954 if (OCE->isAssignmentOp()) in EmitCall() 5957 switch (OCE->getOperator()) { in EmitCall() 5972 dyn_cast_if_present<CXXMethodDecl>(OCE->getCalleeDecl()); in EmitCall()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | Expr.cpp | 1639 if (const auto *OCE = dyn_cast<CXXOperatorCallExpr>(this)) in getBeginLoc() local 1640 return OCE->getBeginLoc(); in getBeginLoc() 1648 if (const auto *OCE = dyn_cast<CXXOperatorCallExpr>(this)) in getEndLoc() local 1649 return OCE->getEndLoc(); in getEndLoc()
|
H A D | ASTImporter.cpp | 7956 auto *OCE = cast<ObjCBridgedCastExpr>(E); in VisitExplicitCastExpr() local 7957 ExpectedSLoc ToLParenLocOrErr = import(OCE->getLParenLoc()); in VisitExplicitCastExpr() 7960 ExpectedSLoc ToBridgeKeywordLocOrErr = import(OCE->getBridgeKeywordLoc()); in VisitExplicitCastExpr() 7964 *ToLParenLocOrErr, OCE->getBridgeKind(), E->getCastKind(), in VisitExplicitCastExpr() 8653 if (const auto *OCE = dyn_cast<CXXOperatorCallExpr>(E)) { in VisitCallExpr() local 8655 Importer.getToContext(), OCE->getOperator(), ToCallee, ToArgs, ToType, in VisitCallExpr() 8656 OCE->getValueKind(), ToRParenLoc, OCE->getFPFeatures(), in VisitCallExpr() 8657 OCE->getADLCallKind()); in VisitCallExpr()
|
H A D | ExprConstant.cpp | 1989 } else if (const auto *OCE = in describe() local 1991 OCE->getArg(0)->printPretty(Out, /*Helper=*/nullptr, in describe() 8002 auto *OCE = dyn_cast<CXXOperatorCallExpr>(E); in handleCallExpr() local 8003 if (OCE && OCE->isAssignmentOp()) { in handleCallExpr() 8018 (MD->isImplicitObjectMemberFunction() || (OCE && MD->isStatic()))) { in handleCallExpr() 8036 if (Info.getLangOpts().CPlusPlus20 && OCE && in handleCallExpr() 8037 OCE->getOperator() == OO_Equal && MD->isTrivial() && in handleCallExpr()
|
/freebsd/contrib/wpa/hostapd/ |
H A D | ChangeLog | 146 * added RSSI-based association rejection from OCE
|
/freebsd/contrib/one-true-awk/testdir/ |
H A D | funstack.in | 22708 @Article{Lew:1978:OCE,
|