HomeSort by relevance Sort by last modified time
    Searched refs:stmt (Results 1 - 25 of 465) 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);
  /frameworks/support/room/runtime/src/main/java/android/arch/persistence/room/
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...]
EntityDeletionOrUpdateAdapter.java 66 final SupportSQLiteStatement stmt = acquire(); local
68 bind(stmt, entity);
69 return stmt.executeUpdateDelete();
71 release(stmt);
82 final SupportSQLiteStatement stmt = acquire(); local
86 bind(stmt, entity);
87 total += stmt.executeUpdateDelete();
91 release(stmt);
102 final SupportSQLiteStatement stmt = acquire(); local
106 bind(stmt, entity)
    [all...]
SharedSQLiteStatement.java 69 final SupportSQLiteStatement stmt; local
74 stmt = mStmt;
77 stmt = createNewStatement();
79 return stmt;
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DatabaseHelper.java 431 SQLiteStatement stmt = null; local
437 stmt = db.compileStatement("INSERT INTO system(name,value)"
439 loadDefaultAnimationSettings(stmt);
443 if (stmt != null) stmt.close();
466 SQLiteStatement stmt = null; local
468 stmt = db.compileStatement("INSERT OR IGNORE INTO secure(name,value)"
470 loadSecure35Settings(stmt);
474 if (stmt != null) stmt.close()
509 SQLiteStatement stmt = null; local
548 SQLiteStatement stmt = null; local
570 SQLiteStatement stmt = null; local
590 SQLiteStatement stmt = null; local
609 SQLiteStatement stmt = null; local
697 SQLiteStatement stmt = null; local
738 SQLiteStatement stmt = null; local
783 SQLiteStatement stmt = null; local
803 SQLiteStatement stmt = null; local
832 SQLiteStatement stmt = null; local
848 SQLiteStatement stmt = null; local
909 SQLiteStatement stmt = null; local
931 SQLiteStatement stmt = null; local
976 SQLiteStatement stmt = null; local
1032 SQLiteStatement stmt = null; local
1049 SQLiteStatement stmt = null; local
1074 SQLiteStatement stmt = null; local
1152 SQLiteStatement stmt = null; local
1175 SQLiteStatement stmt = null; local
1201 SQLiteStatement stmt = null; local
1220 SQLiteStatement stmt = null; local
1246 SQLiteStatement stmt = null; local
1269 SQLiteStatement stmt = null; local
1461 SQLiteStatement stmt = null; local
1509 SQLiteStatement stmt = null; local
1546 SQLiteStatement stmt = null; local
1575 SQLiteStatement stmt = null; local
1593 SQLiteStatement stmt = null; local
1609 SQLiteStatement stmt = null; local
1638 SQLiteStatement stmt = null; local
1660 SQLiteStatement stmt = null; local
1690 SQLiteStatement stmt = null; local
1710 SQLiteStatement stmt = null; local
1726 SQLiteStatement stmt = null; local
1745 SQLiteStatement stmt = null; local
1765 SQLiteStatement stmt = null; local
1785 SQLiteStatement stmt = null; local
1804 SQLiteStatement stmt = null; local
1823 SQLiteStatement stmt = null; local
1841 SQLiteStatement stmt = null; local
1874 SQLiteStatement stmt = null; local
2031 SQLiteStatement stmt = null; local
2060 SQLiteStatement stmt = null; local
2074 SQLiteStatement stmt = null; local
2195 SQLiteStatement stmt = null; local
2251 SQLiteStatement stmt = null; local
2277 SQLiteStatement stmt = null; local
2297 SQLiteStatement stmt = null; local
2374 SQLiteStatement stmt = null; local
2479 SQLiteStatement stmt = null; local
    [all...]
  /frameworks/support/room/compiler/src/test/data/daoWriter/output/
WriterDao.java 48 public void bind(SupportSQLiteStatement stmt, User value) {
49 stmt.bindLong(1, value.uid);
51 stmt.bindNull(2);
53 stmt.bindString(2, value.name);
56 stmt.bindNull(3);
58 stmt.bindString(3, value.getLastName());
60 stmt.bindLong(4, value.age);
71 public void bind(SupportSQLiteStatement stmt, User value) {
72 stmt.bindLong(1, value.uid);
74 stmt.bindNull(2)
    [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/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
  /external/fmtlib/test/
test-assert.h 44 #define EXPECT_ASSERT(stmt, message) \
45 EXPECT_THROW_MSG(stmt, AssertionFailure, message)
  /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)
60 Parser(StringPiece buf, const Loc& loc, vector<Stmt*>* stmts)
147 ParseErrorStmt* stmt = new ParseErrorStmt(); local
148 stmt->set_loc(loc_);
149 stmt->msg = msg;
150 out_stmts_->push_back(stmt);
151 parse_errors.push_back(stmt);
174 CommandStmt* stmt = new CommandStmt() local
229 RuleStmt* stmt = new RuleStmt(); local
259 AssignStmt* stmt = new AssignStmt(); local
271 IncludeStmt* stmt = new IncludeStmt(); local
310 AssignStmt* stmt = new AssignStmt(); local
334 IfStmt* stmt = new IfStmt(); local
384 IfStmt* stmt = new IfStmt(); local
448 ExportStmt* stmt = new ExportStmt; local
    [all...]
eval.cc 28 #include "stmt.h"
101 void Evaluator::EvalAssign(const AssignStmt* stmt) {
102 loc_ = stmt->loc();
104 Symbol lhs = stmt->GetLhsSymbol(this);
110 stmt->rhs->Eval(this, &rhs);
121 Var* rhs = EvalRHS(lhs, stmt->rhs, stmt->orig_rhs, stmt->op,
122 stmt->directive == AssignDirective::OVERRIDE);
126 stmt->directive == AssignDirective::OVERRIDE
    [all...]
  /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...]
  /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/skia/src/pdf/
SkScopeExit.h 14 * SK_AT_SCOPE_EXIT(stmt) evaluates stmt when the current scope ends.
46 #define SK_AT_SCOPE_EXIT(stmt) \
48 SkMakeScopeExit([&]() { stmt; });
  /external/bison/build-aux/
gnupload 273 # mkdirective DESTDIR BASE FILE STMT
277 stmt="$4"
279 stmt="
280 filename: $3$stmt"
286 comment: gnupload v. $scriptversion$stmt
305 # upload DEST DESTDIR BASE FILE STMT FILES
311 # STMT Additional statements for the directive file;
319 stmt=$5
325 mkdirective "$destdir" "$base" "$file" "$stmt"
330 mkdirective "$destdir" "$base" "$file" "$stmt"
    [all...]
  /frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/vo/
FieldSetter.kt 25 val stmt = when (callType) {
30 stmt?.let {
31 builder.addStatement(stmt, ownerVar, name, inVar)
  /system/netd/libnetdutils/include/netdutils/
Status.h 89 #define RETURN_IF_NOT_OK_IMPL(tmp, stmt) \
91 ::android::netdutils::Status tmp = (stmt); \
97 #define RETURN_IF_NOT_OK_CONCAT(line, stmt) RETURN_IF_NOT_OK_IMPL(__CONCAT(_status_, line), stmt)
101 // If the evaluation of stmt results in an error, return that error
109 #define RETURN_IF_NOT_OK(stmt) RETURN_IF_NOT_OK_CONCAT(__LINE__, stmt)
StatusOr.h 71 #define ASSIGN_OR_RETURN_IMPL(tmp, lhs, stmt) \
72 auto tmp = (stmt); \
76 #define ASSIGN_OR_RETURN_CONCAT(line, lhs, stmt) \
77 ASSIGN_OR_RETURN_IMPL(__CONCAT(_status_or_, line), lhs, stmt)
81 // If the evaluation of stmt results in an error, return that error
94 #define ASSIGN_OR_RETURN(lhs, stmt) ASSIGN_OR_RETURN_CONCAT(__LINE__, lhs, stmt)

Completed in 821 milliseconds

1 2 3 4 5 6 7 8 91011>>