| /external/llvm/unittests/Analysis/ |
| AliasAnalysisTest.cpp | 182 auto *Add1 = BinaryOperator::CreateAdd(Value, Value, "add", BB);
|
| /external/llvm/include/llvm/IR/ |
| PatternMatch.h | 67 inline class_match<BinaryOperator> m_BinOp() { 68 return class_match<BinaryOperator>(); 302 inline bind_ty<BinaryOperator> m_BinOp(BinaryOperator *&I) { return I; } 399 if (auto *I = dyn_cast<BinaryOperator>(V)) 423 auto *I = cast<BinaryOperator>(V); 645 auto *I = cast<BinaryOperator>(V); [all...] |
| InstVisitor.h | 238 RetTy visitBinaryOperator(BinaryOperator &I) { DELEGATE(Instruction);}
|
| /external/clang/lib/StaticAnalyzer/Checkers/ |
| LocalizationChecker.cpp | [all...] |
| IvarInvalidationChecker.cpp | 165 void VisitBinaryOperator(const BinaryOperator *BO); 672 const BinaryOperator *BO) {
|
| /external/llvm/lib/CodeGen/ |
| CodeGenPrepare.cpp | [all...] |
| /external/llvm/lib/Transforms/Scalar/ |
| IndVarSimplify.cpp | 293 auto *Incr = dyn_cast<BinaryOperator>(PN->getIncomingValue(BackEdge)); 438 BinaryOperator::CreateAdd(NewPHI, ConstantInt::get(Int32Ty, IncValue), [all...] |
| LoopIdiomRecognize.cpp | 801 BinaryOperator *SubOneOp; 803 if ((SubOneOp = dyn_cast<BinaryOperator>(DefX2->getOperand(0)))) 807 SubOneOp = dyn_cast<BinaryOperator>(DefX2->getOperand(1)); [all...] |
| JumpThreading.cpp | 161 bool ProcessBranchOnXOR(BinaryOperator *BO); 526 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I)) { [all...] |
| LoopRerollPass.cpp | 653 BinaryOperator *BO = dyn_cast<BinaryOperator>(U); 678 if (auto *BO = dyn_cast<BinaryOperator>(I)) { [all...] |
| /frameworks/compile/slang/ |
| slang_rs_object_ref_count.cpp | 371 // (BinaryOperator 'int' '<' 440 clang::BinaryOperator *Cond = 441 new(C) clang::BinaryOperator(RefrsIntIterRValue, 792 clang::BinaryOperator *Init = 793 new(C) clang::BinaryOperator(RefrsIntIter, 805 clang::BinaryOperator *Cond = 806 new(C) clang::BinaryOperator(RefrsIntIter, [all...] |
| /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
| PathDiagnostic.h | 32 class BinaryOperator; 219 static PathDiagnosticLocation createOperatorLoc(const BinaryOperator *BO,
|
| /libcore/ojluni/src/main/java/java/util/stream/ |
| IntPipeline.java | 35 import java.util.function.BinaryOperator; 469 BinaryOperator<R> operator = (left, right) -> {
|
| /external/clang/lib/AST/ |
| ASTDumper.cpp | 504 void VisitBinaryOperator(const BinaryOperator *Node); [all...] |
| ExprConstant.cpp | [all...] |
| /external/clang/lib/Analysis/ |
| ThreadSafetyCommon.cpp | 224 return translateBinaryOperator(cast<BinaryOperator>(S), Ctx); 455 const BinaryOperator *BO, 466 const BinaryOperator *BO, 491 til::SExpr *SExprBuilder::translateBinaryOperator(const BinaryOperator *BO, [all...] |
| ThreadSafety.cpp | 559 void VisitBinaryOperator(BinaryOperator *BO); 584 void VarMapBuilder::VisitBinaryOperator(BinaryOperator *BO) { [all...] |
| /external/clang/lib/StaticAnalyzer/Core/ |
| PathDiagnostic.cpp | 608 PathDiagnosticLocation::createOperatorLoc(const BinaryOperator *BO, 721 BinaryOperatorKind Op = cast<BinaryOperator>(S)->getOpcode(); 759 if (const BinaryOperator *B = dyn_cast<BinaryOperator>(S)) [all...] |
| /external/llvm/lib/Analysis/ |
| InlineCost.cpp | 147 bool visitSub(BinaryOperator &I); 148 bool visitBinaryOperator(BinaryOperator &I); 608 bool CallAnalyzer::visitSub(BinaryOperator &I) { 635 bool CallAnalyzer::visitBinaryOperator(BinaryOperator &I) { [all...] |
| LazyValueInfo.cpp | 605 if ((!isa<BinaryOperator>(BBI) && !isa<CastInst>(BBI)) || 616 BinaryOperator *BO = dyn_cast<BinaryOperator>(BBI); 833 if (isa<BinaryOperator>(BBI)) { [all...] |
| /external/clang/include/clang/Analysis/ |
| CFG.h | 50 class BinaryOperator; 708 virtual void compareAlwaysTrue(const BinaryOperator *B, bool isAlwaysTrue) {} 709 virtual void compareBitwiseEquality(const BinaryOperator *B, [all...] |
| /external/clang/include/clang/ASTMatchers/ |
| ASTMatchers.h | [all...] |
| /external/clang/lib/Sema/ |
| SemaExpr.cpp | [all...] |
| /external/clang/lib/ARCMigrate/ |
| TransProperties.cpp | 291 bool VisitBinAssign(BinaryOperator *E) {
|
| /external/clang/lib/Format/ |
| FormatToken.h | 32 TYPE(BinaryOperator) \
|