| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Tooling/Syntax/ |
| H A D | Nodes.h | 91 Statement, enumerator 209 class Statement : public Tree { 211 Statement(NodeKind K) : Tree(K) {} in Statement() function 243 Statement *getBody(); 253 Statement *getBody(); 262 Statement *getBody(); 272 Statement *getThenStatement(); 274 Statement *getElseStatement(); 283 Statement *getBody(); 292 Statement *getBody(); [all …]
|
| H A D | Nodes.td | 221 def Statement : External<Tree> {} 222 def UnknownStatement : 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> {} 232 def BreakStatement : External<Statement> {} [all …]
|
| H A D | Syntax.td | 58 // Statement = IfStatement | ForStatement | ... 59 // Statement is modeled using Alternatives, and IfStatement.base is Statement.
|
| H A D | Mutations.h | 34 syntax::Statement *S);
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Syntax/ |
| H A D | Nodes.cpp | 69 case syntax::NodeRole::Statement: in operator <<() 227 return cast_or_null<syntax::Statement>( in getBody() 242 return cast_or_null<syntax::Statement>( in getBody() 252 return cast_or_null<syntax::Statement>( in getBody() 262 return cast_or_null<syntax::Statement>( in getThenStatement() 271 return cast_or_null<syntax::Statement>( in getElseStatement() 281 return cast_or_null<syntax::Statement>( in getBody() 291 return cast_or_null<syntax::Statement>( in getBody() 321 return cast_or_null<syntax::Statement>( in getBody() 335 std::vector<syntax::Statement *> Children; in getStatements() [all …]
|
| H A D | Mutations.cpp | 80 syntax::Statement *S) { in removeStatement()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/ |
| H A D | DIALineNumber.cpp | 73 BOOL Statement = 0; in isStatement() local 74 return (S_OK == LineNumber->get_statement(&Statement)) ? Statement : false; in isStatement()
|
| /freebsd-14.2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/ |
| H A D | tst.TestTransStability2.ksh.out | 9 Minimum Statement Attributes
|
| H A D | tst.TestTransStability1.ksh.out | 9 Minimum Statement Attributes
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/ |
| H A D | CFGMatchSwitch.h | 79 case CFGElement::Statement: in Build()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/ |
| H A D | CFG.h | 66 Statement, enumerator 69 STMT_BEGIN = Statement, 134 explicit CFGStmt(const Stmt *S, Kind K = Statement) : CFGElement(K, S) { in CFGElement() 1068 void setLabel(Stmt *Statement) { Label = Statement; } in setLabel() argument
|
| /freebsd-14.2/sys/contrib/edk2/Include/Uefi/ |
| H A D | UefiInternalFormRepresentation.h | 934 EFI_IFR_STATEMENT_HEADER Statement; member 951 EFI_IFR_STATEMENT_HEADER Statement; member 992 EFI_IFR_STATEMENT_HEADER Statement; member
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/BLAKE3/ |
| H A D | LICENSE | 19 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-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Decl.h | 4418 Stmt *Statement = nullptr; variable 4422 : Decl(TopLevelStmt, DC, L), Statement(S) {} in TopLevelStmtDecl() 4427 static TopLevelStmtDecl *Create(ASTContext &C, Stmt *Statement); 4431 Stmt *getStmt() { return Statement; } in getStmt() 4432 const Stmt *getStmt() const { return Statement; } in getStmt() 4435 Statement = S; in setStmt()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 5732 const Stmt *const Statement = internal::GetBodyMatcher<NodeType>::get(Node); in AST_POLYMORPHIC_MATCHER_P() local 5733 return (Statement != nullptr && in AST_POLYMORPHIC_MATCHER_P() 5734 InnerMatcher.matches(*Statement, Finder, Builder)); in AST_POLYMORPHIC_MATCHER_P() 5755 const Stmt *const Statement = Node.getBody(); in AST_MATCHER_P() local 5756 return (Statement != nullptr && in AST_MATCHER_P() 5757 InnerMatcher.matches(*Statement, Finder, Builder)); in AST_MATCHER_P()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 1836 DeclMatcher(Sema &S, DeclSetVector &Decls, Stmt *Statement) : in DeclMatcher() argument 1838 if (!Statement) return; in DeclMatcher() 1840 Visit(Statement); in DeclMatcher() 1956 bool ProcessIterationStmt(Sema &S, Stmt* Statement, bool &Increment, in ProcessIterationStmt() argument 1958 if (auto Cleanups = dyn_cast<ExprWithCleanups>(Statement)) in ProcessIterationStmt() 1960 Statement = Cleanups->getSubExpr(); in ProcessIterationStmt() 1962 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(Statement)) { in ProcessIterationStmt() 1978 if (CXXOperatorCallExpr *Call = dyn_cast<CXXOperatorCallExpr>(Statement)) { in ProcessIterationStmt()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/Analyses/ |
| H A D | ThreadSafetyCommon.h | 208 case CFGElement::Statement: in walk()
|
| /freebsd-14.2/secure/caroot/trusted/ |
| H A D | QuoVadis_Root_CA_3.pem | 70 …titutes acceptance of the QuoVadis Root CA 3 Certificate Policy / Certification Practice Statement.
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
| H A D | TypeErasedDataflowAnalysis.cpp | 425 case CFGElement::Statement: in builtinTransfer()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | CFG.cpp | 553 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() 5239 std::unique_ptr<CFG> CFG::buildCFG(const Decl *D, Stmt *Statement, in buildCFG() argument 5242 return Builder.buildCFG(D, Statement); in buildCFG() 5297 case CFGElement::Statement: in getDestructorDecl() 5768 case CFGElement::Kind::Statement: in print_elem()
|
| /freebsd-14.2/crypto/heimdal/lib/wind/ |
| H A D | rfc3491.txt | 343 13. Full Copyright Statement
|
| H A D | rfc3490.txt | 47 1.1 Problem Statement......................................... 3 82 13. Full Copyright Statement..................................... 22 119 1.1 Problem Statement 1183 13. Full Copyright Statement
|
| H A D | rfc4013.txt | 287 Full Copyright Statement
|
| /freebsd-14.2/crypto/openssl/doc/internal/man7/ |
| H A D | build.info.pod | 168 =head3 Statement attributes 216 Statement values are normally split into a list of tokens, separated
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | Decl.cpp | 5528 TopLevelStmtDecl *TopLevelStmtDecl::Create(ASTContext &C, Stmt *Statement) { in Create() argument 5529 assert(Statement); in Create() 5533 SourceLocation BeginLoc = Statement->getBeginLoc(); in Create() 5536 return new (C, DC) TopLevelStmtDecl(DC, BeginLoc, Statement); in Create() 5546 return SourceRange(getLocation(), Statement->getEndLoc()); in getSourceRange()
|