Home
last modified time | relevance | path

Searched refs:Construct (Results 1 – 25 of 34) sorted by relevance

12

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2027 PathDiagnosticConstruct Construct(PDC, ErrorNode, R, EntryPoint); in generate() local
2045 Construct.PD->setEndOfPath(LastPiece); in generate()
2047 PathDiagnosticLocation PrevLoc = Construct.PD->getLocation(); in generate()
2050 while (Construct.ascendToPrevNode()) { in generate()
2051 generatePathDiagnosticsForNode(Construct, PrevLoc); in generate()
2053 auto VisitorNotes = VisitorsDiagnostics->find(Construct.getCurrentNode()); in generate()
2069 addEdgeToPath(Construct.getActivePath(), PrevLoc, Note->getLocation()); in generate()
2070 updateStackPiecesWithMessage(Note, Construct.CallStack); in generate()
2071 Construct.getActivePath().push_front(Note); in generate()
2079 Construct.getLocationContextForActivePath()->getStackFrame(); in generate()
[all …]
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dhazard_pointer.cppm
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclPrinter.cpp410 } else if (CXXConstructExpr *Construct = in PrintConstructorInitializers() local
412 Args = Construct->getArgs(); in PrintConstructorInitializers()
413 NumArgs = Construct->getNumArgs(); in PrintConstructorInitializers()
1015 } else if (CXXConstructExpr *Construct = in VisitVarDecl() local
1018 !Construct->isListInitialization()) { in VisitVarDecl()
1019 ImplicitInit = Construct->getNumArgs() == 0 || in VisitVarDecl()
1020 Construct->getArg(0)->isDefaultArgument(); in VisitVarDecl()
H A DDeclCXX.cpp2986 if (const auto *Construct = dyn_cast<CXXConstructExpr>(E)) in getTargetConstructor() local
2987 return Construct->getConstructor(); in getTargetConstructor()
/freebsd/contrib/lyaml/
H A DREADME.md149 "Parse, Compose, Construct" processing model described in the
152 Implementing the remaining "Compose" and "Construct" processes in
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DInterpBuiltinBitCast.cpp191 auto note = [&](int Construct, QualType NoteType, SourceRange NoteRange) { in CheckBitcastType() argument
193 << NoteType << Construct << T.getUnqualifiedType() << NoteRange; in CheckBitcastType()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaFunctionEffects.cpp1263 bool VisitCXXConstructExpr(CXXConstructExpr *Construct) override { in VisitCXXConstructExpr()
1265 << Construct->getBeginLoc().printToString( in VisitCXXConstructExpr()
1271 const CXXConstructorDecl *Ctor = Construct->getConstructor(); in VisitCXXConstructExpr()
1273 followCall(CI, Construct->getLocation()); in VisitCXXConstructExpr()
H A DTreeTransform.h4389 CXXConstructExpr *Construct = dyn_cast<CXXConstructExpr>(Init); in TransformInitializer() local
4390 if (!NotCopyInit && !(Construct && Construct->isListInitialization())) in TransformInitializer()
4407 if (!Construct || isa<CXXTemporaryObjectExpr>(Construct)) in TransformInitializer()
4412 if (Construct && Construct->isStdInitListInitialization()) in TransformInitializer()
4413 return TransformInitializer(Construct->getArg(0), NotCopyInit); in TransformInitializer()
4418 Construct->isListInitialization()); in TransformInitializer()
4426 if (getDerived().TransformExprs(Construct->getArgs(), Construct->getNumArgs(), in TransformInitializer()
4431 if (Construct->isListInitialization()) in TransformInitializer()
4432 return getDerived().RebuildInitList(Construct->getBeginLoc(), NewArgs, in TransformInitializer()
4433 Construct->getEndLoc()); in TransformInitializer()
[all …]
H A DSemaDecl.cpp2022 const auto *Construct = in ShouldDiagnoseUnusedDecl() local
2024 if (Construct && !Construct->isElidable()) { in ShouldDiagnoseUnusedDecl()
2025 const CXXConstructorDecl *CD = Construct->getConstructor(); in ShouldDiagnoseUnusedDecl()
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVStructurizer.cpp767 std::vector<Edge> getExitsFrom(const BlockSet &Construct, in getExitsFrom() argument
771 if (Construct.count(Item) == 0) in getExitsFrom()
775 if (Construct.count(Successor) == 0) in getExitsFrom()
H A DSPIRVBuiltins.td65 def Construct : BuiltinGroup;
131 // Composite Construct builtin record:
132 def : DemangledBuiltin<"__spirv_CompositeConstruct", OpenCL_std, Construct, 1, 0>;
H A DSPIRVBuiltins.cpp2831 case SPIRV::Construct: in mapBuiltinToOpcode()
2906 case SPIRV::Construct: in lowerBuiltin()
/freebsd/contrib/llvm-project/llvm/lib/Support/Unix/
H A DThreading.inc79 // Construct the attributes object.
98 // Construct and execute the thread.
/freebsd/crypto/openssl/doc/internal/man3/
H A Dossl_method_construct.pod20 /* Construct a new method */
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDecl.cpp1813 if (const CXXConstructExpr *Construct = dyn_cast<CXXConstructExpr>(Init)) in isTrivialInitializer() local
1814 if (CXXConstructorDecl *Constructor = Construct->getConstructor()) in isTrivialInitializer()
1817 !Construct->requiresZeroInitialization()) in isTrivialInitializer()
/freebsd/contrib/ncurses/
H A Dconfigure.in2074 ### Construct the ncurses library-subsets, if any, from this set of keywords:
2142 ### Construct the list of include-directories to be generated
2365 ### Construct the list of subdirectories for which we'll customize makefiles
H A Daclocal.m4157 dnl Construct the list of include-options for the C programs in the Ada95
4089 dnl Construct a search-list of directories for a nonstandard header-file
4143 dnl Construct the list of include-options according to whether we're building
4719 dnl Construct a search-list of directories for a nonstandard library-file
6724 # Construct a sed script to perform renaming within man pages
8622 dnl Construct a search-list for a nonstandard header/lib-file
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h5250 else if (auto *Construct = llvm::dyn_cast<CXXConstructExpr>(&Node)) in AST_POLYMORPHIC_MATCHER_P2() local
5251 matchEachArgumentWithParamType(*Construct, ProcessParamAndArg); in AST_POLYMORPHIC_MATCHER_P2()
/freebsd/lib/libomp/
H A Dkmp_i18n_default.inc249 "Construct identifier invalid.",
/freebsd/crypto/openssl/doc/man3/
H A DOSSL_HPKE_CTX_new.pod234 =head2 Context Construct/Free
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A D__hash_table1598 …static_assert(!__is_hash_value_type<_Args...>::value, "Construct cannot be called with a hash valu…
1622 …static_assert(!__is_hash_value_type<_First, _Rest...>::value, "Construct cannot be called with a h…
/freebsd/contrib/llvm-project/openmp/runtime/src/i18n/
H A Den_US.txt295 ConstructIdentInvalid "Construct identifier invalid."
/freebsd/contrib/llvm-project/libcxx/include/
H A D__hash_table1853 …static_assert(!__is_hash_value_type<_Args...>::value, "Construct cannot be called with a hash valu…
1877 …static_assert(!__is_hash_value_type<_First, _Rest...>::value, "Construct cannot be called with a h…
/freebsd/contrib/dialog/
H A Daclocal.m487 dnl Construct list of names of catalog files to be constructed.
2748 dnl Construct a search-list of directories for a nonstandard header-file
3009 dnl Construct a search-list of directories for a nonstandard library-file
5096 dnl Construct a search-list for a nonstandard header/lib-file
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc1065 // Construct the current directory entry.

12