OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:RecoveryExpr
(Results
1 - 3
of
3
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/AST/
Expr.cpp
4719
RecoveryExpr
::
RecoveryExpr
(ASTContext &Ctx, QualType T, SourceLocation BeginLoc,
4732
RecoveryExpr
*
RecoveryExpr
::Create(ASTContext &Ctx, QualType T,
4737
alignof(
RecoveryExpr
));
4738
return new (Mem)
RecoveryExpr
(Ctx, T, BeginLoc, EndLoc, SubExprs);
4741
RecoveryExpr
*
RecoveryExpr
::CreateEmpty(ASTContext &Ctx, unsigned NumSubExprs) {
4743
alignof(
RecoveryExpr
));
4744
return new (Mem)
RecoveryExpr
(EmptyShell(), NumSubExprs)
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/AST/
Expr.h
6317
///
RecoveryExpr
does not have any semantic meaning in C++, it is only useful to
6322
/// By default,
RecoveryExpr
uses dependence-bits to take advantage of existing
6323
/// machinery to deal with dependent code in C++, e.g.
RecoveryExpr
is preserved
6327
/// unlike other dependent expressions,
RecoveryExpr
can be produced in
6330
/// We will preserve the type in
RecoveryExpr
when the type is known, e.g.
6338
class
RecoveryExpr
final : public Expr,
6339
private llvm::TrailingObjects<
RecoveryExpr
, Expr *> {
6341
static
RecoveryExpr
*Create(ASTContext &Ctx, QualType T,
6344
static
RecoveryExpr
*CreateEmpty(ASTContext &Ctx, unsigned NumSubExprs);
6352
return const_cast<
RecoveryExpr
*>(this)->subExpressions()
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDecl.cpp
12277
auto
RecoveryExpr
=
12279
if (
RecoveryExpr
.get())
12280
VDecl->setInit(
RecoveryExpr
.get());
12863
auto
RecoveryExpr
=
12865
if (
RecoveryExpr
.get())
12866
Var->setInit(
RecoveryExpr
.get());
Completed in 68 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026