Home
last modified time | relevance | path

Searched refs:Statement (Results 1 – 25 of 77) sorted by relevance

1234

/openbsd-src/gnu/llvm/clang/include/clang/Tooling/Syntax/
H A DNodes.h91 Statement, enumerator
209 class Statement : public Tree {
211 Statement(NodeKind K) : Tree(K) {} in Statement() function
217 class UnknownStatement final : public Statement {
219 UnknownStatement() : Statement(NodeKind::UnknownStatement) {} in UnknownStatement()
224 class DeclarationStatement final : public Statement {
226 DeclarationStatement() : Statement(NodeKind::DeclarationStatement) {} in DeclarationStatement()
231 class EmptyStatement final : public Statement {
233 EmptyStatement() : Statement(NodeKind::EmptyStatement) {} in EmptyStatement()
238 class SwitchStatement final : public Statement {
[all …]
H A DNodes.td221 def Statement : External<Tree> {}
222 def UnknownStatement : External<Statement> {}
223 def DeclarationStatement : External<Statement> {}
224 def EmptyStatement : External<Statement> {}
225 def SwitchStatement : External<Statement> {}
226 def CaseStatement : External<Statement> {}
227 def DefaultStatement : External<Statement> {}
228 def IfStatement : External<Statement> {}
229 def ForStatement : External<Statement> {}
230 def WhileStatement : External<Statement> {}
[all …]
H A DSyntax.td58 // Statement = IfStatement | ForStatement | ...
59 // Statement is modeled using Alternatives, and IfStatement.base is Statement.
H A DMutations.h34 syntax::Statement *S);
/openbsd-src/gnu/llvm/clang/lib/Tooling/Syntax/
H A DNodes.cpp69 case syntax::NodeRole::Statement: in operator <<()
226 syntax::Statement *syntax::SwitchStatement::getBody() { in getBody()
227 return cast_or_null<syntax::Statement>( in getBody()
241 syntax::Statement *syntax::CaseStatement::getBody() { in getBody()
242 return cast_or_null<syntax::Statement>( in getBody()
251 syntax::Statement *syntax::DefaultStatement::getBody() { in getBody()
252 return cast_or_null<syntax::Statement>( in getBody()
261 syntax::Statement *syntax::IfStatement::getThenStatement() { in getThenStatement()
262 return cast_or_null<syntax::Statement>( in getThenStatement()
270 syntax::Statement *syntax::IfStatement::getElseStatement() { in getElseStatement()
[all …]
H A DMutations.cpp80 syntax::Statement *S) { in removeStatement()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/DIA/
H A DDIALineNumber.cpp73 BOOL Statement = 0; in isStatement() local
74 return (S_OK == LineNumber->get_statement(&Statement)) ? Statement : false; in isStatement()
/openbsd-src/gnu/llvm/clang/tools/clang-fuzzer/
H A Dcxx_proto.proto76 message Statement { message
85 repeated Statement statements = 1;
H A Dcxx_loop_proto.proto68 message Statement { message
73 repeated Statement statements = 1;
/openbsd-src/gnu/llvm/clang/include/clang/Analysis/FlowSensitive/
H A DCFGMatchSwitch.h79 case CFGElement::Statement: in Build()
/openbsd-src/gnu/llvm/llvm/utils/vim/syntax/
H A Dmachine-ir.vim32 HiLink mirStatement Statement
H A Dtablegen.vim41 HiLink tgKeyword Statement
H A Dllvm.vim254 HiLink llvmStatement Statement
/openbsd-src/gnu/llvm/clang/tools/clang-fuzzer/proto-to-cxx/
H A Dloop_proto_to_cxx.cpp114 std::ostream &operator<<(std::ostream &os, const Statement &x) { in operator <<()
H A Dproto_to_cxx.cpp72 std::ostream &operator<<(std::ostream &os, const Statement &x) { in operator <<()
/openbsd-src/gnu/llvm/clang/tools/clang-fuzzer/proto-to-llvm/
H A Dloop_proto_to_llvm.cpp129 std::ostream &operator<<(std::ostream &os, const Statement &x) { in operator <<()
/openbsd-src/gnu/llvm/clang/include/clang/Analysis/
H A DCFG.h65 Statement, enumerator
68 STMT_BEGIN = Statement,
132 explicit CFGStmt(const Stmt *S, Kind K = Statement) : CFGElement(K, S) { in CFGElement()
1040 void setLabel(Stmt *Statement) { Label = Statement; } in setLabel() argument
/openbsd-src/gnu/llvm/llvm/lib/Support/BLAKE3/
H A DLICENSE19 Statement of Purpose
83 as contemplated by Affirmer's express Statement of Purpose.
88 account Affirmer's express Statement of Purpose. In addition, to the
105 express Statement of Purpose.
/openbsd-src/gnu/usr.bin/perl/t/lib/warnings/
H A Ddoio205 Statement unlikely to be reached at - line .+
216 Statement unlikely to be reached at - line .+
/openbsd-src/gnu/llvm/clang/include/clang/ASTMatchers/
H A DASTMatchers.h5494 const Stmt *const Statement = internal::GetBodyMatcher<NodeType>::get(Node); in AST_POLYMORPHIC_MATCHER_P() local
5495 return (Statement != nullptr && in AST_POLYMORPHIC_MATCHER_P()
5496 InnerMatcher.matches(*Statement, Finder, Builder)); in AST_POLYMORPHIC_MATCHER_P()
5517 const Stmt *const Statement = Node.getBody(); in AST_MATCHER_P() local
5518 return (Statement != nullptr && in AST_MATCHER_P()
5519 InnerMatcher.matches(*Statement, Finder, Builder)); in AST_MATCHER_P()
/openbsd-src/gnu/llvm/clang/lib/Analysis/FlowSensitive/
H A DTypeErasedDataflowAnalysis.cpp344 case CFGElement::Statement: in builtinTransfer()
/openbsd-src/gnu/usr.bin/gcc/gcc/f/
H A Dbad.def248 LONG("Statement at %0 begins with invalid token [info -f g77 M LEX]")
476 "Statement at %0 invalid in this context")
479 "Statement at %0 invalid in context established by statement at %1")
482 "Statement at %0 must specify construct name specified at %1")
497 "Statement at %0 follows ELSE block for IF construct at %1")
1034 "Statement at %0 invalid in BLOCK DATA program unit at %1")
1088 "Statement function `%A' defined at %0 is not used")
/openbsd-src/gnu/gcc/gcc/doc/
H A Dtree-ssa.texi43 * Statement Operands:: Variables referenced by GIMPLE statements.
307 * Statement Sequences::
346 @node Statement Sequences
347 @subsubsection Statement Sequences
348 @cindex Statement Sequences
351 @code{STATEMENT_LIST}. Statement lists are modified and traversed
758 @node Statement Operands
759 @section Statement Operands
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaStmt.cpp1826 DeclMatcher(Sema &S, DeclSetVector &Decls, Stmt *Statement) : in DeclMatcher() argument
1828 if (!Statement) return; in DeclMatcher()
1830 Visit(Statement); in DeclMatcher()
1946 bool ProcessIterationStmt(Sema &S, Stmt* Statement, bool &Increment, in ProcessIterationStmt() argument
1948 if (auto Cleanups = dyn_cast<ExprWithCleanups>(Statement)) in ProcessIterationStmt()
1950 Statement = Cleanups->getSubExpr(); in ProcessIterationStmt()
1952 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(Statement)) { in ProcessIterationStmt()
1968 if (CXXOperatorCallExpr *Call = dyn_cast<CXXOperatorCallExpr>(Statement)) { in ProcessIterationStmt()
/openbsd-src/gnu/llvm/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyCommon.h208 case CFGElement::Statement: in walk()

1234