| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/ |
| H A D | RedundantMemberInitCheck.cpp | 49 const auto *Construct = Result.Nodes.getNodeAs<CXXConstructExpr>("construct"); in check() local 57 if (Construct->getNumArgs() == 0 || in check() 58 Construct->getArg(0)->isDefaultArgument()) { in check() 66 << Construct->getType() in check()
|
| H A D | RedundantStringInitCheck.cpp | 44 getConstructExprArgRange(const CXXConstructExpr &Construct) { in getConstructExprArgRange() argument 46 for (const Expr *Arg : Construct.arguments()) { in getConstructExprArgRange() 154 const CXXConstructExpr *Construct = getConstructExpr(*CtorInit); in check() local 155 if (!Construct) in check() 158 getConstructExprArgRange(*Construct)) in check()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/modernize/ |
| H A D | UseAutoCheck.cpp | 80 if (const auto *Construct = dyn_cast<CXXConstructExpr>(Init)) { in AST_MATCHER() local 81 return !Construct->isListInitialization() && Construct->getNumArgs() > 0 && in AST_MATCHER() 82 !Construct->getArg(0)->isDefaultArgument(); in AST_MATCHER() 296 const auto *Construct = dyn_cast<CXXConstructExpr>(ExprInit); in replaceIterators() local 297 if (!Construct) in replaceIterators() 301 if (Construct->getNumArgs() != 1) in replaceIterators() 305 const Expr *E = (*Construct->arg_begin())->IgnoreParenImpCasts(); in replaceIterators()
|
| H A D | MakeSmartPtrCheck.cpp | 118 const auto *Construct = in check() local 141 if (Construct) in check() 142 checkConstruct(SM, Result.Context, Construct, Type, New); in check() 148 const CXXConstructExpr *Construct, in checkConstruct() argument 151 SourceLocation ConstructCallStart = Construct->getExprLoc(); in checkConstruct() 161 ConstructCallStart, Construct->getParenOrBraceRange().getBegin()), in checkConstruct() 197 if (Construct->isListInitialization()) { in checkConstruct() 198 SourceRange BraceRange = Construct->getParenOrBraceRange(); in checkConstruct()
|
| H A D | MakeSmartPtrCheck.h | 56 const CXXConstructExpr *Construct, const QualType *Type,
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/ |
| H A D | ArgumentCommentCheck.cpp | 358 const auto *Construct = cast<CXXConstructExpr>(E); in check() local 359 if (Construct->getNumArgs() > 0 && in check() 360 Construct->getArg(0)->getSourceRange() == Construct->getSourceRange()) { in check() 365 Result.Context, Construct->getConstructor(), in check() 366 Construct->getParenOrBraceRange().getBegin(), in check() 367 llvm::makeArrayRef(Construct->getArgs(), Construct->getNumArgs())); in check()
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | coroutine-rvo.cpp | 102 struct Construct { struct 103 Construct(MoveOnly); 105 task<Construct> converting_constructor() { in converting_constructor()
|
| H A D | coroutine-rvo-exp-namespace.cpp | 103 struct Construct { struct 104 Construct(MoveOnly); 106 task<Construct> converting_constructor() { in converting_constructor()
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/ |
| H A D | BugReporter.cpp | 2013 Construct.PD->setEndOfPath(LastPiece); in generate() 2018 while (Construct.ascendToPrevNode()) { in generate() 2039 Construct.getActivePath().push_front(Note); in generate() 2049 addEdgeToPath(Construct.getActivePath(), PrevLoc, in generate() 2055 if (!Construct.PD->path.empty()) { in generate() 2058 removeUnneededCalls(Construct, Construct.getMutablePieces(), R); in generate() 2065 removePopUpNotes(Construct.getMutablePieces()); in generate() 2068 adjustCallLocations(Construct.getMutablePieces()); in generate() 2077 while (optimizeEdges(Construct, Construct.getMutablePieces(), OCS)) { in generate() 2082 dropFunctionEntryEdge(Construct, Construct.getMutablePieces()); in generate() [all …]
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/utils/ |
| H A D | ExceptionAnalyzer.cpp | 208 } else if (const auto *Construct = dyn_cast<CXXConstructExpr>(St)) { in throwsException() local 210 throwsException(Construct->getConstructor(), CallStack); in throwsException()
|
| /llvm-project-15.0.7/mlir/test/Integration/Dialect/Vector/CPU/ |
| H A D | test-transpose.mlir | 17 // Construct test vectors and matrices. 80 // Construct test tensor.
|
| H A D | test-reductions-f64-reassoc.mlir | 9 // Construct test vector, numerically very stable.
|
| H A D | test-reductions-f32-reassoc.mlir | 9 // Construct test vector, numerically very stable.
|
| H A D | test-shape-cast.mlir | 14 // Construct test vector.
|
| H A D | test-matrix-multiply-col.mlir | 17 // Construct test vectors.
|
| H A D | test-matrix-multiply-row.mlir | 17 // Construct test vectors.
|
| H A D | test-scan.mlir | 14 // Construct test vector.
|
| H A D | test-reductions-f64.mlir | 7 // Construct test vector.
|
| H A D | test-reductions-f32.mlir | 7 // Construct test vector.
|
| H A D | test-reductions-i32.mlir | 7 // Construct test vector.
|
| /llvm-project-15.0.7/mlir/include/mlir/Dialect/OpenMP/ |
| H A D | OpenMPOps.td | 49 // 2.6 parallel Construct 158 // 2.8.1 Sections Construct 237 // 2.8.2 Single Construct 474 // 2.10.1 task Construct 776 // 2.10.4 taskyield Construct 790 // 2.13.7 flush Construct 859 // 2.16 master Construct 874 // 2.17.1 critical Construct 914 // 2.17.2 barrier Construct 997 // 2.17.5 taskwait Construct [all …]
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | lifetime-extension.mm | 59 // 0. Construct the return value of -make (copy/move elided) and
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/tests/ |
| H A D | sanitizer_ring_buffer_test.cpp | 29 TEST(RingBuffer, Construct) { in TEST() argument
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | DeclPrinter.cpp | 342 } else if (CXXConstructExpr *Construct = in PrintConstructorInitializers() local 344 Args = Construct->getArgs(); in PrintConstructorInitializers() 345 NumArgs = Construct->getNumArgs(); in PrintConstructorInitializers() 901 } else if (CXXConstructExpr *Construct = in VisitVarDecl() local 904 !Construct->isListInitialization()) { in VisitVarDecl() 905 ImplicitInit = Construct->getNumArgs() == 0 || in VisitVarDecl() 906 Construct->getArg(0)->isDefaultArgument(); in VisitVarDecl()
|
| /llvm-project-15.0.7/clang/test/CodeGenObjCXX/ |
| H A D | arc-exceptions.mm | 98 // Construct single. 101 // Construct array.
|