Home
last modified time | relevance | path

Searched refs:OCE (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DPtrTypesSemantics.cpp446 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 DThreadSafetyCommon.cpp462 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 DSemaTemplateVariadic.cpp1261 auto *OCE = dyn_cast<CXXOperatorCallExpr>(E); in CheckFoldOperand() local
1262 if ((OCE && OCE->isInfixBinaryOp()) || isa<BinaryOperator>(E) || in CheckFoldOperand()
H A DCheckExprLifetime.cpp366 } 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 DSemaExpr.cpp15001 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 DSemaOpenMP.cpp19737 } 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 DSemaChecking.cpp13325 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 DThreadSafetyCommon.h423 til::SExpr *translateCXXOperatorCallExpr(const CXXOperatorCallExpr *OCE,
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp2131 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 DCGExprCXX.cpp265 if (auto *OCE = dyn_cast<CXXOperatorCallExpr>(CE)) { in EmitCXXMemberOrOperatorMemberCallExpr() local
266 if (OCE->isAssignmentOp()) { in EmitCXXMemberOrOperatorMemberCallExpr()
H A DCGExpr.cpp5953 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 DExpr.cpp1639 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 DASTImporter.cpp7956 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 DExprConstant.cpp1989 } 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 DChangeLog146 * added RSSI-based association rejection from OCE
/freebsd/contrib/one-true-awk/testdir/
H A Dfunstack.in22708 @Article{Lew:1978:OCE,