Home
last modified time | relevance | path

Searched defs:IfStmt (Results 1 – 17 of 17) sorted by relevance

/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/stmt/
DIfStmt.java32 public final class IfStmt extends Statement { class
40 public IfStmt() { in IfStmt() method in IfStmt
43 public IfStmt(final Expression condition, final Statement thenStmt, final Statement elseStmt) { in IfStmt() method in IfStmt
49 public IfStmt(Range range, in IfStmt() method in IfStmt
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/stmt/
DIfStmt.java31 public final class IfStmt extends Statement { class
39 public IfStmt() { in IfStmt() method in IfStmt
42 public IfStmt(final Expression condition, final Statement thenStmt, final Statement elseStmt) { in IfStmt() method in IfStmt
48 public IfStmt(final int beginLine, final int beginColumn, final int endLine, final int endColumn, in IfStmt() method in IfStmt
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/
DIfStmt.java49 public class IfStmt extends Statement implements NodeWithCondition<IfStmt> { class
58 public IfStmt() { in IfStmt() method in IfStmt
63 public IfStmt(final Expression condition, final Statement thenStmt, final Statement elseStmt) { in IfStmt() method in IfStmt
71 …public IfStmt(TokenRange tokenRange, Expression condition, Statement thenStmt, Statement elseStmt)… in IfStmt() method in IfStmt
/external/llvm-project/clang/test/CodeGenCXX/
Dattr-likelihood-if-branch-weights.cpp50 void IfStmt() { in IfStmt() function
/external/starlark-go/syntax/
Dsyntax.go147 type IfStmt struct { struct
148 commentsRef
149 If Position // IF or ELIF
150 Cond Expr
151 True []Stmt
152 ElsePos Position // ELSE or ELIF
153 False []Stmt // optional
156 func (x *IfStmt) Span() (start, end Position) {
/external/llvm-project/clang/include/clang/ASTMatchers/
DASTMatchers.h4833 IfStmt)) { in AST_POLYMORPHIC_MATCHER() argument
4859 AST_POLYMORPHIC_SUPPORTED_TYPES(IfStmt, SwitchStmt, in AST_POLYMORPHIC_MATCHER_P()
4875 AST_POLYMORPHIC_SUPPORTED_TYPES(IfStmt, ForStmt, WhileStmt, DoStmt, in AST_POLYMORPHIC_MATCHER_P()
4890 AST_MATCHER_P(IfStmt, hasThen, internal::Matcher<Stmt>, InnerMatcher) { in AST_MATCHER_P() argument
4902 AST_MATCHER_P(IfStmt, hasElse, internal::Matcher<Stmt>, InnerMatcher) { in AST_MATCHER_P() argument
4952 AST_MATCHER_P(IfStmt, hasConditionVariableStatement, in AST_MATCHER_P() argument
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h3409 AST_POLYMORPHIC_SUPPORTED_TYPES(IfStmt, ForStmt, WhileStmt, DoStmt, in AST_POLYMORPHIC_MATCHER_P()
3424 AST_MATCHER_P(IfStmt, hasThen, internal::Matcher<Stmt>, InnerMatcher) { in AST_MATCHER_P() argument
3436 AST_MATCHER_P(IfStmt, hasElse, internal::Matcher<Stmt>, InnerMatcher) { in AST_MATCHER_P() argument
3486 AST_MATCHER_P(IfStmt, hasConditionVariableStatement, in AST_MATCHER_P() argument
/external/clang/unittests/ASTMatchers/
DASTMatchersTraversalTest.cpp715 TEST(IfStmt, ChildTraversalMatchers) { in TEST() argument
962 StatementMatcher IfStmt = in TEST() local
/external/llvm-project/clang/lib/AST/
DStmt.cpp909 IfStmt::IfStmt(const ASTContext &Ctx, SourceLocation IL, bool IsConstexpr, in IfStmt() function in IfStmt
936 IfStmt::IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit) in IfStmt() function in IfStmt
/external/clang/lib/CodeGen/
DCodeGenPGO.cpp89 IfStmt, enumerator
/external/llvm-project/clang/lib/CodeGen/
DCodeGenPGO.cpp101 IfStmt, enumerator
/external/llvm-project/clang/unittests/ASTMatchers/
DASTMatchersTraversalTest.cpp1276 TEST(IfStmt, ChildTraversalMatchers) { in TEST() argument
1561 StatementMatcher IfStmt = in TEST() local
/external/llvm-project/flang/lib/Lower/
DPFTBuilder.cpp489 [&](const parser::IfStmt &) { lastIfStmtEvaluation = &eval; }, in analyzeBranches()
/external/clang/lib/AST/
DStmt.cpp766 IfStmt::IfStmt(const ASTContext &C, SourceLocation IL, bool IsConstexpr, in IfStmt() function in IfStmt
/external/clang/include/clang/AST/
DStmt.h97 friend class IfStmt; in LLVM_ALIGNAS() local
895 explicit IfStmt(EmptyShell Empty) : Stmt(IfStmtClass, Empty) { } in IfStmt() function
/external/llvm-project/flang/include/flang/Parser/
Dparse-tree.h2282 struct IfStmt { struct
2284 std::tuple<ScalarLogicalExpr, UnlabeledStatement<ActionStmt>> t;
/external/llvm-project/clang/include/clang/AST/
DStmt.h159 friend class IfStmt; variable