HomeSort by relevance Sort by last modified time
    Searched refs:stmt (Results 1 - 25 of 850) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/javasqlite/src/main/java/SQLite/
Trace.java 12 * @param stmt SQL statement string
15 public void trace(String stmt);
Profile.java 13 * @param stmt SQL statement string
17 public void profile(String stmt, long est);
  /external/tensorflow/tensorflow/core/lib/db/
sqlite_test.cc 43 auto stmt = db_->PrepareOrDie("INSERT INTO T (a, b) VALUES (?, ?)"); local
44 stmt.BindInt(1, 3);
45 stmt.BindInt(2, -7);
46 TF_ASSERT_OK(stmt.StepAndReset());
47 stmt.BindInt(1, 123);
48 stmt.BindInt(2, -123);
49 TF_ASSERT_OK(stmt.StepAndReset());
50 stmt = db_->PrepareOrDie("SELECT a, b FROM T ORDER BY b");
51 TF_ASSERT_OK(stmt.Step(&is_done_));
53 EXPECT_EQ(123, stmt.ColumnInt(0))
64 auto stmt = db_->PrepareOrDie("INSERT INTO T (a, b) VALUES (?, ?)"); local
79 auto stmt = db_->PrepareOrDie("INSERT INTO T (a, b) VALUES (?, ?)"); local
97 auto stmt = db_->PrepareOrDie("INSERT INTO T (a, b) VALUES (?, ?)"); local
108 auto stmt = db_->PrepareOrDie("INSERT INTO T (a, b) VALUES (?, ?)"); local
123 auto stmt = db_->PrepareOrDie("INSERT INTO T (a, b) VALUES (?, ?)"); local
136 auto stmt = db_->PrepareOrDie("INSERT INTO T (a, b) VALUES (?, ?)"); local
148 auto stmt = db_->PrepareOrDie("INSERT INTO T (a, b) VALUES (?, ?)"); local
165 auto stmt = db_->PrepareOrDie("INSERT INTO T (a) VALUES (:a)"); local
178 SqliteStatement stmt; local
201 SqliteStatement stmt; local
209 auto stmt = db_->PrepareOrDie("INSERT INTO T (a) VALUES (123)"); local
218 auto stmt = db_->PrepareOrDie("SELECT UNSNAP(SNAP(?))"); local
235 SqliteStatement stmt = db->PrepareOrDie("SELECT ? + ?"); local
245 auto stmt = db_->PrepareOrDie("INSERT INTO T (a, b) VALUES (?, ?)"); local
258 auto stmt = db_->PrepareOrDie("INSERT INTO T (a, b) VALUES (?, ?)"); local
272 auto stmt = db_->PrepareOrDie("INSERT INTO T (a, b) VALUES (?, ?)"); local
    [all...]
  /frameworks/support/room/runtime/src/main/java/androidx/room/
EntityDeletionOrUpdateAdapter.java 67 final SupportSQLiteStatement stmt = acquire(); local
69 bind(stmt, entity);
70 return stmt.executeUpdateDelete();
72 release(stmt);
83 final SupportSQLiteStatement stmt = acquire(); local
87 bind(stmt, entity);
88 total += stmt.executeUpdateDelete();
92 release(stmt);
103 final SupportSQLiteStatement stmt = acquire(); local
107 bind(stmt, entity)
    [all...]
