/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/ |
H A D | gtest-death-test.h | 168 # define ASSERT_EXIT(statement, predicate, regex) \ argument 169 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_) 173 # define EXPECT_EXIT(statement, predicate, regex) \ argument 174 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_) 179 # define ASSERT_DEATH(statement, regex) \ argument 180 ASSERT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex) 184 # define EXPECT_DEATH(statement, regex) \ argument 185 EXPECT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex) 259 # define EXPECT_DEBUG_DEATH(statement, regex) \ argument 260 GTEST_EXECUTE_STATEMENT_(statement, regex) [all …]
|
H A D | gtest-spi.h | 144 #define EXPECT_FATAL_FAILURE(statement, substr) \ argument 148 static void Execute() { statement; }\ 161 #define EXPECT_FATAL_FAILURE_ON_ALL_THREADS(statement, substr) \ argument 165 static void Execute() { statement; }\ 210 #define EXPECT_NONFATAL_FAILURE(statement, substr) \ argument 220 if (::testing::internal::AlwaysTrue()) { statement; }\ 224 #define EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(statement, substr) \ argument 234 if (::testing::internal::AlwaysTrue()) { statement; }\
|
/netbsd-src/external/bsd/kyua-cli/dist/utils/sqlite/ |
H A D | statement.cpp | 102 struct utils::sqlite::statement::impl { 149 sqlite::statement::statement(database& db, void* raw_stmt) : in statement() function in sqlite::statement 159 sqlite::statement::~statement(void) in ~statement() 172 sqlite::statement::step_without_results(void) in step_without_results() 187 sqlite::statement::step(void) in step() 208 sqlite::statement::column_count(void) in column_count() 220 sqlite::statement::column_name(const int index) in column_name() 235 sqlite::statement::column_type(const int index) in column_type() 249 sqlite::statement::column_id(const char* name) in column_id() 277 sqlite::statement::column_blob(const int index) in column_blob() [all …]
|
H A D | statement_test.cpp | 50 sqlite::statement stmt = db.create_statement( in ATF_TEST_CASE_BODY() 63 sqlite::statement stmt = db.create_statement( in ATF_TEST_CASE_BODY() 75 sqlite::statement stmt = db.create_statement( in ATF_TEST_CASE_BODY() 86 sqlite::statement stmt = db.create_statement( in ATF_TEST_CASE_BODY() 100 sqlite::statement stmt = db.create_statement( in ATF_TEST_CASE_BODY() 112 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); in ATF_TEST_CASE_BODY() 125 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); in ATF_TEST_CASE_BODY() 139 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); in ATF_TEST_CASE_BODY() 158 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); in ATF_TEST_CASE_BODY() 178 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); in ATF_TEST_CASE_BODY() [all …]
|
/netbsd-src/external/bsd/byacc/dist/test/btyacc/ |
H A D | btyacc_demo.output | 76 49 statement : decl 83 53 statement : IF '(' $$6 expr ')' THEN $$8 statement ELSE $$9 statement 84 54 | IF '(' $$6 expr ')' THEN $$8 statement 88 56 statement : $$10 block_statement 91 58 | statement_list $$2 statement 778 statement_list : statement_list . $$2 statement (58) 908 statement_list : statement_list $$2 . statement (58) 927 statement goto 86 1012 statement : IF . '(' $$6 expr ')' THEN $$8 statement ELSE $$9 statement (53) 1013 statement : IF . '(' $$6 expr ')' THEN $$8 statement (54) [all …]
|
/netbsd-src/tests/usr.bin/indent/ |
H A D | label.c | 83 statement(); in label_indentation() 86 statement(); in label_indentation() 89 statement(); in label_indentation() 92 statement(); in label_indentation() 95 statement(); in label_indentation() 98 statement(); in label_indentation() 112 statement(); in label_indentation() 115 statement(); in label_indentation() 118 statement(); in label_indentation() 121 statement(); in label_indentation() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
H A D | statement_rewrite_walker.d | 16 import dmd.statement; 80 if (s.statement) in visit() 81 visitStmt(s.statement); in visit() 132 if (s.statement) in visit() 133 visitStmt(s.statement); in visit() 138 if (s.statement) in visit() 139 visitStmt(s.statement); in visit() 144 if (s.statement) in visit() 145 visitStmt(s.statement); in visit() 185 if (s.statement) in visit() [all …]
|
H A D | statement.d | 14 module dmd.statement; 83 return DYNCAST.statement; in dyncast() 701 Statement statement; variable 704 extern (D) this(const ref Loc loc, Statement statement, Loc endloc) in this() argument 707 this.statement = statement; in this() 713 return new ScopeStatement(loc, statement ? statement.syntaxCopy() : null, endloc); in syntaxCopy() 718 if (statement) in inout() 719 return statement.endsWithReturnStatement(); in inout() 726 return statement ? statement.hasBreak() : false; in hasBreak() 731 return statement ? statement.hasContinue() : false; in hasContinue() [all …]
|
H A D | stmtstate.d | 15 import dmd.statement; 28 Statement statement; in StmtState() local 38 this(StmtState* prev, Statement statement) in StmtState() 41 this.statement = statement; in StmtState() 61 related = bc.statement.getRelatedLabeled(); in StmtState() 64 if (bc.statement == related && bc.prev.ident == ident) in StmtState()
|
/netbsd-src/external/bsd/kyua-cli/dist/store/ |
H A D | dbtypes.hpp | 52 void bind_bool(utils::sqlite::statement&, const char*, const bool); 53 void bind_delta(utils::sqlite::statement&, const char*, 55 void bind_optional_string(utils::sqlite::statement&, const char*, 57 void bind_timestamp(utils::sqlite::statement&, const char*, 59 bool column_bool(utils::sqlite::statement&, const char*); 60 utils::datetime::delta column_delta(utils::sqlite::statement&, const char*); 61 std::string column_optional_string(utils::sqlite::statement&, const char*); 62 utils::datetime::timestamp column_timestamp(utils::sqlite::statement&,
|
H A D | dbtypes.cpp | 47 store::bind_bool(sqlite::statement& stmt, const char* field, const bool value) in bind_bool() 59 store::bind_delta(sqlite::statement& stmt, const char* field, in bind_delta() 76 store::bind_optional_string(sqlite::statement& stmt, const char* field, in bind_optional_string() 92 store::bind_timestamp(sqlite::statement& stmt, const char* field, in bind_timestamp() 108 store::column_bool(sqlite::statement& stmt, const char* column) in column_bool() 133 store::column_delta(sqlite::statement& stmt, const char* column) in column_delta() 152 store::column_optional_string(sqlite::statement& stmt, const char* column) in column_optional_string() 175 store::column_timestamp(sqlite::statement& stmt, const char* column) in column_timestamp()
|
H A D | transaction.cpp | 83 sqlite::statement stmt = db.create_statement( in get_env_vars() 109 sqlite::statement stmt = db.create_statement( in get_metadata() 134 sqlite::statement stmt = db.create_statement( in get_file() 177 sqlite::statement stmt = db.create_statement( in get_test_cases() 207 parse_result(sqlite::statement& stmt, const char* type_column, in parse_result() 253 sqlite::statement stmt = db.create_statement( in put_env_vars() 276 sqlite::statement stmt = db.create_statement( in last_rowid() 301 sqlite::statement stmt = db.create_statement( in put_metadata() 349 sqlite::statement stmt = db.create_statement( in put_file() 376 sqlite::statement stmt = db.create_statement( in get_test_program() [all …]
|
H A D | dbtypes_test.cpp | 57 do_ok_test(void (*bind)(sqlite::statement&, const char*, Type1), in do_ok_test() argument 59 Type3 (*column)(sqlite::statement&, const char*)) in do_ok_test() argument 64 sqlite::statement insert = db.create_statement("INSERT INTO test " in do_ok_test() 69 sqlite::statement query = db.create_statement("SELECT * FROM test"); in do_ok_test() 84 Type2 (*column)(sqlite::statement&, const char*), in do_invalid_test() argument 90 sqlite::statement insert = db.create_statement("INSERT INTO test " in do_invalid_test() 95 sqlite::statement query = db.create_statement("SELECT * FROM test"); in do_invalid_test()
|
/netbsd-src/external/bsd/elftosb/dist/elftosb2/ |
H A D | ConversionController.cpp | 603 StatementASTNode * statement = dynamic_cast<StatementASTNode*>(*it); in convertStatementList() local 604 if (!statement) in convertStatementList() 610 OperationSequence * sequence = convertOneStatement(statement); in convertStatementList() 627 OperationSequence * ConversionController::convertOneStatement(StatementASTNode * statement) in convertOneStatement() argument 630 LoadStatementASTNode * load = dynamic_cast<LoadStatementASTNode*>(statement); in convertOneStatement() 637 CallStatementASTNode * call = dynamic_cast<CallStatementASTNode*>(statement); in convertOneStatement() 644 FromStatementASTNode * from = dynamic_cast<FromStatementASTNode*>(statement); in convertOneStatement() 651 ModeStatementASTNode * mode = dynamic_cast<ModeStatementASTNode*>(statement); in convertOneStatement() 658 IfStatementASTNode * ifStmt = dynamic_cast<IfStatementASTNode*>(statement); in convertOneStatement() 665 MessageStatementASTNode * messageStmt = dynamic_cast<MessageStatementASTNode*>(statement); in convertOneStatement() [all …]
|
H A D | ConversionController.h | 104 OperationSequence * convertOneStatement(StatementASTNode * statement); 105 OperationSequence * convertLoadStatement(LoadStatementASTNode * statement); 106 OperationSequence * convertCallStatement(CallStatementASTNode * statement); 107 OperationSequence * convertFromStatement(FromStatementASTNode * statement); 108 OperationSequence * convertModeStatement(ModeStatementASTNode * statement); 109 OperationSequence * convertIfStatement(IfStatementASTNode * statement); 110 void handleMessageStatement(MessageStatementASTNode * statement);
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/ |
H A D | gtest-death-test-internal.h | 83 static bool Create(const char* statement, Matcher<const std::string&> matcher, 149 virtual bool Create(const char* statement, in GTEST_DISABLE_MSC_WARNINGS_POP_() 157 bool Create(const char* statement, Matcher<const std::string&> matcher, 190 # define GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, death_test) \ argument 192 GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ 207 # define GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, death_test) \ argument 208 GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) 214 #define GTEST_DEATH_TEST_(statement, predicate, regex_or_matcher, fail) \ argument 219 #statement, \ 235 GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, gtest_dt); \ [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
H A D | statement.c | 58 LabelStatement *checkLabeledLoop(Scope *sc, Statement *statement) in checkLabeledLoop() argument 60 if (sc->slabel && sc->slabel->statement == statement) in checkLabeledLoop() 666 this->statement = s; in ScopeStatement() 672 return new ScopeStatement(loc, statement ? statement->syntaxCopy() : NULL, endloc); in syntaxCopy() 677 if (statement) in isReturnStatement() 678 return statement->isReturnStatement(); in isReturnStatement() 685 return statement ? statement->hasBreak() : false; in hasBreak() 690 return statement ? statement->hasContinue() : false; in hasContinue() 707 this->statement = s; in ForwardingStatement() 716 this->statement = s; in ForwardingStatement() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/gcc/doc/ |
H A D | gimple.texi | 82 * Adding a new GIMPLE statement code:: 100 may not be relevant to every GIMPLE statement, but those were 140 this statement. 158 Bitflag to indicate whether the statement has been modified. 160 statement for operands. 163 Bitflag to indicate whether this statement contains operands that 167 Bitflag to indicate whether this statement contains memory 173 IDs to every statement. These IDs must be assigned and used by 178 location for this statement. It is inherited from the front 182 Number of operands that this statement has. This specifies the [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/doc/ |
H A D | gimple.texi | 82 * Adding a new GIMPLE statement code:: 100 may not be relevant to every GIMPLE statement, but those were 140 this statement. 158 Bitflag to indicate whether the statement has been modified. 160 statement for operands. 163 Bitflag to indicate whether this statement contains operands that 167 Bitflag to indicate whether this statement contains memory 173 IDs to every statement. These IDs must be assigned and used by 178 location for this statement. It is inherited from the front 182 Number of operands that this statement has. This specifies the [all …]
|
/netbsd-src/external/bsd/kyua-cli/dist/cli/ |
H A D | cmd_db_exec_test.cpp | 58 sqlite::statement create = db.create_statement( in do_format_cell_test() 62 sqlite::statement insert = db.create_statement( in do_format_cell_test() 67 sqlite::statement query = db.create_statement("SELECT * FROM test"); in do_format_cell_test() 120 sqlite::statement create = db.create_statement( in ATF_TEST_CASE_BODY() 124 sqlite::statement query = db.create_statement( in ATF_TEST_CASE_BODY() 135 sqlite::statement create = db.create_statement( in ATF_TEST_CASE_BODY() 140 sqlite::statement insert = db.create_statement( in ATF_TEST_CASE_BODY() 146 sqlite::statement query = db.create_statement("SELECT * FROM test"); in ATF_TEST_CASE_BODY()
|
/netbsd-src/external/gpl3/binutils/dist/ld/ |
H A D | ldwrite.c | 40 build_link_order (lang_statement_union_type *statement) in build_link_order() argument 42 switch (statement->header.type) in build_link_order() 50 output_section = statement->data_statement.output_section; in build_link_order() 63 link_order->offset = statement->data_statement.output_offset; in build_link_order() 69 value = statement->data_statement.value; in build_link_order() 80 switch (statement->data_statement.type) in build_link_order() 107 switch (statement->data_statement.type) in build_link_order() 118 if (statement->data_statement.type == QUAD) in build_link_order() 161 rs = &statement->reloc_statement; in build_link_order() 209 asection *i = statement->input_section.section; in build_link_order() [all …]
|
/netbsd-src/external/gpl3/binutils.old/dist/ld/ |
H A D | ldwrite.c | 40 build_link_order (lang_statement_union_type *statement) in build_link_order() argument 42 switch (statement->header.type) in build_link_order() 50 output_section = statement->data_statement.output_section; in build_link_order() 63 link_order->offset = statement->data_statement.output_offset; in build_link_order() 66 value = statement->data_statement.value; in build_link_order() 77 switch (statement->data_statement.type) in build_link_order() 104 switch (statement->data_statement.type) in build_link_order() 115 if (statement->data_statement.type == QUAD) in build_link_order() 158 rs = &statement->reloc_statement; in build_link_order() 204 asection *i = statement->input_section.section; in build_link_order() [all …]
|
/netbsd-src/external/mpl/bind/dist/bin/rndc/ |
H A D | rndc.conf.rst | 42 statements: an options statement, a server statement, and a key 43 statement. 45 The ``options`` statement contains five clauses. The ``default-server`` 49 identified by a ``key`` statement. If no ``keyid`` is provided on the 51 ``server`` statement, this default key is used to authenticate the 55 found in a matching ``server`` statement, this default port is used 60 After the ``server`` keyword, the server statement includes a string 61 which is the hostname or address for a name server. The statement has 63 name must match the name of a key statement in the file. The port number 70 The ``key`` statement begins with an identifying string, the name of the [all …]
|
/netbsd-src/external/gpl3/gcc/dist/gcc/d/ |
H A D | toir.cc | 340 this->check_previous_goto (ent->statement, ref); in define_label() 379 fwdref->statement = from; in check_goto() 410 location = make_location_t (fwdref->statement->loc); in check_previous_goto() 454 ent->statement = s; in lookup_label() 723 LabelStatement *label = sym->statement; in visit() 725 Statement *stmt = label->statement->getRelatedLabeled (); in visit() 740 LabelStatement *label = sym->statement; in visit() 742 this->do_jump (this->lookup_bc_label (label->statement, in visit() 753 gcc_assert (s->label->statement != NULL); in visit() 754 gcc_assert (s->tf == s->label->statement->tf); in visit() [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/ |
H A D | toir.cc | 339 this->check_previous_goto (ent->statement, ref); in define_label() 378 fwdref->statement = from; in check_goto() 409 location = make_location_t (fwdref->statement->loc); in check_previous_goto() 465 ent->statement = s; in lookup_label() 733 LabelStatement *label = this->func_->searchLabel (s->ident)->statement; in visit() 735 Statement *stmt = label->statement->getRelatedLabeled (); in visit() 749 LabelStatement *label = this->func_->searchLabel (s->ident)->statement; in visit() 751 this->do_jump (this->lookup_bc_label (label->statement, in visit() 762 gcc_assert (s->label->statement != NULL); in visit() 763 gcc_assert (s->tf == s->label->statement->tf); in visit() [all …]
|