HomeSort by relevance Sort by last modified time
    Searched refs:statement (Results 176 - 200 of 1343) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/go/linux-x86/test/syntax/
vareq1.go 9 var x map[string]string{"a":"b"} // ERROR "unexpected { at end of statement|unexpected { after top level declaration|expected ';' or newline after top level declaration"
  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/parser/
SqlParser.kt 35 statement: ParseTree,
45 queryType = (0 until statement.childCount).map {
46 findQueryType(statement.getChild(it))
49 statement.accept(this)
52 private fun findQueryType(statement: ParseTree): QueryType {
53 return when (statement) {
69 is TerminalNode -> when (statement.text) {
162 val statement = statements.first()
166 statement = statement,
    [all...]
  /external/llvm/test/MC/Mips/
mips-pdr-bad.s 9 .ent foo, 5, bar # AMS: :[[@LINE]]:20: error: unexpected token, expected end of statement
20 .frame $sp, 8, $ra, foo # ASM: :[[@LINE]]:27: error: unexpected token, expected end of statement
27 .mask 0x80000000, -4, bar # ASM: :[[@LINE]]:29: error: unexpected token, expected end of statement
34 .fmask 0x80000000, -4, bar # ASM: :[[@LINE]]:30: error: unexpected token, expected end of statement
38 .end _local_foo_bar, foo # ASM: :[[@LINE]]:28: error: unexpected token, expected end of statement
cprestore-bad.s 23 # CHECK: :[[@LINE-1]]:15: error: unexpected token, expected end of statement
  /external/sqlite/android/
sqlite3_android.cpp 215 sqlite3_stmt * statement = (sqlite3_stmt *)data; local
216 sqlite3_finalize(statement);
293 // Get or create the prepared statement for the insertions
294 sqlite3_stmt * statement = (sqlite3_stmt *)sqlite3_get_auxdata(context, 0); local
295 if (!statement) {
302 err = sqlite3_prepare_v2(handle, sql, -1, &statement, NULL);
309 // This binds the statement to the table it was compiled against, which is argv[0].
312 sqlite3_set_auxdata(context, 0, statement, tokenize_auxdata_delete);
314 // Reset the cached statement so that binding the row ID will work properly
315 sqlite3_reset(statement);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
connection.c 27 #include "statement.h"
214 /* Empty the entire statement cache of this connection */
218 pysqlite_Statement* statement; local
223 statement = (pysqlite_Statement*)(node->data);
224 (void)pysqlite_statement_finalize(statement);
239 PyObject* statement; local
244 statement = PyWeakref_GetObject(weakref);
245 if (statement != Py_None) {
247 (void)pysqlite_statement_reset((pysqlite_Statement*)statement);
249 (void)pysqlite_statement_finalize((pysqlite_Statement*)statement);
414 sqlite3_stmt* statement; local
453 sqlite3_stmt* statement; local
499 sqlite3_stmt* statement; local
1178 pysqlite_Statement* statement; local
    [all...]
  /external/python/cpython2/Modules/_sqlite/
connection.c 27 #include "statement.h"
217 /* Empty the entire statement cache of this connection */
221 pysqlite_Statement* statement; local
226 statement = (pysqlite_Statement*)(node->data);
227 (void)pysqlite_statement_finalize(statement);
242 PyObject* statement; local
247 statement = PyWeakref_GetObject(weakref);
248 if (statement != Py_None) {
250 (void)pysqlite_statement_reset((pysqlite_Statement*)statement);
252 (void)pysqlite_statement_finalize((pysqlite_Statement*)statement);
424 sqlite3_stmt* statement; local
463 sqlite3_stmt* statement; local
508 sqlite3_stmt* statement; local
1193 pysqlite_Statement* statement; local
    [all...]
  /external/boringssl/src/util/fipstools/
delocate.go 122 for statement := input.ast.up; statement != nil; statement = statement.next {
123 assertNodeType(statement, ruleStatement)
124 origStatement = statement
126 node := skipWS(statement.up)
128 d.writeNode(statement)
134 d.writeNode(statement)
136 statement, err = d.processDirective(statement, node.up
    [all...]
  /external/python/cpython3/Modules/_sqlite/
connection.c 28 #include "statement.h"
209 PyObject* statement; local
214 statement = PyWeakref_GetObject(weakref);
215 if (statement != Py_None) {
216 Py_INCREF(statement);
218 (void)pysqlite_statement_reset((pysqlite_Statement*)statement);
220 (void)pysqlite_statement_finalize((pysqlite_Statement*)statement);
222 Py_DECREF(statement);
375 sqlite3_stmt* statement; local
378 rc = sqlite3_prepare(self->db, self->begin_statement, -1, &statement, &tail)
412 sqlite3_stmt* statement; local
455 sqlite3_stmt* statement; local
1214 pysqlite_Statement* statement; local
    [all...]
  /external/javassist/src/main/javassist/expr/
Cast.java 87 * @param statement a Java statement except try-catch.
89 public void replace(String statement) throws CannotCompileException {
112 checkResultValue(retType, statement);
121 jc.compileStmnt(statement);
Instanceof.java 90 * @param statement a Java statement except try-catch.
92 public void replace(String statement) throws CannotCompileException {
118 checkResultValue(retType, statement);
127 jc.compileStmnt(statement);
  /external/skia/src/sksl/
SkSLCFGGenerator.h 30 std::unique_ptr<Statement>* statement)
34 , fStatement(statement) {}
46 std::unique_ptr<Statement>* statement() const { function in struct:SkSL::BasicBlock::Node
51 void setStatement(std::unique_ptr<Statement> stmt) {
79 std::unique_ptr<Statement>* fStatement;
158 void addStatement(CFG& cfg, std::unique_ptr<Statement>* s);
  /external/skqp/src/sksl/
SkSLCFGGenerator.h 30 std::unique_ptr<Statement>* statement)
34 , fStatement(statement) {}
46 std::unique_ptr<Statement>* statement() const { function in struct:SkSL::BasicBlock::Node
51 void setStatement(std::unique_ptr<Statement> stmt) {
79 std::unique_ptr<Statement>* fStatement;
158 void addStatement(CFG& cfg, std::unique_ptr<Statement>* s);
  /external/elfutils/tests/
elfshphehdr.c 34 check (const char *msg, bool statement)
36 if (! statement)
46 check_elf (const char *msg, bool statement)
48 if (! statement)
  /external/llvm/test/MC/AArch64/
arm64-separator.s 3 ; ARM64 uses a multi-character statement separator, "%%". Check that we lex
  /external/mdnsresponder/mDNSShared/
dnsextd.conf 9 // You need to edit the "zone" statement below to give the name of your
21 // You also need a "zone" statement in /etc/named.conf to tell BIND the update
  /external/python/cpython3/Lib/
cProfile.py 15 def run(statement, filename=None, sort=-1):
16 return _pyprofile._Utils(Profile).run(statement, filename, sort)
18 def runctx(statement, globals, locals, filename=None, sort=-1):
19 return _pyprofile._Utils(Profile).runctx(statement, globals, locals,
90 # a profiler to profile a statement, given as a string.
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
CursorAdapterTest.java 11 import java.sql.Statement;
40 Statement statement = connection.createStatement(); local
41 statement.execute("CREATE TABLE table_name(_id INT PRIMARY KEY, name VARCHAR(255));" );
54 statement = connection.createStatement(DatabaseConfig.getResultSetType(), ResultSet.CONCUR_READ_ONLY);
56 ResultSet resultSet = statement.executeQuery(sql);
DatabaseTestBase.java 15 import java.sql.Statement;
209 * One should just avoid ever calling a statement without selectionArgs (when one has a ? placeholder),
348 Statement statement; local
353 statement = shadowOf(database).getConnection().createStatement();
354 resultSet = statement.executeQuery("SELECT COUNT(*) FROM table_name");
358 statement = shadowOf(database).getConnection().createStatement();
359 resultSet = statement.executeQuery("SELECT * FROM table_name");
367 Statement statement; local
503 Statement statement = shadowOf(database).getConnection().createStatement(); local
517 Statement statement = shadowOf(database).getConnection().createStatement(); local
    [all...]
SQLiteStatementTest.java 13 import java.sql.Statement;
52 Statement statement = shadowOf(database).getConnection().createStatement(); local
53 ResultSet resultSet = statement.executeQuery("SELECT COUNT(*) FROM `routine`");
57 statement = shadowOf(database).getConnection().createStatement();
58 resultSet = statement.executeQuery("SELECT `id`, `name` ,`lastUsed` FROM `routine`");
  /frameworks/support/room/runtime/src/main/java/androidx/room/
EntityDeletionOrUpdateAdapter.java 52 * Binds the entity into the given statement.
54 * @param statement The SQLite statement that prepared for the query returned from
58 protected abstract void bind(SupportSQLiteStatement statement, T entity);
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
initsid.py 42 """An initial SID statement."""
49 def statement(self): member in class:InitialSID
  /toolchain/binutils/binutils-2.27/ld/
ldwrite.c 39 build_link_order (lang_statement_union_type *statement)
41 switch (statement->header.type)
50 output_section = statement->data_statement.output_section;
63 link_order->offset = statement->data_statement.output_offset;
66 value = statement->data_statement.value;
112 switch (statement->data_statement.type)
140 switch (statement->data_statement.type)
151 if (statement->data_statement.type == QUAD)
194 rs = &statement->reloc_statement;
240 asection *i = statement->input_section.section
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteDatabase.java 18 import java.sql.Statement;
94 PreparedStatement insert = connection.prepareStatement(sqlInsertString.sql, Statement.RETURN_GENERATED_KEYS);
128 Statement statement = connection.createStatement(DatabaseConfig.getResultSetType(), ResultSet.CONCUR_READ_ONLY); local
129 resultSet = statement.executeQuery(sql);
158 PreparedStatement statement = connection.prepareStatement(sqlUpdateString.sql); local
162 statement.setObject(i++, columns.next());
165 return statement.executeUpdate();
206 SQLiteStatement statement = null; local
208 statement =compileStatement(scrubbedSql)
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/javassistmodel/
Issue257.java 7 import com.github.javaparser.ast.stmt.Statement;
41 Statement statement = cu.getClassByName("A").get().getMethodsByName("run").get(0).getBody().get().getStatement(0); local
42 ExpressionStmt expressionStmt = (ExpressionStmt)statement;

Completed in 719 milliseconds

1 2 3 4 5 6 78 91011>>