EntityInsertionAdapter.java 61 final SupportSQLiteStatement stmt = acquire(); local
63 bind(stmt, entity);
64 stmt.executeInsert();
66 release(stmt);
76 final SupportSQLiteStatement stmt = acquire(); local
79 bind(stmt, entity);
80 stmt.executeInsert();
83 release(stmt);
93 final SupportSQLiteStatement stmt = acquire(); local
96 bind(stmt, entity)
111 final SupportSQLiteStatement stmt = acquire(); local
127 final SupportSQLiteStatement stmt = acquire(); local
149 final SupportSQLiteStatement stmt = acquire(); local
171 final SupportSQLiteStatement stmt = acquire(); local
193 final SupportSQLiteStatement stmt = acquire(); local
215 final SupportSQLiteStatement stmt = acquire(); local
237 final SupportSQLiteStatement stmt = acquire(); local
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/stmt/
LabeledStmt.java 22 package com.github.javaparser.ast.stmt;
35 private Statement stmt; field in class:LabeledStmt
40 public LabeledStmt(final String label, final Statement stmt) {
42 setStmt(stmt);
45 public LabeledStmt(Range range, final String label, final Statement stmt) {
48 setStmt(stmt);
64 return stmt;
72 public LabeledStmt setStmt(final Statement stmt) {
73 this.stmt = stmt;
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/stmt/
LabeledStmt.java 22 package com.github.javaparser.ast.stmt;
34 private Statement stmt; field in class:LabeledStmt
39 public LabeledStmt(final String label, final Statement stmt) {
41 setStmt(stmt);
45 final String label, final Statement stmt) {
48 setStmt(stmt);
64 return stmt;
71 public void setStmt(final Statement stmt) {
72 this.stmt = stmt;
    [all...]
  /frameworks/support/room/compiler/src/test/data/daoWriter/output/
WriterDao.java 50 public void bind(SupportSQLiteStatement stmt, User value) {
51 stmt.bindLong(1, value.uid);
53 stmt.bindNull(2);
55 stmt.bindString(2, value.name);
58 stmt.bindNull(3);
60 stmt.bindString(3, value.getLastName());
62 stmt.bindLong(4, value.age);
73 public void bind(SupportSQLiteStatement stmt, User value) {
74 stmt.bindLong(1, value.uid);
76 stmt.bindNull(2)
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DatabaseHelper.java 425 SQLiteStatement stmt = null; local
431 stmt = db.compileStatement("INSERT INTO system(name,value)"
433 loadDefaultAnimationSettings(stmt);
437 if (stmt != null) stmt.close();
460 SQLiteStatement stmt = null; local
462 stmt = db.compileStatement("INSERT OR IGNORE INTO secure(name,value)"
464 loadSecure35Settings(stmt);
468 if (stmt != null) stmt.close()
503 SQLiteStatement stmt = null; local
542 SQLiteStatement stmt = null; local
564 SQLiteStatement stmt = null; local
584 SQLiteStatement stmt = null; local
603 SQLiteStatement stmt = null; local
691 SQLiteStatement stmt = null; local
732 SQLiteStatement stmt = null; local
777 SQLiteStatement stmt = null; local
797 SQLiteStatement stmt = null; local
826 SQLiteStatement stmt = null; local
842 SQLiteStatement stmt = null; local
903 SQLiteStatement stmt = null; local
925 SQLiteStatement stmt = null; local
970 SQLiteStatement stmt = null; local
1026 SQLiteStatement stmt = null; local
1043 SQLiteStatement stmt = null; local
1068 SQLiteStatement stmt = null; local
1146 SQLiteStatement stmt = null; local
1169 SQLiteStatement stmt = null; local
1195 SQLiteStatement stmt = null; local
1214 SQLiteStatement stmt = null; local
1240 SQLiteStatement stmt = null; local
1263 SQLiteStatement stmt = null; local
1455 SQLiteStatement stmt = null; local
1503 SQLiteStatement stmt = null; local
1540 SQLiteStatement stmt = null; local
1569 SQLiteStatement stmt = null; local
1587 SQLiteStatement stmt = null; local
1603 SQLiteStatement stmt = null; local
1632 SQLiteStatement stmt = null; local
1654 SQLiteStatement stmt = null; local
1684 SQLiteStatement stmt = null; local
1704 SQLiteStatement stmt = null; local
1720 SQLiteStatement stmt = null; local
1739 SQLiteStatement stmt = null; local
1759 SQLiteStatement stmt = null; local
1779 SQLiteStatement stmt = null; local
1798 SQLiteStatement stmt = null; local
1817 SQLiteStatement stmt = null; local
1858 SQLiteStatement stmt = null; local
2015 SQLiteStatement stmt = null; local
2044 SQLiteStatement stmt = null; local
2058 SQLiteStatement stmt = null; local
2179 SQLiteStatement stmt = null; local
2235 SQLiteStatement stmt = null; local
2261 SQLiteStatement stmt = null; local
2281 SQLiteStatement stmt = null; local
2359 SQLiteStatement stmt = null; local
2464 SQLiteStatement stmt = null; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
future.py 7 def is_future(stmt):
9 if not isinstance(stmt, ast.From):
11 if stmt.modname == "__future__":
26 stmt = node.node
27 for s in stmt.nodes:
31 def check_stmt(self, stmt):
32 if is_future(stmt):
33 for name, asname in stmt.names:
39 stmt.valid_future = 1
  /external/libxkbcommon/xkbcommon/src/xkbcomp/
vmod.h 32 VModDef *stmt, enum merge_mode merge);
vmod.c 34 VModDef *stmt, enum merge_mode merge)
40 merge = (merge == MERGE_DEFAULT ? stmt->merge : merge);
42 if (stmt->value) {
48 if (!ExprResolveModMask(ctx, stmt->value, MOD_REAL, mods, &mapping)) {
51 xkb_atom_text(ctx, stmt->name));
60 if (mod->name == stmt->name) {
81 xkb_atom_text(ctx, stmt->name),
100 mods->mods[mods->num_mods].name = stmt->name;
  /external/python/cpython2/Lib/compiler/
future.py 7 def is_future(stmt):
9 if not isinstance(stmt, ast.From):
11 if stmt.modname == "__future__":
26 stmt = node.node
27 for s in stmt.nodes:
31 def check_stmt(self, stmt):
32 if is_future(stmt):
33 for name, asname in stmt.names:
39 stmt.valid_future = 1
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
future.py 7 def is_future(stmt):
9 if not isinstance(stmt, ast.From):
11 if stmt.modname == "__future__":
26 stmt = node.node
27 for s in stmt.nodes:
31 def check_stmt(self, stmt):
32 if is_future(stmt):
33 for name, asname in stmt.names:
39 stmt.valid_future = 1
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
future.py 7 def is_future(stmt):
9 if not isinstance(stmt, ast.From):
11 if stmt.modname == "__future__":
26 stmt = node.node
27 for s in stmt.nodes:
31 def check_stmt(self, stmt):
32 if is_future(stmt):
33 for name, asname in stmt.names:
39 stmt.valid_future = 1
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
future.py 7 def is_future(stmt):
9 if not isinstance(stmt, ast.From):
11 if stmt.modname == "__future__":
26 stmt = node.node
27 for s in stmt.nodes:
31 def check_stmt(self, stmt):
32 if is_future(stmt):
33 for name, asname in stmt.names:
39 stmt.valid_future = 1
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
future.py 7 def is_future(stmt):
9 if not isinstance(stmt, ast.From):
11 if stmt.modname == "__future__":
26 stmt = node.node
27 for s in stmt.nodes:
31 def check_stmt(self, stmt):
32 if is_future(stmt):
33 for name, asname in stmt.names:
39 stmt.valid_future = 1
  /system/sepolicy/tests/
mini_parser.py 42 def _parseType(self, stmt):
43 m = re.match(r"type\s+(.+)", stmt)
47 def _parseTypeattribute(self, stmt):
48 m = re.match(r"typeattribute\s+(.+)", stmt)
52 def _parseTypeattributeset(self, stmt):
53 m = re.match(r"typeattributeset\s+(.+?)\s+\((.+?)\)", stmt, flags = re.M |re.S)
73 def _parseStmt(self, stmt):
74 if re.match(r"type\s+.+", stmt):
75 self._parseType(stmt)
76 elif re.match(r"typeattribute\s+.+", stmt)
    [all...]
  /build/kati/
parser.cc 27 #include "stmt.h"
39 IfStmt* stmt; member in struct:Parser::IfState
49 Parser(StringPiece buf, const char* filename, vector<Stmt*>* stmts)
59 Parser(StringPiece buf, const Loc& loc, vector<Stmt*>* stmts)
142 ParseErrorStmt* stmt = new ParseErrorStmt(); local
143 stmt->set_loc(loc_);
144 stmt->msg = msg;
145 out_stmts_->push_back(stmt);
146 parse_errors.push_back(stmt);
169 CommandStmt* stmt = new CommandStmt() local
224 RuleStmt* stmt = new RuleStmt(); local
254 AssignStmt* stmt = new AssignStmt(); local
266 IncludeStmt* stmt = new IncludeStmt(); local
305 AssignStmt* stmt = new AssignStmt(); local
329 IfStmt* stmt = new IfStmt(); local
379 IfStmt* stmt = new IfStmt(); local
443 ExportStmt* stmt = new ExportStmt; local
    [all...]
eval.cc 29 #include "stmt.h"
133 void Evaluator::EvalAssign(const AssignStmt* stmt) {
134 loc_ = stmt->loc();
136 Symbol lhs = stmt->GetLhsSymbol(this);
142 stmt->rhs->Eval(this, &rhs);
154 Var* rhs = EvalRHS(lhs, stmt->rhs, stmt->orig_rhs, stmt->op,
155 stmt->directive == AssignDirective::OVERRIDE);
158 lhs.SetGlobalVar(rhs, stmt->directive == AssignDirective::OVERRIDE
    [all...]
  /external/v8/src/parsing/
parameter-initializer-rewriter.cc 33 void VisitBlock(Block* stmt);
34 void VisitTryCatchStatement(TryCatchStatement* stmt);
35 void VisitWithStatement(WithStatement* stmt);
77 void Rewriter::VisitBlock(Block* stmt) {
78 if (stmt->scope() != nullptr)
79 stmt->scope()->ReplaceOuterScope(param_scope_);
81 VisitStatements(stmt->statements());
85 void Rewriter::VisitTryCatchStatement(TryCatchStatement* stmt) {
86 Visit(stmt->try_block());
87 stmt->scope()->ReplaceOuterScope(param_scope_)
    [all...]
  /external/v8/src/ast/
ast-traversal-visitor.h 117 Statement* stmt = stmts->at(i); local
118 RECURSE(Visit(stmt));
119 if (stmt->IsJump()) break;
137 void AstTraversalVisitor<Subclass>::VisitBlock(Block* stmt) {
138 PROCESS_NODE(stmt);
139 RECURSE(VisitStatements(stmt->statements()));
144 ExpressionStatement* stmt) {
145 PROCESS_NODE(stmt);
146 RECURSE(Visit(stmt->expression()));
150 void AstTraversalVisitor<Subclass>::VisitEmptyStatement(EmptyStatement* stmt) {}
    [all...]
  /external/v8/src/compiler/
ast-loop-assignment-analyzer.cc 76 void ALAA::VisitBlock(Block* stmt) { VisitStatements(stmt->statements()); }
85 void ALAA::VisitExpressionStatement(ExpressionStatement* stmt) {
86 Visit(stmt->expression());
90 void ALAA::VisitIfStatement(IfStatement* stmt) {
91 Visit(stmt->condition());
92 Visit(stmt->then_statement());
93 Visit(stmt->else_statement());
97 void ALAA::VisitReturnStatement(ReturnStatement* stmt) {
98 Visit(stmt->expression())
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/metamodel/
EmptyStmtMetaModel.java 8 super(superBaseNodeMetaModel, com.github.javaparser.ast.stmt.EmptyStmt.class, "EmptyStmt", "com.github.javaparser.ast.stmt", false, false);
UnparsableStmtMetaModel.java 8 super(superBaseNodeMetaModel, com.github.javaparser.ast.stmt.UnparsableStmt.class, "UnparsableStmt", "com.github.javaparser.ast.stmt", false, false);

Completed in 1251 milliseconds

1 2 3 4 5 6 7 8 91011>>