Searched refs:stmt (Results 1 - 25 of 746) sorted by relevance

1234567891011>>

/netbsd-current/tests/usr.bin/indent/
H A Dpsym_do_stmt.c11 do stmt(); while (0);
12 do { stmt(); } while (0);
13 do /* comment */ stmt(); while (0);
22 stmt();
25 stmt();
28 stmt();
H A Dlsym_if.c12 if(cond)stmt();
21 stmt();
32 if(0)if(1)if(2)stmt();{}
41 stmt();
H A Dpsym_semicolon.c11 void func(void) { stmt(); }
18 stmt();
25 stmt();
32 stmt();
H A Dopt_cd.c10 stmt; /* declaration comment, as the code in this line starts at indentation level 0 */
15 stmt; /* statement */
21 stmt; /* declaration comment, as the
29 stmt; /* statement */
36 stmt; /* declaration comment, as the
44 stmt; /* statement */
H A Dpsym_if_expr_stmt.c19 stmt();
21 stmt();
23 stmt();
H A Dlsym_do.c18 do stmt();while(cond);
27 stmt();
58 do stmt(); while (0);
60 do { stmt(); } while (0);
62 do /* comment */ stmt(); while (0);
73 stmt();
77 stmt();
81 stmt();
95 stmt();
100 stmt();
[all...]
H A Dopt_eei.c20 stmt();
24 stmt();
27 stmt();
30 stmt();
42 stmt();
46 stmt();
49 stmt();
52 stmt();
66 stmt();
70 stmt();
[all...]
H A Dlsym_while.c12 while(cond)stmt();
13 do stmt();while(cond);
22 stmt();
24 stmt();
H A Dopt_bbb.c73 stmt; /* not a block comment */
77 stmt; /*
90 stmt; /* not a block comment */
93 stmt; /* This is not a block comment, as it goes to
H A Dpsym_stmt.c7 * TODO: Explain why the stack contains 'lbrace' 'stmt' instead of only 'lbrace'.
16 stmt();
17 stmt; /* probably some macro */
20 stmt();
48 stmt();
50 stmt();
52 stmt();
54 stmt();
H A Dpsym_do.c14 do stmt(); while (0);
24 stmt();
H A Dpsym_else.c26 stmt();
28 stmt();
31 stmt();
42 stmt();
44 stmt();
47 stmt();
H A Dlsym_semicolon.c28 stmt();
30 stmt();
39 stmt();
41 stmt();
51 stmt;
53 stmt;
H A Dopt_badp.c64 stmt();
73 stmt();
89 stmt();
99 stmt();
113 stmt();
131 stmt();
150 stmt();
162 stmt();
192 void f(void) { int decl; stmt; }
201 stmt;
[all...]
H A Dpsym_if_expr.c11 if(cond) stmt();
20 stmt();
/netbsd-current/external/bsd/kyua-cli/dist/utils/sqlite/
H A Dstatement_test.cpp50 sqlite::statement stmt = db.create_statement( local
53 ATF_REQUIRE(!stmt.step());
63 sqlite::statement stmt = db.create_statement( local
66 ATF_REQUIRE(stmt.step());
67 ATF_REQUIRE(!stmt.step());
75 sqlite::statement stmt = db.create_statement( local
77 ATF_REQUIRE(!stmt.step());
78 REQUIRE_API_ERROR("sqlite3_step", stmt.step());
86 sqlite::statement stmt = db.create_statement( local
89 stmt
100 sqlite::statement stmt = db.create_statement( local
112 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
125 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
139 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
158 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
178 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
194 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
211 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
230 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
245 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
258 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
271 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
284 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
297 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
310 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
323 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
336 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
351 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
367 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
380 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
396 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
409 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
425 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
438 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
454 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
467 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
483 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
496 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
509 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
525 sqlite::statement stmt = db.create_statement("SELECT * FROM foo"); local
538 sqlite::statement stmt = db.create_statement("SELECT 3, ?"); local
557 sqlite::statement stmt = db.create_statement("SELECT 3, ?"); local
573 sqlite::statement stmt = db.create_statement("SELECT 3, ?"); local
589 sqlite::statement stmt = db.create_statement("SELECT 3, ?"); local
605 sqlite::statement stmt = db.create_statement("SELECT 3, ?"); local
620 sqlite::statement stmt = db.create_statement("SELECT 3, ?"); local
637 sqlite::statement stmt = db.create_statement("SELECT 3, :foo"); local
657 sqlite::statement stmt = db.create_statement("SELECT 3, :foo"); local
674 sqlite::statement stmt = db.create_statement("SELECT 3, ?, ?"); local
683 sqlite::statement stmt = db.create_statement("SELECT 3, :foo, ?, :bar"); local
693 sqlite::statement stmt = db.create_statement("SELECT 3, :foo, ?, :bar"); local
703 sqlite::statement stmt = db.create_statement("SELECT 3, ?"); local
[all...]
/netbsd-current/external/bsd/kyua-cli/dist/store/
H A Ddbtypes.cpp43 /// \param stmt The statement to which to bind the parameter.
47 store::bind_bool(sqlite::statement& stmt, const char* field, const bool value) argument
49 stmt.bind(field, value ? "true" : "false");
55 /// \param stmt The statement to which to bind the parameter.
59 store::bind_delta(sqlite::statement& stmt, const char* field, argument
62 stmt.bind(field, static_cast< int64_t >(delta.to_microseconds()));
71 /// \param stmt The statement to which to bind the parameter.
72 /// \param stmt The statement to which to bind the field.
76 store::bind_optional_string(sqlite::statement& stmt, const char* field, argument
80 stmt
92 bind_timestamp(sqlite::statement& stmt, const char* field, const datetime::timestamp& timestamp) argument
108 column_bool(sqlite::statement& stmt, const char* column) argument
133 column_delta(sqlite::statement& stmt, const char* column) argument
152 column_optional_string(sqlite::statement& stmt, const char* column) argument
175 column_timestamp(sqlite::statement& stmt, const char* column) argument
[all...]
H A Dtransaction.cpp83 sqlite::statement stmt = db.create_statement( local
86 stmt.bind(":context_id", context_id);
88 while (stmt.step()) {
89 const std::string name = stmt.safe_column_text("var_name");
90 const std::string value = stmt.safe_column_text("var_value");
109 sqlite::statement stmt = db.create_statement( local
111 stmt.bind(":metadata_id", metadata_id);
112 while (stmt.step()) {
113 const std::string name = stmt.safe_column_text("property_name");
114 const std::string value = stmt
134 sqlite::statement stmt = db.create_statement( local
177 sqlite::statement stmt = db.create_statement( local
207 parse_result(sqlite::statement& stmt, const char* type_column, const char* reason_column) argument
253 sqlite::statement stmt = db.create_statement( local
276 sqlite::statement stmt = db.create_statement( local
301 sqlite::statement stmt = db.create_statement( local
349 sqlite::statement stmt = db.create_statement( local
376 sqlite::statement stmt = db.create_statement( local
541 sqlite::statement stmt = db.create_statement( local
657 sqlite::statement stmt = _pimpl->_db.create_statement( local
700 sqlite::statement stmt = _pimpl->_db.create_statement( local
729 sqlite::statement stmt = _pimpl->_db.create_statement( local
761 sqlite::statement stmt = _pimpl->_db.create_statement( variable
788 sqlite::statement stmt = _pimpl->_db.create_statement( local
822 sqlite::statement stmt = _pimpl->_db.create_statement( local
865 sqlite::statement stmt = _pimpl->_db.create_statement( local
904 sqlite::statement stmt = _pimpl->_db.create_statement( local
939 sqlite::statement stmt = _pimpl->_db.create_statement( local
[all...]
H A Dmetadata.cpp46 /// \param stmt The statement from which to get the column value.
54 int64_column(sqlite::statement& stmt, const char* column) argument
58 index = stmt.column_id(column);
63 if (stmt.column_type(index) != sqlite::type_integer)
66 return stmt.column_int64(index);
118 sqlite::statement stmt = db.create_statement( local
121 if (!stmt.step())
125 static_cast< int >(int64_column(stmt, "schema_version"));
126 const int64_t timestamp_ = int64_column(stmt, "timestamp");
128 if (stmt
[all...]
/netbsd-current/external/bsd/kyua-cli/dist/cli/
H A Dcmd_db_exec.cpp79 /// \param stmt The statement whose cell to format.
84 cli::format_cell(sqlite::statement& stmt, const int index) argument
86 switch (stmt.column_type(index)) {
88 const sqlite::blob blob = stmt.column_blob(index);
93 return F("%s") % stmt.column_double(index);
96 return F("%s") % stmt.column_int64(index);
102 return stmt.column_text(index);
111 /// \param stmt The statement whose columns to format.
115 cli::format_headers(sqlite::statement& stmt) argument
119 for (; i < stmt
132 format_row(sqlite::statement& stmt) argument
170 sqlite::statement stmt = backend.database().create_statement( local
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/objcp/
H A Dobjcp-decl.c103 objcp_end_compound_stmt (tree stmt, int flags ATTRIBUTE_UNUSED) argument
107 if (TREE_CODE (stmt) == BIND_EXPR)
108 BIND_EXPR_BODY (stmt) = do_poplevel (BIND_EXPR_BODY (stmt));
109 else if (STATEMENT_LIST_NO_SCOPE (stmt))
110 stmt = pop_stmt_list (stmt);
112 stmt = do_poplevel (stmt);
114 return stmt;
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/objcp/
H A Dobjcp-decl.cc103 objcp_end_compound_stmt (tree stmt, int flags ATTRIBUTE_UNUSED) argument
107 if (TREE_CODE (stmt) == BIND_EXPR)
108 BIND_EXPR_BODY (stmt) = do_poplevel (BIND_EXPR_BODY (stmt));
109 else if (STATEMENT_LIST_NO_SCOPE (stmt))
110 stmt = pop_stmt_list (stmt);
112 stmt = do_poplevel (stmt);
114 return stmt;
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dgimple-ssa-nonnull-compare.c54 gimple *stmt = USE_STMT (use_p); local
56 location_t loc = gimple_location (stmt);
57 if (gimple_code (stmt) == GIMPLE_COND)
58 switch (gimple_cond_code (stmt))
62 if (gimple_cond_lhs (stmt) == d)
63 op = gimple_cond_rhs (stmt);
68 else if (is_gimple_assign (stmt))
69 switch (gimple_assign_rhs_code (stmt))
73 if (gimple_assign_rhs1 (stmt) == d)
74 op = gimple_assign_rhs2 (stmt);
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dgimple-ssa-nonnull-compare.cc54 gimple *stmt = USE_STMT (use_p); local
56 location_t loc = gimple_location (stmt);
57 if (gimple_code (stmt) == GIMPLE_COND)
58 switch (gimple_cond_code (stmt))
62 if (gimple_cond_lhs (stmt) == d)
63 op = gimple_cond_rhs (stmt);
68 else if (is_gimple_assign (stmt))
69 switch (gimple_assign_rhs_code (stmt))
73 if (gimple_assign_rhs1 (stmt) == d)
74 op = gimple_assign_rhs2 (stmt);
[all...]
H A Dtree-ssa-dse.cc98 the stmt may define.
106 initialize_ao_ref_for_dse (gimple *stmt, ao_ref *write, bool may_def_ok = false) argument
109 if (gimple_call_builtin_p (stmt, BUILT_IN_NORMAL))
111 switch (DECL_FUNCTION_CODE (gimple_call_fndecl (stmt)))
122 tree size = gimple_call_arg (stmt, 2);
123 tree ptr = gimple_call_arg (stmt, 0);
133 tree nelem = gimple_call_arg (stmt, 0);
134 tree selem = gimple_call_arg (stmt, 1);
138 && (lhs = gimple_call_lhs (stmt)) != NULL_TREE)
151 else if (tree lhs = gimple_get_lhs (stmt))
320 clear_bytes_written_by(sbitmap live_bytes, gimple *stmt, ao_ref *ref) argument
372 compute_trims(ao_ref *ref, sbitmap live, int *trim_head, int *trim_tail, gimple *stmt) argument
480 maybe_trim_complex_store(ao_ref *ref, sbitmap live, gimple *stmt) argument
525 maybe_trim_constructor_store(ao_ref *ref, sbitmap live, gimple *stmt) argument
576 decrement_count(gimple *stmt, int decrement) argument
585 increment_start_addr(gimple *stmt, tree *where, int increment) argument
625 maybe_trim_memstar_call(ao_ref *ref, sbitmap live, gimple *stmt) argument
749 maybe_trim_partially_dead_store(ao_ref *ref, sbitmap live, gimple *stmt) argument
820 dse_optimize_redundant_stores(gimple *stmt) argument
911 dse_classify_store(ao_ref *ref, gimple *stmt, bool byte_tracking_enabled, sbitmap live_bytes, bool *by_clobber_p, tree stop_at_vuse) argument
1126 gimple *stmt = gsi_stmt (*gsi); local
1164 gimple *stmt = gsi_stmt (*gsi); local
1194 gcall *stmt = dyn_cast <gcall *> (gsi_stmt (*gsi)); local
1289 gimple *stmt = gsi_stmt (*gsi); local
1494 gimple *stmt = gsi_stmt (gsi); local
[all...]

Completed in 218 milliseconds

1234567891011>>