OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GenericSelectionExpr
(Results
1 - 25
of
36
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/clang/include/clang/AST/
EvaluatedExprVisitor.h
65
void VisitGenericSelectionExpr(PTR(
GenericSelectionExpr
) E) {
ComputeDependence.h
86
class
GenericSelectionExpr
;
173
ExprDependence computeDependence(
GenericSelectionExpr
*E,
IgnoreExpr.h
158
else if (auto *GSE = dyn_cast<
GenericSelectionExpr
>(E)) {
ASTNodeTraverser.h
55
void Visit(const
GenericSelectionExpr
::ConstAssociation &A);
144
if (isa<DeclStmt>(S) || isa<
GenericSelectionExpr
>(S))
222
void Visit(const
GenericSelectionExpr
::ConstAssociation &A) {
683
void VisitGenericSelectionExpr(const
GenericSelectionExpr
*E) {
JSONNodeDumper.h
206
void Visit(const
GenericSelectionExpr
::ConstAssociation &A);
284
void VisitGenericSelectionExpr(const
GenericSelectionExpr
*GSE);
TextNodeDumper.h
189
void Visit(const
GenericSelectionExpr
::ConstAssociation &A);
259
void VisitGenericSelectionExpr(const
GenericSelectionExpr
*E);
Expr.h
855
/// *
GenericSelectionExpr
if `!isResultDependent()`
5549
class
GenericSelectionExpr
final
5551
private llvm::TrailingObjects<
GenericSelectionExpr
, Stmt *,
5571
//
GenericSelectionExpr
is followed by several trailing objects.
5593
friend class
GenericSelectionExpr
;
5623
friend class
GenericSelectionExpr
;
5667
GenericSelectionExpr
(const ASTContext &Context, SourceLocation GenericLoc,
5676
GenericSelectionExpr
(const ASTContext &Context, SourceLocation GenericLoc,
5684
explicit
GenericSelectionExpr
(EmptyShell Empty, unsigned NumAssocs);
5688
static
GenericSelectionExpr
*
[
all
...]
RecursiveASTVisitor.h
2421
//
GenericSelectionExpr
is a special case because the types and expressions
2424
DEF_TRAVERSE_STMT(
GenericSelectionExpr
, {
2426
for (const
GenericSelectionExpr
::Association Assoc : S->associations()) {
/src/external/apache2/llvm/dist/clang/lib/AST/
Expr.cpp
2418
return cast<
GenericSelectionExpr
>(this)->getResultExpr()->
3202
return cast<
GenericSelectionExpr
>(this)->getResultExpr()
3484
return cast<
GenericSelectionExpr
>(this)->getResultExpr()->
3728
} else if (const
GenericSelectionExpr
*GE =
3729
dyn_cast<
GenericSelectionExpr
>(this)) {
4119
GenericSelectionExpr
::
GenericSelectionExpr
(
4144
GenericSelectionExpr
::
GenericSelectionExpr
(
4167
GenericSelectionExpr
::GenericSelectionExpr(EmptyShell Empty, unsigned NumAssocs
[
all
...]
ExprClassification.cpp
301
if (cast<
GenericSelectionExpr
>(E)->isResultDependent())
303
return ClassifyInternal(Ctx,cast<
GenericSelectionExpr
>(E)->getResultExpr());
JSONNodeDumper.cpp
181
void JSONNodeDumper::Visit(const
GenericSelectionExpr
::ConstAssociation &A) {
1299
const
GenericSelectionExpr
*GSE) {
ComputeDependence.cpp
620
ExprDependence clang::computeDependence(
GenericSelectionExpr
*E,
ASTStructuralEquivalence.cpp
236
bool IsStmtEquivalent(const
GenericSelectionExpr
*E1,
237
const
GenericSelectionExpr
*E2) {
StmtPrinter.cpp
1286
void StmtPrinter::VisitGenericSelectionExpr(
GenericSelectionExpr
*Node) {
1289
for (const
GenericSelectionExpr
::Association Assoc : Node->associations()) {
StmtProfile.cpp
1450
void StmtProfiler::VisitGenericSelectionExpr(const
GenericSelectionExpr
*S) {
1452
for (const
GenericSelectionExpr
::ConstAssociation Assoc :
TextNodeDumper.cpp
345
void TextNodeDumper::Visit(const
GenericSelectionExpr
::ConstAssociation &A) {
1059
void TextNodeDumper::VisitGenericSelectionExpr(const
GenericSelectionExpr
*E) {
ASTImporter.cpp
583
ExpectedStmt VisitGenericSelectionExpr(
GenericSelectionExpr
*E);
6597
ASTNodeImporter::VisitGenericSelectionExpr(
GenericSelectionExpr
*E) {
6618
return
GenericSelectionExpr
::Create(
6624
return
GenericSelectionExpr
::Create(
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaPseudoObject.cpp
136
if (
GenericSelectionExpr
*gse = dyn_cast<
GenericSelectionExpr
>(e)) {
146
for (const
GenericSelectionExpr
::Association assoc :
155
return
GenericSelectionExpr
::Create(
SemaExceptionSpec.cpp
1337
if (cast<
GenericSelectionExpr
>(S)->isResultDependent())
1339
return canThrow(cast<
GenericSelectionExpr
>(S)->getResultExpr());
SemaExprObjC.cpp
4558
} else if (
GenericSelectionExpr
*gse = dyn_cast<
GenericSelectionExpr
>(e)) {
4566
for (const
GenericSelectionExpr
::Association assoc : gse->associations()) {
4574
return
GenericSelectionExpr
::Create(
/src/external/apache2/llvm/dist/clang/lib/Analysis/
ExprMutationAnalyzer.cpp
98
AST_MATCHER_P(
GenericSelectionExpr
, hasControllingExpr,
220
// `
GenericSelectionExpr
` is unevaluated.
221
genericSelectionExpr
(hasControllingExpr(
/src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp
927
const internal::VariadicDynCastAllOfMatcher<Stmt,
GenericSelectionExpr
>
928
genericSelectionExpr
;
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprComplex.cpp
112
ComplexPairTy VisitGenericSelectionExpr(
GenericSelectionExpr
*GE) {
CGExprAgg.cpp
114
void VisitGenericSelectionExpr(
GenericSelectionExpr
*GE) {
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp
1351
void ASTStmtReader::VisitGenericSelectionExpr(
GenericSelectionExpr
*E) {
3021
S =
GenericSelectionExpr
::CreateEmpty(
Completed in 72 milliseconds
1
2
Indexes created Mon Jun 08 00:24:58 UTC 2026