OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ParenListExpr
(Results
1 - 25
of
29
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/clang/include/clang/AST/
ComputeDependence.h
88
class
ParenListExpr
;
176
ExprDependence computeDependence(
ParenListExpr
*E);
Expr.h
5458
class
ParenListExpr
final
5460
private llvm::TrailingObjects<
ParenListExpr
, Stmt *> {
5468
ParenListExpr
(SourceLocation LParenLoc, ArrayRef<Expr *> Exprs,
5472
ParenListExpr
(EmptyShell Empty, unsigned NumExprs);
5476
static
ParenListExpr
*Create(const ASTContext &Ctx, SourceLocation LParenLoc,
5481
static
ParenListExpr
*CreateEmpty(const ASTContext &Ctx, unsigned NumExprs);
5492
return const_cast<
ParenListExpr
*>(this)->getExpr(Init);
Stmt.h
306
friend class
ParenListExpr
; // ctor
559
friend class
ParenListExpr
;
RecursiveASTVisitor.h
2653
DEF_TRAVERSE_STMT(
ParenListExpr
, {})
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaFixItUtils.cpp
86
isa<
ParenListExpr
>(Expr) ||
SemaLambda.cpp
826
ParenListExpr
*CXXDirectInit = dyn_cast<
ParenListExpr
>(Init);
SemaExprCXX.cpp
1833
if (
ParenListExpr
*List = dyn_cast_or_null<
ParenListExpr
>(Initializer))
1846
if (
ParenListExpr
*PLE = dyn_cast<
ParenListExpr
>(Init))
1922
if (
ParenListExpr
*List = dyn_cast_or_null<
ParenListExpr
>(Initializer)) {
SemaCoroutine.cpp
598
Expr *PLE =
ParenListExpr
::Create(Context, FD->getLocation(),
SemaExpr.cpp
4638
if (isa<
ParenListExpr
>(base)) {
7568
ParenListExpr
*PLE = dyn_cast<
ParenListExpr
>(CastExpr);
7589
// If the Expr being casted is a
ParenListExpr
, handle it specially.
7590
// This is not an AltiVec-style cast, so turn the
ParenListExpr
into a
7592
if (isa<
ParenListExpr
>(CastExpr)) {
7614
assert((isa<
ParenListExpr
>(E) || isa<ParenExpr>(E)) &&
7621
if (
ParenListExpr
*PE = dyn_cast<
ParenListExpr
>(E)) {
7692
/// the
ParenListExpr
into a sequence of comma binary operators
[
all
...]
SemaDeclCXX.cpp
4109
Expr *List =
ParenListExpr
::Create(Context, LParenLoc, Args, RParenLoc);
4342
if (
ParenListExpr
*ParenList = dyn_cast<
ParenListExpr
>(Init)) {
4414
if (
ParenListExpr
*ParenList = dyn_cast<
ParenListExpr
>(Init)) {
4447
// received in a
ParenListExpr
.
4551
if (
ParenListExpr
*ParenList = dyn_cast<
ParenListExpr
>(Init)) {
4577
// received in a
ParenListExpr
.
SemaTemplateInstantiate.cpp
3002
assert((!Init || !isa<
ParenListExpr
>(Init)) && "call-style init in class");
SemaExprObjC.cpp
3426
// A
ParenListExpr
can show up while doing error recovery with invalid code.
3427
if (isa<
ParenListExpr
>(Receiver)) {
/src/external/apache2/llvm/dist/clang/lib/AST/
Expr.cpp
4373
ParenListExpr
::
ParenListExpr
(SourceLocation LParenLoc, ArrayRef<Expr *> Exprs,
4384
ParenListExpr
::
ParenListExpr
(EmptyShell Empty, unsigned NumExprs)
4389
ParenListExpr
*
ParenListExpr
::Create(const ASTContext &Ctx,
4394
alignof(
ParenListExpr
));
4395
return new (Mem)
ParenListExpr
(LParenLoc, Exprs, RParenLoc);
4398
ParenListExpr
*
ParenListExpr
::CreateEmpty(const ASTContext &Ctx
[
all
...]
DeclPrinter.cpp
337
if (
ParenListExpr
*ParenList = dyn_cast<
ParenListExpr
>(Init)) {
905
if ((D->getInitStyle() == VarDecl::CallInit) && !isa<
ParenListExpr
>(Init))
914
if ((D->getInitStyle() == VarDecl::CallInit) && !isa<
ParenListExpr
>(Init))
ComputeDependence.cpp
201
ExprDependence clang::computeDependence(
ParenListExpr
*P) {
StmtPrinter.cpp
1556
void StmtPrinter::VisitParenListExpr(
ParenListExpr
* Node) {
2004
!isa<
ParenListExpr
>(D->getInit())) {
StmtProfile.cpp
1237
void StmtProfiler::VisitParenListExpr(const
ParenListExpr
*S) {
ItaniumMangle.cpp
4372
} else if (const
ParenListExpr
*PLE = dyn_cast<
ParenListExpr
>(Init)) {
ASTImporter.cpp
600
ExpectedStmt VisitParenListExpr(
ParenListExpr
*E);
6882
ExpectedStmt ASTNodeImporter::VisitParenListExpr(
ParenListExpr
*E) {
6895
return
ParenListExpr
::Create(Importer.getToContext(), *ToLParenLocOrErr,
/src/external/apache2/llvm/dist/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp
907
isa<
ParenListExpr
>(Expr) ||
934
isa<
ParenListExpr
>(Expr) ||
/src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp
840
const internal::VariadicDynCastAllOfMatcher<Stmt,
ParenListExpr
>
parenListExpr
;
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp
698
void ASTStmtReader::VisitParenListExpr(
ParenListExpr
*E) {
2854
S =
ParenListExpr
::CreateEmpty(
ASTWriterStmt.cpp
711
void ASTStmtWriter::VisitParenListExpr(
ParenListExpr
*E) {
/src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
ObjCMT.cpp
229
isa<
ParenListExpr
>(Expr) || isa<SizeOfPackExpr>(Expr));
/src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchers.h
1725
///
parenListExpr
() matches "*this" but NOT matches (a, b) because (a, b)
1726
/// has a predefined type and is a ParenExpr, not a
ParenListExpr
.
1727
extern const internal::VariadicDynCastAllOfMatcher<Stmt,
ParenListExpr
>
1728
parenListExpr
;
Completed in 148 milliseconds
1
2
Indexes created Fri Aug 07 00:26:27 UTC 2026