| /llvm-project-15.0.7/clang/unittests/Tooling/ |
| H A D | RecursiveASTVisitorTestPostOrderVisitor.cpp | 34 VisitedNodes.push_back(std::string(Op->getOpcodeStr(Op->getOpcode()))); in VisitUnaryOperator() 39 VisitedNodes.push_back(std::string(Op->getOpcodeStr())); in VisitBinaryOperator()
|
| /llvm-project-15.0.7/clang/unittests/Tooling/RecursiveASTVisitorTests/ |
| H A D | CallbacksCommon.h | 45 return (ClassName + "(" + UnaryOperator::getOpcodeStr(UO->getOpcode()) + in stmtToString() 50 return (ClassName + "(" + BinaryOperator::getOpcodeStr(BO->getOpcode()) + in stmtToString()
|
| /llvm-project-15.0.7/clang/include/clang/StaticAnalyzer/Checkers/ |
| H A D | SValExplainer.h | 124 << std::string(BinaryOperator::getOpcodeStr(S->getOpcode())) << " " in VisitSymIntExpr() 134 std::string(BinaryOperator::getOpcodeStr(S->getOpcode())) + in VisitSymSymExpr() 139 return std::string(UnaryOperator::getOpcodeStr(S->getOpcode())) + " (" + in VisitUnarySymExpr()
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | UndefResultChecker.cpp | 113 << BinaryOperator::getOpcodeStr(B->getOpcode()) in checkPostStmt() 169 << BinaryOperator::getOpcodeStr(B->getOpcode()) in checkPostStmt()
|
| H A D | ExprInspectionChecker.cpp | 489 return (*Str + " " + BinaryOperator::getOpcodeStr(S->getOpcode()) + " " + in VisitSymIntExpr() 501 return (*Str1 + " " + BinaryOperator::getOpcodeStr(S->getOpcode()) + in VisitSymSymExpr() 511 return (UnaryOperator::getOpcodeStr(S->getOpcode()) + *Str).str(); in VisitUnarySymExpr()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/abseil/ |
| H A D | DurationComparisonCheck.cpp | 52 Binop->getOpcodeStr() + " " + in check()
|
| H A D | TimeComparisonCheck.cpp | 54 Binop->getOpcodeStr() + " " + in check()
|
| /llvm-project-15.0.7/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchersInternal.h | 2196 return Node.getOpcodeStr(Node.getOpcode()); 2199 return Node.getOpcodeStr(); 2202 return Node.getOpcodeStr(); 2210 return UnaryOperator::getOpcodeStr(*optUnaryOpcode); 2212 return BinaryOperator::getOpcodeStr(*optBinaryOpcode); 2241 return Node.getOpcodeStr(Node.getOpcode()); 2244 return Node.getOpcodeStr(); 2247 return Node.getOpcodeStr(); 2255 return UnaryOperator::getOpcodeStr(*optUnaryOpcode); 2257 return BinaryOperator::getOpcodeStr(*optBinaryOpcode);
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/ |
| H A D | SuspiciousStringCompareCheck.cpp | 201 << Decl << BinOp->getOpcodeStr(); in check()
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/ |
| H A D | DumpAST.cpp | 232 return BO->getOpcodeStr().str(); in getDetail() 234 return UnaryOperator::getOpcodeStr(UO->getOpcode()).str(); in getDetail()
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/ |
| H A D | SymbolManager.cpp | 64 OS << ' ' << BinaryOperator::getOpcodeStr(Op) << ' '; in dumpToStreamImpl() 74 os << UnaryOperator::getOpcodeStr(Op); in dumpToStream()
|
| H A D | BugReporterVisitors.cpp | 2913 Out << BinaryOperator::getOpcodeStr(Op) << ' '; in VisitTrueTest()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/ |
| H A D | SimplifyBooleanExprCheck.cpp | 63 return BinOp->getOpcodeStr(NegatableOp.second); in negatedOperator() 65 return BinOp->getOpcodeStr(NegatableOp.first); in negatedOperator() 844 BinaryOperator::getOpcodeStr( in flipDemorganBinaryOperator()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | StmtPrinter.cpp | 1367 OS << UnaryOperator::getOpcodeStr(Node->getOpcode()); in VisitUnaryOperator() 1388 OS << UnaryOperator::getOpcodeStr(Node->getOpcode()); in VisitUnaryOperator() 1622 OS << " " << BinaryOperator::getOpcodeStr(Node->getOpcode()) << " "; in VisitBinaryOperator() 1628 OS << " " << BinaryOperator::getOpcodeStr(Node->getOpcode()) << " "; in VisitCompoundAssignOperator() 1906 OS << ' ' << BinaryOperator::getOpcodeStr(Decomposed.Opcode) << ' '; in VisitCXXRewrittenBinaryOperator() 2448 OS << " " << BinaryOperator::getOpcodeStr(E->getOperator()) << " "; in VisitCXXFoldExpr() 2452 OS << " " << BinaryOperator::getOpcodeStr(E->getOperator()) << " "; in VisitCXXFoldExpr()
|
| H A D | TextNodeDumper.cpp | 1127 << UnaryOperator::getOpcodeStr(Node->getOpcode()) << "'"; in VisitUnaryOperator() 1159 OS << " '" << BinaryOperator::getOpcodeStr(Node->getOpcode()) << "'"; in VisitBinaryOperator() 1166 OS << " '" << BinaryOperator::getOpcodeStr(Node->getOpcode()) in VisitCompoundAssignOperator()
|
| H A D | JSONNodeDumper.cpp | 1225 JOS.attribute("opcode", UnaryOperator::getOpcodeStr(UO->getOpcode())); in VisitUnaryOperator() 1231 JOS.attribute("opcode", BinaryOperator::getOpcodeStr(BO->getOpcode())); in VisitBinaryOperator()
|
| H A D | Expr.cpp | 1306 StringRef UnaryOperator::getOpcodeStr(Opcode Op) { in getOpcodeStr() function in UnaryOperator 2040 StringRef BinaryOperator::getOpcodeStr(Opcode Op) { in getOpcodeStr() function in BinaryOperator
|
| /llvm-project-15.0.7/clang/lib/Tooling/ASTDiff/ |
| H A D | ASTDiff.cpp | 449 return std::string(UnaryOperator::getOpcodeStr(U->getOpcode())); in getStmtValue() 451 return std::string(B->getOpcodeStr()); in getStmtValue()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | ExprCXX.h | 324 static StringRef getOpcodeStr(BinaryOperatorKind Op) { in getOpcodeStr() function 325 return BinaryOperator::getOpcodeStr(Op); in getOpcodeStr() 327 StringRef getOpcodeStr() const { in getOpcodeStr() function 328 return BinaryOperator::getOpcodeStr(getOpcode()); in getOpcodeStr()
|
| H A D | Expr.h | 2277 static StringRef getOpcodeStr(Opcode Op); 3870 static StringRef getOpcodeStr(Opcode Op); 3872 StringRef getOpcodeStr() const { return getOpcodeStr(getOpcode()); } in getOpcodeStr() function
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaTemplateVariadic.cpp | 1282 << BinaryOperator::getOpcodeStr(Operator); in BuildEmptyCXXFoldExpr()
|
| H A D | SemaOverload.cpp | 13556 << UnaryOperator::getOpcodeStr(Opc) in CreateOverloadedUnaryOp() 13559 UnaryOperator::getOpcodeStr(Opc), OpLoc); in CreateOverloadedUnaryOp() 13565 << UnaryOperator::getOpcodeStr(Opc) in CreateOverloadedUnaryOp() 13567 *this, OCD_AllCandidates, ArgsArray, UnaryOperator::getOpcodeStr(Opc), in CreateOverloadedUnaryOp() 13771 << FnDecl->getReturnType() << BinaryOperator::getOpcodeStr(Opc) in CreateOverloadedBinOp() 13805 << BinaryOperator::getOpcodeStr(Opc) in CreateOverloadedBinOp() 13992 StringRef OpcStr = BinaryOperator::getOpcodeStr(Opc); in CreateOverloadedBinOp() 14000 << BinaryOperator::getOpcodeStr(Opc) in CreateOverloadedBinOp() 14028 << BinaryOperator::getOpcodeStr(Opc) in CreateOverloadedBinOp() 14033 *this, OCD_AmbiguousCandidates, Args, BinaryOperator::getOpcodeStr(Opc), in CreateOverloadedBinOp() [all …]
|
| H A D | SemaConcept.cpp | 621 << BinaryOperator::getOpcodeStr(BO->getOpcode()) in diagnoseWellFormedUnsatisfiedConstraintExpr()
|
| H A D | SemaExpr.cpp | 9044 << BinaryOperator::getOpcodeStr(CondOpcode); in DiagnoseConditionalPrecedence() 9049 << BinaryOperator::getOpcodeStr(CondOpcode), in DiagnoseConditionalPrecedence() 15134 StringRef OpStr = isLeftComp ? LHSBO->getOpcodeStr() : RHSBO->getOpcodeStr(); in DiagnoseBitwisePrecedence() 15141 << DiagRange << BinaryOperator::getOpcodeStr(Opc) << OpStr; in DiagnoseBitwisePrecedence() 15147 << BinaryOperator::getOpcodeStr(Opc), in DiagnoseBitwisePrecedence() 15162 << Bop->getOpcodeStr(), in EmitDiagnosticForLogicalAndInLogicalOr() 15227 << Bop->getOpcodeStr() << BinaryOperator::getOpcodeStr(Opc) in DiagnoseBitwiseOpInBitwiseOp() 15231 << Bop->getOpcodeStr(), in DiagnoseBitwiseOpInBitwiseOp() 15241 StringRef Op = Bop->getOpcodeStr(); in DiagnoseAdditionInShift() 15302 StringRef Shift = BinaryOperator::getOpcodeStr(Opc); in DiagnoseBinOpPrecedence()
|
| H A D | AnalysisBasedWarnings.cpp | 894 Str = BO->getOpcodeStr(); in DiagUninitUse()
|