| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | UndefResultChecker.cpp | 92 << BinaryOperator::getOpcodeStr(B->getOpcode()) in checkPostStmt() 99 << BinaryOperator::getOpcodeStr(B->getOpcode()) in checkPostStmt()
|
| H A D | ExprInspectionChecker.cpp | 488 return (*Str + " " + BinaryOperator::getOpcodeStr(S->getOpcode()) + " " + in VisitSymIntExpr() 500 return (*Str1 + " " + BinaryOperator::getOpcodeStr(S->getOpcode()) + in VisitSymSymExpr() 510 return (UnaryOperator::getOpcodeStr(S->getOpcode()) + *Str).str(); in VisitUnarySymExpr()
|
| /freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/ |
| H A D | SValExplainer.h | 147 << std::string(BinaryOperator::getOpcodeStr(S->getOpcode())) << " " in VisitSymIntExpr() 157 std::string(BinaryOperator::getOpcodeStr(S->getOpcode())) + in VisitSymSymExpr() 162 return std::string(UnaryOperator::getOpcodeStr(S->getOpcode())) + " (" + in VisitUnarySymExpr()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | SymbolManager.cpp | 60 OS << ' ' << BinaryOperator::getOpcodeStr(Op) << ' '; in dumpToStreamImpl() 70 os << UnaryOperator::getOpcodeStr(Op); in dumpToStream()
|
| H A D | BugReporterVisitors.cpp | 3078 Out << BinaryOperator::getOpcodeStr(Op) << ' '; in VisitTrueTest()
|
| /freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchersInternal.h | 2223 return Node.getOpcodeStr(Node.getOpcode()); 2226 return Node.getOpcodeStr(); 2229 return Node.getOpcodeStr(); 2237 return BinaryOperator::getOpcodeStr(Node.getOperator()); 2266 return Node.getOpcodeStr(Node.getOpcode()); 2269 return Node.getOpcodeStr(); 2272 return Node.getOpcodeStr();
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | StmtPrinter.cpp | 1571 OS << UnaryOperator::getOpcodeStr(Node->getOpcode()); in VisitUnaryOperator() 1592 OS << UnaryOperator::getOpcodeStr(Node->getOpcode()); in VisitUnaryOperator() 1830 OS << " " << BinaryOperator::getOpcodeStr(Node->getOpcode()) << " "; in VisitBinaryOperator() 1836 OS << " " << BinaryOperator::getOpcodeStr(Node->getOpcode()) << " "; in VisitCompoundAssignOperator() 2114 OS << ' ' << BinaryOperator::getOpcodeStr(Decomposed.Opcode) << ' '; in VisitCXXRewrittenBinaryOperator() 2664 OS << " " << BinaryOperator::getOpcodeStr(E->getOperator()) << " "; in VisitCXXFoldExpr() 2668 OS << " " << BinaryOperator::getOpcodeStr(E->getOperator()) << " "; in VisitCXXFoldExpr()
|
| H A D | TextNodeDumper.cpp | 1625 << UnaryOperator::getOpcodeStr(Node->getOpcode()) << "'"; in VisitUnaryOperator() 1658 OS << " '" << BinaryOperator::getOpcodeStr(Node->getOpcode()) << "'"; in VisitBinaryOperator() 1665 OS << " '" << BinaryOperator::getOpcodeStr(Node->getOpcode()) in VisitCompoundAssignOperator()
|
| H A D | JSONNodeDumper.cpp | 1373 JOS.attribute("opcode", UnaryOperator::getOpcodeStr(UO->getOpcode())); in VisitUnaryOperator() 1379 JOS.attribute("opcode", BinaryOperator::getOpcodeStr(BO->getOpcode())); in VisitBinaryOperator()
|
| H A D | Expr.cpp | 1405 StringRef UnaryOperator::getOpcodeStr(Opcode Op) { in getOpcodeStr() function in UnaryOperator 2132 StringRef BinaryOperator::getOpcodeStr(Opcode Op) { in getOpcodeStr() function in BinaryOperator
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ExprCXX.h | 325 static StringRef getOpcodeStr(BinaryOperatorKind Op) { in getOpcodeStr() function 326 return BinaryOperator::getOpcodeStr(Op); in getOpcodeStr() 328 StringRef getOpcodeStr() const { in getOpcodeStr() function 329 return BinaryOperator::getOpcodeStr(getOpcode()); in getOpcodeStr()
|
| H A D | Expr.h | 2350 static StringRef getOpcodeStr(Opcode Op); 4030 static StringRef getOpcodeStr(Opcode Op); 4032 StringRef getOpcodeStr() const { return getOpcodeStr(getOpcode()); } in getOpcodeStr() function
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaTemplateVariadic.cpp | 1486 << BinaryOperator::getOpcodeStr(Operator); in BuildEmptyCXXFoldExpr()
|
| H A D | SemaOverload.cpp | 15138 << UnaryOperator::getOpcodeStr(Opc) in CreateOverloadedUnaryOp() 15141 UnaryOperator::getOpcodeStr(Opc), OpLoc); in CreateOverloadedUnaryOp() 15153 << UnaryOperator::getOpcodeStr(Opc) in CreateOverloadedUnaryOp() 15158 UnaryOperator::getOpcodeStr(Opc), OpLoc); in CreateOverloadedUnaryOp() 15360 << FnDecl->getReturnType() << BinaryOperator::getOpcodeStr(Opc) in CreateOverloadedBinOp() 15394 << BinaryOperator::getOpcodeStr(Opc) in CreateOverloadedBinOp() 15622 StringRef OpcStr = BinaryOperator::getOpcodeStr(Opc); in CreateOverloadedBinOp() 15630 << BinaryOperator::getOpcodeStr(Opc) in CreateOverloadedBinOp() 15658 << BinaryOperator::getOpcodeStr(Opc) in CreateOverloadedBinOp() 15663 *this, OCD_AmbiguousCandidates, Args, BinaryOperator::getOpcodeStr(Opc), in CreateOverloadedBinOp() [all …]
|
| H A D | SemaExpr.cpp | 8808 << BinaryOperator::getOpcodeStr(CondOpcode); in DiagnoseConditionalPrecedence() 8813 << BinaryOperator::getOpcodeStr(CondOpcode), in DiagnoseConditionalPrecedence() 15085 << BI->getOpcodeStr() << BinaryOperator::getOpcodeStr(Opc); in CreateBuiltinBinOp() 15263 StringRef OpStr = isLeftComp ? LHSBO->getOpcodeStr() : RHSBO->getOpcodeStr(); in DiagnoseBitwisePrecedence() 15270 << DiagRange << BinaryOperator::getOpcodeStr(Opc) << OpStr; in DiagnoseBitwisePrecedence() 15276 << BinaryOperator::getOpcodeStr(Opc), in DiagnoseBitwisePrecedence() 15291 << Bop->getOpcodeStr(), in EmitDiagnosticForLogicalAndInLogicalOr() 15337 << Bop->getOpcodeStr() << BinaryOperator::getOpcodeStr(Opc) in DiagnoseBitwiseOpInBitwiseOp() 15341 << Bop->getOpcodeStr(), in DiagnoseBitwiseOpInBitwiseOp() 15351 StringRef Op = Bop->getOpcodeStr(); in DiagnoseAdditionInShift() [all …]
|
| H A D | SemaConcept.cpp | 1318 << BinaryOperator::getOpcodeStr(BO->getOpcode()) in diagnoseWellFormedUnsatisfiedConstraintExpr()
|
| H A D | AnalysisBasedWarnings.cpp | 1059 Str = BO->getOpcodeStr(); in DiagUninitUse()
|
| H A D | SemaChecking.cpp | 11298 << E->getOpcodeStr() << OS.str() << *Result in CheckTautologicalComparison() 11333 << RhsConstant << OtherT << E->getOpcodeStr() << OS.str() << *Result in CheckTautologicalComparison()
|
| H A D | TreeTransform.h | 16475 << BO->getOpcodeStr(); in TransformCXXFoldExpr()
|
| H A D | SemaDeclCXX.cpp | 17631 << DiagSide[0].ValueString << Op->getOpcodeStr() in DiagnoseStaticAssertDetails()
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | UnsafeBufferUsage.cpp | 49 return "BinaryOperator(" + BO->getOpcodeStr().str() + ")"; in VisitBinaryOperator() 53 return "UnaryOperator(" + UO->getOpcodeStr(UO->getOpcode()).str() + ")"; in VisitUnaryOperator()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Testing/Demangle/ |
| H A D | DemangleTestCases.inc | 10244 …erator12getOpcodeStrENS_17UnaryOperatorKindE", "clang::UnaryOperator::getOpcodeStr(clang::UnaryOpe… 10275 …ator12getOpcodeStrENS_18BinaryOperatorKindE", "clang::BinaryOperator::getOpcodeStr(clang::BinaryOp…
|