OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EWC
(Results
1 - 12
of
12
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/Sema/
JumpDiagnostics.cpp
551
ExprWithCleanups *
EWC
= cast<ExprWithCleanups>(S);
552
for (unsigned i = 0, e =
EWC
->getNumObjects(); i != e; ++i) {
553
if (auto *BDecl =
EWC
->getObject(i).dyn_cast<BlockDecl *>())
558
else if (auto *CLE =
EWC
->getObject(i).dyn_cast<CompoundLiteralExpr *>())
SemaStmt.cpp
638
if (const auto *
EWC
= dyn_cast<ExprWithCleanups>(E)) {
639
if (
EWC
->cleanupsHaveSideEffects()) {
SemaOpenMP.cpp
10692
if (auto *
EWC
= dyn_cast<ExprWithCleanups>(Body))
10693
Body =
EWC
->getSubExpr();
10943
if (auto *
EWC
= dyn_cast<ExprWithCleanups>(First))
10944
First =
EWC
->getSubExpr()->IgnoreParenImpCasts();
10945
if (auto *
EWC
= dyn_cast<ExprWithCleanups>(Second))
10946
Second =
EWC
->getSubExpr()->IgnoreParenImpCasts();
SemaOverload.cpp
272
if (auto *
EWC
= dyn_cast<ExprWithCleanups>(Converted)) {
274
const_cast<Expr *>(IgnoreNarrowingConversion(Ctx,
EWC
->getSubExpr()));
275
return ExprWithCleanups::Create(Ctx, Inner,
EWC
->cleanupsHaveSideEffects(),
276
EWC
->getObjects());
SemaDecl.cpp
11813
if (auto *
EWC
= dyn_cast<ExprWithCleanups>(Init))
11814
Init =
EWC
->getSubExpr();
/src/external/apache2/llvm/dist/clang/lib/AST/
JSONNodeDumper.cpp
1335
void JSONNodeDumper::VisitExprWithCleanups(const ExprWithCleanups *
EWC
) {
1337
EWC
->cleanupsHaveSideEffects());
1338
if (
EWC
->getNumObjects()) {
1339
JOS.attributeArray("cleanups", [this,
EWC
] {
1340
for (const ExprWithCleanups::CleanupObject &CO :
EWC
->getObjects())
/src/external/apache2/llvm/dist/clang/include/clang/AST/
JSONNodeDumper.h
287
void VisitExprWithCleanups(const ExprWithCleanups *
EWC
);
/src/external/apache2/llvm/dist/clang/lib/Analysis/
ThreadSafety.cpp
2156
if (auto *
EWC
= dyn_cast<ExprWithCleanups>(E))
2157
E =
EWC
->getSubExpr()->IgnoreParens();
CFG.cpp
1688
if (const ExprWithCleanups *
EWC
= dyn_cast<ExprWithCleanups>(Init)) {
1689
Init =
EWC
->getSubExpr();
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGStmt.cpp
1212
if (const auto *
EWC
= dyn_cast_or_null<ExprWithCleanups>(RV))
1213
RV =
EWC
->getSubExpr();
CGBlocks.cpp
1079
auto *
EWC
= llvm::dyn_cast_or_null<ExprWithCleanups>(RetExpr);
1080
if (
EWC
)
1081
for (auto &C :
EWC
->getObjects())
CGDecl.cpp
775
if (auto *
EWC
= dyn_cast<ExprWithCleanups>(init)) {
777
return EmitScalarInit(
EWC
->getSubExpr(), D, lvalue, capturedByInit);
Completed in 105 milliseconds
Indexes created Wed Sep 23 00:26:21 UTC 2026