Searched refs:OMPPrivateClause (Results 1 - 9 of 9) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp319 void OMPPrivateClause::setPrivateCopies(ArrayRef<Expr *> VL) {
325 OMPPrivateClause *
326 OMPPrivateClause::Create(const ASTContext &C, SourceLocation StartLoc,
331 OMPPrivateClause *Clause =
332 new (Mem) OMPPrivateClause(StartLoc, LParenLoc, EndLoc, VL.size());
338 OMPPrivateClause *OMPPrivateClause::CreateEmpty(const ASTContext &C,
341 return new (Mem) OMPPrivateClause(N);
1415 void OMPClausePrinter::VisitOMPPrivateClause(OMPPrivateClause *Node) {
H A DStmtProfile.cpp534 void OMPClauseProfiler::VisitOMPPrivateClause(const OMPPrivateClause *C) {
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h1885 class OMPPrivateClause final
1886 : public OMPVarListClause<OMPPrivateClause>,
1887 private llvm::TrailingObjects<OMPPrivateClause, Expr *> {
1898 OMPPrivateClause(SourceLocation StartLoc, SourceLocation LParenLoc, function in class:clang::final
1900 : OMPVarListClause<OMPPrivateClause>(OMPC_private, StartLoc, LParenLoc,
1906 explicit OMPPrivateClause(unsigned N) function in class:clang::final
1907 : OMPVarListClause<OMPPrivateClause>(OMPC_private, SourceLocation(),
1934 static OMPPrivateClause *Create(const ASTContext &C, SourceLocation StartLoc,
1943 static OMPPrivateClause *CreateEmpty(const ASTContext &C, unsigned N);
1967 auto Children = const_cast<OMPPrivateClause *>(thi
[all...]
H A DRecursiveASTVisitor.h3149 bool RecursiveASTVisitor<Derived>::VisitOMPPrivateClause(OMPPrivateClause *C) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp136 for (const auto *C : S.getClausesOfKind<OMPPrivateClause>()) {
885 for (const auto *C : D.getClausesOfKind<OMPPrivateClause>()) {
3143 for (const auto *C : S.getClausesOfKind<OMPPrivateClause>()) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp6156 void OMPClauseWriter::VisitOMPPrivateClause(OMPPrivateClause *C) {
H A DASTReader.cpp11605 C = OMPPrivateClause::CreateEmpty(Context, Record.readInt());
11864 void OMPClauseReader::VisitOMPPrivateClause(OMPPrivateClause *C) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp4370 auto *PC = cast<OMPPrivateClause>(Cl);
12699 return OMPPrivateClause::Create(Context, StartLoc, LParenLoc, EndLoc, Vars,
H A DTreeTransform.h8848 TreeTransform<Derived>::TransformOMPPrivateClause(OMPPrivateClause *C) {

Completed in 417 milliseconds