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

1 2

  /src/tests/usr.bin/indent/
psym_semicolon.c 11 void func(void) { stmt(); }
18 stmt();
25 stmt();
32 stmt();
lsym_if.c 12 if(cond)stmt();
21 stmt();
32 if(0)if(1)if(2)stmt();{}
41 stmt();
psym_do_stmt.c 11 do stmt(); while (0);
12 do { stmt(); } while (0);
13 do /* comment */ stmt(); while (0);
22 stmt();
25 stmt();
28 stmt();
36 if (cond) do stmt; while (cond); stmt;
44 stmt;
47 stmt;
    [all...]
opt_cd.c 10 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 */
lsym_do.c 18 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...]
opt_eei.c 20 stmt();
24 stmt();
27 stmt();
30 stmt();
42 stmt();
46 stmt();
49 stmt();
52 stmt();
66 stmt();
70 stmt();
    [all...]
opt_bbb.c 73 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
lsym_while.c 12 while(cond)stmt();
13 do stmt();while(cond);
22 stmt();
24 stmt();
psym_if_expr_stmt.c 19 stmt();
21 stmt();
23 stmt();
40 stmt;
54 stmt;
psym_stmt.c 7 * 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();
psym_do.c 14 do stmt(); while (0);
24 stmt();
lsym_semicolon.c 28 stmt();
30 stmt();
39 stmt();
41 stmt();
51 stmt;
53 stmt;
psym_else.c 26 stmt();
28 stmt();
31 stmt();
42 stmt();
44 stmt();
47 stmt();
opt_badp.c 64 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...]
psym_if_expr.c 11 if(cond) stmt();
20 stmt();
psym_if_expr_stmt_else.c 98 stmt();
101 stmt();
110 stmt();
112 stmt();
opt_bl_br.c 105 stmt();
109 stmt();
119 stmt();
123 stmt();
141 stmt();
152 stmt();
167 stmt();
171 stmt();
lsym_case_label.c 120 stmt;
psym_for_exprs.c 39 stmt;
50 stmt;
lsym_for.c 39 stmt();
59 stmt();
62 stmt();
opt_ci.c 205 stmt();
208 stmt();
225 stmt();
228 stmt();
lsym_preprocessing.c 222 #define do_once(stmt) \
224 stmt; \
  /src/lib/lua/sqlite/
sqlite.c 136 sqlite3_stmt **stmt; local in function:db_prepare
140 stmt = lua_newuserdata(L, sizeof(sqlite3_stmt *));
143 (int)strlen(sql) + 1, stmt, NULL));
204 sqlite3_stmt **stmt; local in function:stmt_bind
207 stmt = luaL_checkudata(L, 1, SQLITE_STMT_METATABLE);
212 lua_pushinteger(L, sqlite3_bind_double(*stmt, pidx,
216 lua_pushinteger(L, sqlite3_bind_text(*stmt, pidx,
220 lua_pushinteger(L, sqlite3_bind_null(*stmt, pidx));
232 sqlite3_stmt **stmt; local in function:stmt_bind_parameter_count
234 stmt = luaL_checkudata(L, 1, SQLITE_STMT_METATABLE)
242 sqlite3_stmt **stmt; local in function:stmt_bind_parameter_index
253 sqlite3_stmt **stmt; local in function:stmt_bind_parameter_name
265 sqlite3_stmt **stmt; local in function:stmt_step
275 sqlite3_stmt **stmt; local in function:stmt_column_name
288 sqlite3_stmt **stmt; local in function:stmt_column_count
298 sqlite3_stmt **stmt; local in function:stmt_column
326 sqlite3_stmt **stmt; local in function:stmt_reset
336 sqlite3_stmt **stmt; local in function:stmt_clear_bindings
349 sqlite3_stmt **stmt; local in function:stmt_finalize
    [all...]
  /src/usr.sbin/makemandb/
whatis.c 57 sqlite3_stmt *stmt = NULL; local in function:whatis
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);
makemandb.c 517 sqlite3_stmt *stmt = NULL; local in function:build_file_cache
526 rc = sqlite3_prepare_v2(db, sqlstr, -1, &stmt, NULL);
533 idx = sqlite3_bind_parameter_index(stmt, ":device");
534 rc = sqlite3_bind_int64(stmt, idx, device_cache);
538 sqlite3_finalize(stmt);
542 idx = sqlite3_bind_parameter_index(stmt, ":inode");
543 rc = sqlite3_bind_int64(stmt, idx, inode_cache);
547 sqlite3_finalize(stmt);
551 idx = sqlite3_bind_parameter_index(stmt, ":mtime");
552 rc = sqlite3_bind_int64(stmt, idx, mtime_cache)
706 sqlite3_stmt *stmt = NULL; local in function:update_db
1468 sqlite3_stmt *stmt = NULL; local in function:insert_into_db
1816 sqlite3_stmt *stmt = NULL; local in function:check_md5
    [all...]

Completed in 22 milliseconds

1 2