Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/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);
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/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()
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/
H A Dtst.TestTransStability1.ksh.out9 Minimum Statement Attributes
H A Dtst.TestTransStability2.ksh.out9 Minimum Statement Attributes
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DCFGMatchSwitch.h79 case CFGElement::Statement: in Build()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/
H A DCFG.h66 Statement, enumerator
69 STMT_BEGIN = Statement,
134 explicit CFGStmt(const Stmt *S, Kind K = Statement) : CFGElement(K, S) { in CFGElement()
1071 void setLabel(Stmt *Statement) { Label = Statement; } in setLabel() argument
/freebsd/sys/contrib/edk2/Include/Uefi/
H A DUefiInternalFormRepresentation.h934 EFI_IFR_STATEMENT_HEADER Statement; member
951 EFI_IFR_STATEMENT_HEADER Statement; member
992 EFI_IFR_STATEMENT_HEADER Statement; member
/freebsd/contrib/llvm-project/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.
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h5756 const Stmt *const Statement = internal::GetBodyMatcher<NodeType>::get(Node); in AST_POLYMORPHIC_MATCHER_P() local
5757 return (Statement != nullptr && in AST_POLYMORPHIC_MATCHER_P()
5758 InnerMatcher.matches(*Statement, Finder, Builder)); in AST_POLYMORPHIC_MATCHER_P()
5779 const Stmt *const Statement = Node.getBody(); in AST_MATCHER_P() local
5780 return (Statement != nullptr && in AST_MATCHER_P()
5781 InnerMatcher.matches(*Statement, Finder, Builder)); in AST_MATCHER_P()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp1859 DeclMatcher(Sema &S, DeclSetVector &Decls, Stmt *Statement) : in DeclMatcher() argument
1861 if (!Statement) return; in DeclMatcher()
1863 Visit(Statement); in DeclMatcher()
1979 bool ProcessIterationStmt(Sema &S, Stmt* Statement, bool &Increment, in ProcessIterationStmt() argument
1981 if (auto Cleanups = dyn_cast<ExprWithCleanups>(Statement)) in ProcessIterationStmt()
1983 Statement = Cleanups->getSubExpr(); in ProcessIterationStmt()
1985 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(Statement)) { in ProcessIterationStmt()
2001 if (CXXOperatorCallExpr *Call = dyn_cast<CXXOperatorCallExpr>(Statement)) { in ProcessIterationStmt()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyCommon.h208 case CFGElement::Statement: in walk()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h4434 Stmt *Statement = nullptr; variable
4438 : Decl(TopLevelStmt, DC, L), DeclContext(TopLevelStmt), Statement(S) {} in TopLevelStmtDecl()
4443 static TopLevelStmtDecl *Create(ASTContext &C, Stmt *Statement);
4447 Stmt *getStmt() { return Statement; } in getStmt()
4448 const Stmt *getStmt() const { return Statement; } in getStmt()
/freebsd/secure/caroot/trusted/
H A DQuoVadis_Root_CA_3.pem70 …titutes acceptance of the QuoVadis Root CA 3 Certificate Policy / Certification Practice Statement.
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DTypeErasedDataflowAnalysis.cpp383 case CFGElement::Statement: in builtinTransfer()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp553 std::unique_ptr<CFG> buildCFG(const Decl *D, Stmt *Statement);
1569 std::unique_ptr<CFG> CFGBuilder::buildCFG(const Decl *D, Stmt *Statement) { in buildCFG() argument
1571 if (!Statement) in buildCFG()
1586 CFGBlock *B = addStmt(Statement); in buildCFG()
5236 std::unique_ptr<CFG> CFG::buildCFG(const Decl *D, Stmt *Statement, in buildCFG() argument
5239 return Builder.buildCFG(D, Statement); in buildCFG()
5294 case CFGElement::Statement: in getDestructorDecl()
5765 case CFGElement::Kind::Statement: in print_elem()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp5593 TopLevelStmtDecl *TopLevelStmtDecl::Create(ASTContext &C, Stmt *Statement) { in Create() argument
5597 SourceLocation Loc = Statement ? Statement->getBeginLoc() : SourceLocation(); in Create()
5600 return new (C, DC) TopLevelStmtDecl(DC, Loc, Statement); in Create()
5610 return SourceRange(getLocation(), Statement->getEndLoc()); in getSourceRange()
5615 Statement = S; in setStmt()
5616 setLocation(Statement->getBeginLoc()); in setStmt()
/freebsd/crypto/heimdal/lib/wind/
H A Drfc3491.txt343 13. Full Copyright Statement
H A Drfc3490.txt47 1.1 Problem Statement......................................... 3
82 13. Full Copyright Statement..................................... 22
119 1.1 Problem Statement
1183 13. Full Copyright Statement
H A Drfc4013.txt287 Full Copyright Statement
/freebsd/crypto/openssl/doc/internal/man7/
H A Dbuild.info.pod168 =head3 Statement attributes
216 Statement values are normally split into a list of tokens, separated

12