| /freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/DIA/ |
| H A D | DIALineNumber.cpp | 74 BOOL Statement = 0; in isStatement() local 75 return (S_OK == LineNumber->get_statement(&Statement)) ? Statement : false; in isStatement()
|
| /freebsd-12.1/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/ |
| H A D | tst.TestTransStability1.ksh.out | 9 Minimum Statement Attributes
|
| H A D | tst.TestTransStability2.ksh.out | 9 Minimum Statement Attributes
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Analysis/ |
| H A D | CFG.h | 67 Statement, enumerator 70 STMT_BEGIN = Statement, 129 explicit CFGStmt(Stmt *S, Kind K = Statement) : CFGElement(K, S) { in CFGElement() 836 void setLabel(Stmt *Statement) { Label = Statement; } in setLabel() argument
|
| /freebsd-12.1/sys/contrib/edk2/Include/Uefi/ |
| H A D | UefiInternalFormRepresentation.h | 939 EFI_IFR_STATEMENT_HEADER Statement; member 956 EFI_IFR_STATEMENT_HEADER Statement; member 997 EFI_IFR_STATEMENT_HEADER Statement; member
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 1438 DeclMatcher(Sema &S, DeclSetVector &Decls, Stmt *Statement) : in DeclMatcher() argument 1440 if (!Statement) return; in DeclMatcher() 1442 Visit(Statement); in DeclMatcher() 1558 bool ProcessIterationStmt(Sema &S, Stmt* Statement, bool &Increment, in ProcessIterationStmt() argument 1560 if (auto Cleanups = dyn_cast<ExprWithCleanups>(Statement)) in ProcessIterationStmt() 1562 Statement = Cleanups->getSubExpr(); in ProcessIterationStmt() 1564 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(Statement)) { in ProcessIterationStmt() 1580 if (CXXOperatorCallExpr *Call = dyn_cast<CXXOperatorCallExpr>(Statement)) { in ProcessIterationStmt()
|
| H A D | AnalysisBasedWarnings.cpp | 176 if (B.getKind() != CFGElement::Statement) in hasRecursiveCallInPath()
|
| H A D | SemaExpr.cpp | 13192 static Expr *maybeRebuildARCConsumingStmt(Stmt *Statement) { in maybeRebuildARCConsumingStmt() argument 13194 ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(Statement); in maybeRebuildARCConsumingStmt() 15946 bool Sema::DiagRuntimeBehavior(SourceLocation Loc, const Stmt *Statement, in DiagRuntimeBehavior() argument 15962 if (Statement && getCurFunctionOrMethodDecl()) { in DiagRuntimeBehavior() 15964 push_back(sema::PossiblyUnreachableDiag(PD, Loc, Statement)); in DiagRuntimeBehavior()
|
| /freebsd-12.1/contrib/gcc/doc/ |
| H A D | tree-ssa.texi | 43 * 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
|
| H A D | md.texi | 29 * Output Statement:: For more generality, write C code to output 174 of C code to compute the output. @xref{Output Statement}. 564 @node Output Statement 1473 the first, 1 for the second alternative, etc.). @xref{Output Statement}. 6226 (@pxref{Output Statement}) and the values must be small integers. For
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ |
| H A D | ThreadSafetyCommon.h | 207 case CFGElement::Statement: in walk()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/ |
| H A D | CFG.cpp | 516 std::unique_ptr<CFG> buildCFG(const Decl *D, Stmt *Statement); 1401 std::unique_ptr<CFG> CFGBuilder::buildCFG(const Decl *D, Stmt *Statement) { in buildCFG() argument 1403 if (!Statement) in buildCFG() 1421 CFGBlock *B = addStmt(Statement); in buildCFG() 4665 std::unique_ptr<CFG> CFG::buildCFG(const Decl *D, Stmt *Statement, in buildCFG() argument 4668 return Builder.buildCFG(D, Statement); in buildCFG() 4678 case CFGElement::Statement: in getDestructorDecl()
|
| H A D | ThreadSafety.cpp | 779 case CFGElement::Statement: { in traverseCFG() 2465 case CFGElement::Statement: { in runAnalysis()
|
| H A D | Consumed.cpp | 1345 case CFGElement::Statement: in run()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 4225 const Stmt *const Statement = internal::GetBodyMatcher<NodeType>::get(Node); in AST_POLYMORPHIC_MATCHER_P() local 4226 return (Statement != nullptr && in AST_POLYMORPHIC_MATCHER_P() 4227 InnerMatcher.matches(*Statement, Finder, Builder)); in AST_POLYMORPHIC_MATCHER_P()
|
| /freebsd-12.1/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
|
| H A D | rfc4518.txt | 735 Full Copyright Statement
|
| H A D | rfc3492.txt | 79 Full Copyright Statement.....................................35 1911 Full Copyright Statement
|
| H A D | rfc3454.txt | 106 Full Copyright Statement..........................................91 5047 Full Copyright Statement
|
| /freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/ |
| H A D | DumpOutputStyle.cpp | 854 char Statement = Line.isStatement() ? ' ' : '!'; in typesetLinesAndColumns() local 858 Statement); in typesetLinesAndColumns()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ |
| H A D | PathDiagnostic.cpp | 586 case CFGElement::Statement: in getLocationForCaller()
|
| H A D | ExprEngine.cpp | 584 case CFGElement::Statement: in processCFGElement()
|
| /freebsd-12.1/contrib/dtc/Documentation/ |
| H A D | dtc-paper.tex | 580 \section*{Legal Statement}
|