OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ExprWithCleanups
(Results
1 - 25
of
49
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
LLVMConventionsChecker.cpp
159
ExprWithCleanups
*Ex1 = dyn_cast<
ExprWithCleanups
>(Init);
/src/external/apache2/llvm/dist/clang/include/clang/AST/
ASTImporter.h
343
llvm::Expected<
ExprWithCleanups
::CleanupObject>
344
Import(
ExprWithCleanups
::CleanupObject From);
TextNodeDumper.h
201
void dumpCleanupObject(const
ExprWithCleanups
::CleanupObject &C);
281
void VisitExprWithCleanups(const
ExprWithCleanups
*Node);
JSONNodeDumper.h
287
void VisitExprWithCleanups(const
ExprWithCleanups
*EWC);
ExprCXX.h
3342
class
ExprWithCleanups
final
3345
ExprWithCleanups
,
3358
ExprWithCleanups
(EmptyShell, unsigned NumObjects);
3359
ExprWithCleanups
(Expr *SubExpr, bool CleanupsHaveSideEffects,
3363
static
ExprWithCleanups
*Create(const ASTContext &C, EmptyShell empty,
3366
static
ExprWithCleanups
*Create(const ASTContext &C, Expr *subexpr,
/src/external/apache2/llvm/dist/clang/lib/AST/
ExprCXX.cpp
1291
ExprWithCleanups
::
ExprWithCleanups
(Expr *subexpr,
1301
ExprWithCleanups
*
ExprWithCleanups
::Create(const ASTContext &C, Expr *subexpr,
1305
alignof(
ExprWithCleanups
));
1307
ExprWithCleanups
(subexpr, CleanupsHaveSideEffects, objects);
1310
ExprWithCleanups
::
ExprWithCleanups
(EmptyShell empty, unsigned numObjects)
1315
ExprWithCleanups
*
ExprWithCleanups
::Create(const ASTContext &C
[
all
...]
ParentMapContext.cpp
221
if (isa<
ExprWithCleanups
>(E))
DeclPrinter.cpp
329
if (
ExprWithCleanups
*Tmp = dyn_cast<
ExprWithCleanups
>(Init))
JSONNodeDumper.cpp
1335
void JSONNodeDumper::VisitExprWithCleanups(const
ExprWithCleanups
*EWC) {
1340
for (const
ExprWithCleanups
::CleanupObject &CO : EWC->getObjects())
ExprClassification.cpp
350
return ClassifyInternal(Ctx, cast<
ExprWithCleanups
>(E)->getSubExpr());
Expr.cpp
2760
return cast<
ExprWithCleanups
>(this)->getSubExpr()
3110
return cast<
ExprWithCleanups
>(this)->getSubExpr()->isConstantInitializer(
3436
if (cast<
ExprWithCleanups
>(this)->cleanupsHaveSideEffects())
4517
if (const
ExprWithCleanups
*ewc = dyn_cast<
ExprWithCleanups
>(e))
ASTImporter.cpp
633
ExpectedStmt VisitExprWithCleanups(
ExprWithCleanups
*E);
7497
ExpectedStmt ASTNodeImporter::VisitExprWithCleanups(
ExprWithCleanups
*E) {
7502
SmallVector<
ExprWithCleanups
::CleanupObject, 8> ToObjects(E->getNumObjects());
7506
return
ExprWithCleanups
::Create(
8201
llvm::Expected<
ExprWithCleanups
::CleanupObject>
8202
ASTImporter::Import(
ExprWithCleanups
::CleanupObject From) {
8205
return
ExprWithCleanups
::CleanupObject(cast<CompoundLiteralExpr>(*R));
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
Environment.cpp
46
E = cast<
ExprWithCleanups
>(E)->getSubExpr();
/src/external/apache2/llvm/dist/clang/lib/Analysis/
CFG.cpp
571
CFGBlock *VisitExprWithCleanups(
ExprWithCleanups
*E,
1395
auto *Cleanups = cast<
ExprWithCleanups
>(Child);
1637
HasTemporaries = isa<
ExprWithCleanups
>(Init);
1642
VisitForTemporaryDtors(cast<
ExprWithCleanups
>(Init)->getSubExpr(),
1658
return Visit(cast<
ExprWithCleanups
>(Init)->getSubExpr());
1688
if (const
ExprWithCleanups
*EWC = dyn_cast<
ExprWithCleanups
>(Init)) {
2185
return VisitExprWithCleanups(cast<
ExprWithCleanups
>(S),
2888
HasTemporaries = isa<
ExprWithCleanups
>(Init);
2893
VisitForTemporaryDtors(cast<
ExprWithCleanups
>(Init)->getSubExpr()
[
all
...]
LiveVariables.cpp
271
S = cast<
ExprWithCleanups
>(S)->getSubExpr();
Consumed.cpp
470
if (const auto Cleanups = dyn_cast<
ExprWithCleanups
>(E))
477
if (const auto Cleanups = dyn_cast<
ExprWithCleanups
>(E))
ThreadSafetyCommon.cpp
243
return translate(cast<
ExprWithCleanups
>(S)->getSubExpr(), Ctx);
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGObjC.cpp
1075
assert(isa<
ExprWithCleanups
>(getter));
1389
assert(isa<
ExprWithCleanups
>(setter));
3274
assert(!isa<
ExprWithCleanups
>(e));
3420
if (const
ExprWithCleanups
*cleanups = dyn_cast<
ExprWithCleanups
>(e)) {
3435
if (const
ExprWithCleanups
*cleanups = dyn_cast<
ExprWithCleanups
>(e)) {
3545
if (const
ExprWithCleanups
*cleanups = dyn_cast<
ExprWithCleanups
>(e)) {
CGExprAgg.cpp
190
void VisitExprWithCleanups(
ExprWithCleanups
*E);
307
// Since we're not guaranteed to be in an
ExprWithCleanups
, clean up
1373
void AggExprEmitter::VisitExprWithCleanups(
ExprWithCleanups
*E) {
CGExprCXX.cpp
658
if (const
ExprWithCleanups
*E = dyn_cast<
ExprWithCleanups
>(Exp))
/src/external/apache2/llvm/dist/clang/lib/Sema/
JumpDiagnostics.cpp
551
ExprWithCleanups
*EWC = cast<
ExprWithCleanups
>(S);
SemaConcept.cpp
72
} else if (auto *C = dyn_cast<
ExprWithCleanups
>(ConstraintExpression))
155
} else if (auto *C = dyn_cast<
ExprWithCleanups
>(ConstraintExpr)) {
SemaLambda.cpp
681
ExprWithCleanups
*cleanups = dyn_cast<
ExprWithCleanups
>(retValue);
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp
1922
void ASTStmtReader::VisitExprWithCleanups(
ExprWithCleanups
*E) {
1929
ExprWithCleanups
::CleanupObject Obj;
1936
E->getTrailingObjects<
ExprWithCleanups
::CleanupObject>()[i] = Obj;
3691
S =
ExprWithCleanups
::Create(Context, Empty,
/src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp
833
const internal::VariadicDynCastAllOfMatcher<Stmt,
ExprWithCleanups
>
834
exprWithCleanups
;
Completed in 56 milliseconds
1
2
Indexes created Wed Aug 05 00:25:39 UTC 2026