OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OMPDeclareReductionDecl
(Results
1 - 25
of
25
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/AST/
DeclOpenMP.cpp
99
//
OMPDeclareReductionDecl
Implementation.
102
OMPDeclareReductionDecl
::
OMPDeclareReductionDecl
(
104
QualType Ty,
OMPDeclareReductionDecl
*PrevDeclInScope)
110
void
OMPDeclareReductionDecl
::anchor() {}
112
OMPDeclareReductionDecl
*
OMPDeclareReductionDecl
::Create(
114
QualType T,
OMPDeclareReductionDecl
*PrevDeclInScope) {
115
return new (C, DC)
OMPDeclareReductionDecl
(OMPDeclareReduction, DC, L, Name,
119
OMPDeclareReductionDecl
*
[
all
...]
DeclPrinter.cpp
105
void VisitOMPDeclareReductionDecl(
OMPDeclareReductionDecl
*D);
447
if (isa<OMPThreadPrivateDecl>(*D) || isa<
OMPDeclareReductionDecl
>(*D) ||
1673
void DeclPrinter::VisitOMPDeclareReductionDecl(
OMPDeclareReductionDecl
*D) {
1693
case
OMPDeclareReductionDecl
::DirectInit:
1696
case
OMPDeclareReductionDecl
::CopyInit:
1699
case
OMPDeclareReductionDecl
::CallInit:
1703
if (D->getInitializerKind() ==
OMPDeclareReductionDecl
::DirectInit)
TextNodeDumper.cpp
1778
const
OMPDeclareReductionDecl
*D) {
1787
case
OMPDeclareReductionDecl
::DirectInit:
1790
case
OMPDeclareReductionDecl
::CopyInit:
1793
case
OMPDeclareReductionDecl
::CallInit:
MicrosoftMangle.cpp
102
if (isa<CapturedDecl>(DC) || isa<
OMPDeclareReductionDecl
>(DC) ||
ItaniumMangle.cpp
67
if (isa<CapturedDecl>(DC) || isa<
OMPDeclareReductionDecl
>(DC) ||
ASTContext.cpp
10887
else if (isa<
OMPDeclareReductionDecl
>(D) || isa<OMPDeclareMapperDecl>(D))
/src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclOpenMP.h
171
class
OMPDeclareReductionDecl
final : public ValueDecl, public DeclContext {
203
OMPDeclareReductionDecl
(Kind DK, DeclContext *DC, SourceLocation L,
205
OMPDeclareReductionDecl
*PrevDeclInScope);
207
void setPrevDeclInScope(
OMPDeclareReductionDecl
*Prev) {
213
static
OMPDeclareReductionDecl
*
215
QualType T,
OMPDeclareReductionDecl
*PrevDeclInScope);
217
static
OMPDeclareReductionDecl
*CreateDeserialized(ASTContext &C,
264
OMPDeclareReductionDecl
*getPrevDeclInScope();
265
const
OMPDeclareReductionDecl
*getPrevDeclInScope() const;
269
static DeclContext *castToDeclContext(const
OMPDeclareReductionDecl
*D)
[
all
...]
GlobalDecl.h
86
GlobalDecl(const
OMPDeclareReductionDecl
*D) { Init(D); }
TextNodeDumper.h
334
void VisitOMPDeclareReductionDecl(const
OMPDeclareReductionDecl
*D);
ASTNodeTraverser.h
458
void VisitOMPDeclareReductionDecl(const
OMPDeclareReductionDecl
*D) {
DeclBase.h
1338
///
OMPDeclareReductionDecl
1536
/// Stores the bits used by
OMPDeclareReductionDecl
.
1538
/// methods in
OMPDeclareReductionDecl
should be updated appropriately.
1540
friend class
OMPDeclareReductionDecl
;
RecursiveASTVisitor.h
1618
DEF_TRAVERSE_DECL(
OMPDeclareReductionDecl
, {
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGOpenMPRuntime.h
50
class
OMPDeclareReductionDecl
;
169
const
OMPDeclareReductionDecl
*DRD);
411
typedef llvm::DenseMap<const
OMPDeclareReductionDecl
*,
417
SmallVector<const
OMPDeclareReductionDecl
*, 4>>
920
const
OMPDeclareReductionDecl
*D);
923
getUserDefinedReduction(const
OMPDeclareReductionDecl
*D);
ModuleBuilder.cpp
240
if (auto *DRD = dyn_cast<
OMPDeclareReductionDecl
>(Member)) {
CGOpenMPRuntime.cpp
607
static const
OMPDeclareReductionDecl
*
613
if (const auto *DRD = dyn_cast<
OMPDeclareReductionDecl
>(DRE->getDecl()))
619
const
OMPDeclareReductionDecl
*DRD,
682
const
OMPDeclareReductionDecl
*DRD,
776
const
OMPDeclareReductionDecl
*DRD) {
887
const
OMPDeclareReductionDecl
*DRD =
1031
const
OMPDeclareReductionDecl
*DRD =
1170
CodeGenFunction *CGF, const
OMPDeclareReductionDecl
*D) {
1182
D->getInitializerKind() ==
OMPDeclareReductionDecl
::CallInit ? Init
1196
CGOpenMPRuntime::getUserDefinedReduction(const
OMPDeclareReductionDecl
*D)
[
all
...]
CodeGenModule.h
1348
void EmitOMPDeclareReduction(const
OMPDeclareReductionDecl
*D,
CGDecl.cpp
162
return CGM.EmitOMPDeclareReduction(cast<
OMPDeclareReductionDecl
>(&D), this);
2598
void CodeGenModule::EmitOMPDeclareReduction(const
OMPDeclareReductionDecl
*D,
CodeGenModule.cpp
2885
if (auto *DRD = dyn_cast<
OMPDeclareReductionDecl
>(Global)) {
5898
EmitOMPDeclareReduction(cast<
OMPDeclareReductionDecl
>(D));
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp
3281
OMPDeclareReductionDecl
*D) {
3306
PrevDeclInScope = cast<
OMPDeclareReductionDecl
>(
3313
auto *NewDRD = cast<
OMPDeclareReductionDecl
>(DRD.get().getSingleDecl());
3343
if (D->getInitializerKind() ==
OMPDeclareReductionDecl
::CallInit) {
3358
(D->getInitializerKind() ==
OMPDeclareReductionDecl
::CallInit &&
3360
(D->getInitializerKind() !=
OMPDeclareReductionDecl
::CallInit &&
5822
isa<
OMPDeclareReductionDecl
>(ParentDC) ||
SemaOpenMP.cpp
16023
if (!isa<
OMPDeclareReductionDecl
>(Underlying) &&
16069
else if (auto *DRD = dyn_cast<
OMPDeclareReductionDecl
>(D))
16696
auto *DRD = cast<
OMPDeclareReductionDecl
>(DRDRef->getDecl());
19312
OMPDeclareReductionDecl
*PrevDRD = nullptr;
19323
llvm::DenseMap<
OMPDeclareReductionDecl
*, bool> UsedAsPrevious;
19326
auto *PrevDecl = cast<
OMPDeclareReductionDecl
>(Filter.next());
19331
if (
OMPDeclareReductionDecl
*D = PrevDecl->getPrevDeclInScope())
19348
cast<
OMPDeclareReductionDecl
>(PrevDeclInScope);
19365
auto *DRD =
OMPDeclareReductionDecl
::Create(Context, DC, TyData.second,
19381
auto *DRD = cast<
OMPDeclareReductionDecl
>(D)
[
all
...]
SemaDecl.cpp
6668
if (DC->isFunctionOrMethod() || isa<
OMPDeclareReductionDecl
>(DC) ||
6683
isa<
OMPDeclareReductionDecl
>(DC) || isa<OMPDeclareMapperDecl>(DC))
SemaExpr.cpp
330
auto *DRD = dyn_cast<
OMPDeclareReductionDecl
>(CurContext);
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp
450
void VisitOMPDeclareReductionDecl(
OMPDeclareReductionDecl
*D);
2693
void ASTDeclReader::VisitOMPDeclareReductionDecl(
OMPDeclareReductionDecl
*D) {
2705
auto IK = static_cast<
OMPDeclareReductionDecl
::InitKind>(Record.readInt());
2847
if (isa<OMPThreadPrivateDecl>(D) || isa<
OMPDeclareReductionDecl
>(D) ||
4046
D =
OMPDeclareReductionDecl
::CreateDeserialized(Context, ID);
ASTWriterDecl.cpp
154
void VisitOMPDeclareReductionDecl(
OMPDeclareReductionDecl
*D);
1857
void ASTDeclWriter::VisitOMPDeclareReductionDecl(
OMPDeclareReductionDecl
*D) {
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h
166
class
OMPDeclareReductionDecl
;
Completed in 126 milliseconds
Indexes created Wed Aug 05 00:25:39 UTC 2026