HomeSort by: relevance | last modified time | path
    Searched defs:stmt (Results 1 - 25 of 434) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/usr.sbin/makemandb/
whatis.c 57 sqlite3_stmt *stmt = NULL; local
60 if (sqlite3_prepare_v2(db, sqlstr, -1, &stmt, NULL) != SQLITE_OK)
64 if (sqlite3_bind_text(stmt, i + 1, cmd, -1, NULL) != SQLITE_OK)
69 while (sqlite3_step(stmt) == SQLITE_ROW) {
70 printf("%s(%s) - %s\n", sqlite3_column_text(stmt, 0),
71 sqlite3_column_text(stmt, 1),
72 sqlite3_column_text(stmt, 2));
75 sqlite3_finalize(stmt);
  /src/external/bsd/kyua-cli/dist/store/
metadata.cpp 46 /// \param stmt The statement from which to get the column value.
54 int64_column(sqlite::statement& stmt, const char* column)
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.step()
    [all...]
backend_test.cpp 122 sqlite::statement stmt = db.create_statement( local
124 ATF_REQUIRE(stmt.step());
125 ATF_REQUIRE_EQ(1, stmt.column_int(0));
126 ATF_REQUIRE(!stmt.step());
  /src/external/bsd/kyua-cli/dist/utils/sqlite/
transaction_test.cpp 57 sqlite::statement stmt = db.create_statement( local
60 if (!stmt.step())
62 if (stmt.step())
database.cpp 276 sqlite3_stmt* stmt; local
278 sql.length() + 1, &stmt, NULL);
281 return statement(*this, static_cast< void* >(stmt));
database_test.cpp 180 sqlite::statement stmt = db.create_statement("SELECT 3"); local
190 sqlite::transaction stmt = db.begin_transaction(); local
  /src/external/gpl3/gcc/dist/gcc/
gimple-range-op.h 33 inline gimple *stmt () const { return m_stmt; } function in class:gimple_range_op_handler
49 // Given stmt S, fill VEC, up to VEC_SIZE elements, with relevant ssa-names
53 unsigned gimple_range_ssa_names (tree *vec, unsigned vec_size, gimple *stmt);
vr-values.h 39 tree legacy_fold_cond_overflow (gimple *stmt);
66 gswitch *stmt; member in struct:simplify_using_ranges::switch_update
gimple-ssa-nonnull-compare.cc 54 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...]
gimple-walk.h 31 gimple *stmt; member in struct:walk_stmt_info
gimple-laddress.cc 84 gimple *stmt = gsi_stmt (gsi); local
85 if (!is_gimple_assign (stmt)
86 || gimple_assign_rhs_code (stmt) != ADDR_EXPR
87 || is_gimple_invariant_address (gimple_assign_rhs1 (stmt)))
102 tree expr = gimple_assign_rhs1 (stmt);
121 gimple *g = gimple_build_assign (gimple_assign_lhs (stmt),
gimple-range-trace.cc 148 gimple *stmt = gsi_stmt (gsi); local
150 if (is_gimple_debug (stmt))
153 if (tree type = gimple_range_type (stmt))
156 ranger.range_of_stmt (r, stmt);
gimple-streamer-out.cc 57 /* Emit statement STMT on the main stream of output block OB. */
60 output_gimple_stmt (struct output_block *ob, struct function *fn, gimple *stmt)
69 code = gimple_code (stmt);
75 bp_pack_var_len_unsigned (&bp, gimple_num_ops (stmt));
76 bp_pack_value (&bp, gimple_no_warning_p (stmt), 1);
77 if (is_gimple_assign (stmt))
80 as_a <gassign *> (stmt)),
82 bp_pack_value (&bp, gimple_has_volatile_ops (stmt), 1);
83 hist = gimple_histogram_value (fn, stmt);
85 bp_pack_var_len_unsigned (&bp, stmt->subcode)
219 gimple *stmt = gsi_stmt (bsi); local
    [all...]
gimple-ssa.h 30 gimple *stmt; variable
114 /* Map gimple stmt to tree label (or list of labels) for transaction
gimple-warn-recursion.cc 96 gimple *stmt = gsi_stmt (si); local
97 if (!is_gimple_call (stmt))
100 if (gimple_call_builtin_p (stmt, BUILT_IN_LONGJMP))
104 if (tree fndecl = gimple_call_fndecl (stmt))
116 && gimple_call_builtin_p (stmt, BUILT_IN_NORMAL)
131 m_calls->safe_push (stmt);
140 int flags = gimple_call_flags (stmt);
145 tree callee = gimple_call_fndecl (stmt);
150 m_calls->safe_push (stmt);
196 for (auto stmt: *m_calls
    [all...]
  /src/usr.sbin/mrouted/
cfparse.y 105 | stmts stmt
108 stmt : error label
  /src/external/bsd/kyua-cli/dist/cli/
cmd_db_exec.cpp 79 /// \param stmt The statement whose cell to format.
84 cli::format_cell(sqlite::statement& stmt, const int index)
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)
119 for (; i < stmt.column_count() - 1; ++i
170 sqlite::statement stmt = backend.database().create_statement( local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-ssa-nonnull-compare.cc 54 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...]
gimple-walk.h 31 gimple *stmt; member in struct:walk_stmt_info
gimple-laddress.cc 84 gimple *stmt = gsi_stmt (gsi); local
85 if (!is_gimple_assign (stmt)
86 || gimple_assign_rhs_code (stmt) != ADDR_EXPR
87 || is_gimple_invariant_address (gimple_assign_rhs1 (stmt)))
102 tree expr = gimple_assign_rhs1 (stmt);
121 gimple *g = gimple_build_assign (gimple_assign_lhs (stmt),
gimple-streamer-out.cc 57 /* Emit statement STMT on the main stream of output block OB. */
60 output_gimple_stmt (struct output_block *ob, struct function *fn, gimple *stmt)
69 code = gimple_code (stmt);
75 bp_pack_var_len_unsigned (&bp, gimple_num_ops (stmt));
76 bp_pack_value (&bp, gimple_no_warning_p (stmt), 1);
77 if (is_gimple_assign (stmt))
80 as_a <gassign *> (stmt)),
82 bp_pack_value (&bp, gimple_has_volatile_ops (stmt), 1);
83 hist = gimple_histogram_value (fn, stmt);
85 bp_pack_var_len_unsigned (&bp, stmt->subcode)
220 gimple *stmt = gsi_stmt (bsi); local
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
StmtIterator.h 24 class Stmt;
37 Stmt **stmt; member in union:clang::StmtIteratorBase::__anon2410
43 StmtIteratorBase(Stmt **s) : stmt(s) {}
46 StmtIteratorBase() : stmt(nullptr) {}
73 Stmt*& GetDeclExpr() const;
89 StmtIteratorImpl(Stmt **s) : StmtIteratorBase(s) {}
95 ++stmt;
111 return LHS.stmt == RHS.stmt && LHS.DGI == RHS.DGI &
    [all...]
  /src/external/gpl3/gcc/dist/gcc/analyzer/
feasible-graph.cc 124 const gimple *stmt = m_inner_node->get_processed_stmt (stmt_idx); local
125 if (stmt == target_stmt)
130 result.update_for_stmt (stmt);
  /src/external/gpl3/gcc/dist/gcc/config/mips/
frame-header-opt.cc 191 gimple *stmt; local
202 stmt = gsi_stmt (gsi);
203 if (is_gimple_call (stmt))
205 called_fn_tree = gimple_call_fndecl (stmt);
232 gimple *stmt; local
243 stmt = gsi_stmt (gsi);
244 if (is_gimple_call (stmt))
246 called_fn_tree = gimple_call_fndecl (stmt);
  /src/external/gpl3/gcc/dist/gcc/config/riscv/
riscv-vector-costs.h 30 gimple *stmt; member in struct:riscv_vector::stmt_point

Completed in 21 milliseconds

1 2 3 4 5 6 7 8 91011>>