HomeSort by relevance Sort by last modified time
    Searched full:sqlite (Results 101 - 125 of 1882) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/sqlite/
sqlite.target.linux-mips.mk 27 third_party/sqlite/amalgamation/sqlite3.c \
28 third_party/sqlite/src/ext/fts2/fts2.c \
29 third_party/sqlite/src/ext/fts2/fts2_hash.c \
30 third_party/sqlite/src/ext/fts2/fts2_icu.c \
31 third_party/sqlite/src/ext/fts2/fts2_porter.c \
32 third_party/sqlite/src/ext/fts2/fts2_tokenizer.c \
33 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c
120 $(LOCAL_PATH)/third_party/sqlite/amalgamation \
121 $(LOCAL_PATH)/third_party/sqlite/src/src \
226 $(LOCAL_PATH)/third_party/sqlite/amalgamation
    [all...]
sqlite.target.linux-x86.mk 27 third_party/sqlite/amalgamation/sqlite3.c \
28 third_party/sqlite/src/ext/fts2/fts2.c \
29 third_party/sqlite/src/ext/fts2/fts2_hash.c \
30 third_party/sqlite/src/ext/fts2/fts2_icu.c \
31 third_party/sqlite/src/ext/fts2/fts2_porter.c \
32 third_party/sqlite/src/ext/fts2/fts2_tokenizer.c \
33 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c
122 $(LOCAL_PATH)/third_party/sqlite/amalgamation \
123 $(LOCAL_PATH)/third_party/sqlite/src/src \
231 $(LOCAL_PATH)/third_party/sqlite/amalgamation
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
enc2.test 11 # This file implements regression tests for SQLite library. The focus of
12 # this file is testing the SQLite routines used for converting between the
139 # The three unicode encodings understood by SQLite.
195 # The following tests - enc2-5.* - test that SQLite selects the correct
328 # The following tests - enc2-6.* - test that SQLite selects the correct
348 SELECT test_function('sqlite')
350 } {{UTF-8 sqlite}}
356 SELECT test_function('sqlite')
358 } {{UTF-16LE sqlite}}
364 SELECT test_function('sqlite')
    [all...]
threadtest2.c 13 ** or not the SQLite library is threadsafe.
15 ** This file is NOT part of the standard SQLite library. It is used for
23 #include "sqlite.h"
57 int integrity_check(sqlite *db, int id){
75 sqlite *db;
99 sqlite *db;
enc.test 11 # This file implements regression tests for SQLite library. The focus of
12 # this file is testing the SQLite routines used for converting between the
48 # Test that the SQLite routines for converting between UTF encodings
56 # SQLite routines produce the same results.
59 # SQLite routines produce the same results.
61 # 3. Use the SQLite routines to convert the native machine order UTF-16
66 # check that the SQLite routines can convert them back to UTF-8. For
70 # that SQLite can convert them both to native byte order UTF-16
142 test_conversion enc-2 "sqlite"
tkt1514.test 11 # This file implements regression tests for SQLite library.
  /frameworks/base/docs/html/sdk/api_diff/16/changes/
android.database.sqlite.SQLiteProgram.html 10 android.database.sqlite.SQLiteProgram
74 Class android.database.sqlite.<A HREF="../../../../reference/android/database/sqlite/SQLiteProgram.html" target="_top"><font size="+2"><code>SQLiteProgram</code></font></A>
86 <A NAME="android.database.sqlite.SQLiteProgram.compile_removed(java.lang.String, boolean)"></A>
93 <A NAME="android.database.sqlite.SQLiteProgram.native_bind_blob_removed(int, byte[])"></A>
100 <A NAME="android.database.sqlite.SQLiteProgram.native_bind_double_removed(int, double)"></A>
107 <A NAME="android.database.sqlite.SQLiteProgram.native_bind_long_removed(int, long)"></A>
114 <A NAME="android.database.sqlite.SQLiteProgram.native_bind_null_removed(int)"></A>
121 <A NAME="android.database.sqlite.SQLiteProgram.native_bind_string_removed(int, java.lang.String)"></A>
128 <A NAME="android.database.sqlite.SQLiteProgram.native_compile_removed(java.lang.String)"></A
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
SQLiteTransaction.cpp 27 #include "modules/webdatabase/sqlite/SQLiteTransaction.h"
29 #include "modules/webdatabase/sqlite/SQLiteDatabase.h"
55 // http://www.sqlite.org/lang_transaction.html
56 // http://www.sqlite.org/lockingv3.html#locking
79 // a non-zero/true result (http://www.sqlite.org/lang_transaction.html).
98 // According to http://www.sqlite.org/c3ref/get_autocommit.html,
  /frameworks/base/core/java/android/database/
DefaultDatabaseErrorHandler.java 21 import android.database.sqlite.SQLiteDatabase;
22 import android.database.sqlite.SQLiteException;
28 * by sqlite.
34 * android.database.sqlite.SQLiteDatabase.CursorFactory, DatabaseErrorHandler)}</li>
36 * android.database.sqlite.SQLiteDatabase.CursorFactory, int, DatabaseErrorHandler)}</li>
54 Log.e(TAG, "Corruption reported by sqlite on database: " + dbObj.getPath());
  /external/chromium_org/content/browser/net/
sqlite_persistent_cookie_store.h 5 // A sqlite implementation of a cookie monster persistent store.
37 // Implements the PersistentCookieStore interface in terms of a SQLite database.
40 // If provided, a |SpecialStoragePolicy| is consulted when the SQLite database
  /external/chromium_org/third_party/sqlite/src/src/
test_btree.c 12 ** Code for testing the btree.c module in SQLite. This code
13 ** is not included in the SQLite library. It is used for automated
14 ** testing of the SQLite library.
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteStatement.java 3 import android.database.sqlite.SQLiteDatabase;
4 import android.database.sqlite.SQLiteDoneException;
5 import android.database.sqlite.SQLiteStatement;
ShadowSQLiteCloseable.java 3 import android.database.sqlite.SQLiteClosable;
  /frameworks/base/core/jni/
android_database_SQLiteDebug.cpp 61 { "nativeGetPagerStats", "(Landroid/database/sqlite/SQLiteDebug$PagerStats;)V",
76 FIND_CLASS(clazz, "android/database/sqlite/SQLiteDebug$PagerStats");
85 return AndroidRuntime::registerNativeMethods(env, "android/database/sqlite/SQLiteDebug",
  /libcore/luni/src/test/java/libcore/sqlite/
OldSQLiteTest.java 17 package libcore.sqlite;
43 Class.forName("SQLite.JDBCDriver").newInstance();
48 conn = DriverManager.getConnection("jdbc:sqlite:/" + dbFile.getPath());
OldStmtTest.java 17 package libcore.sqlite;
19 import SQLite.Constants;
20 import SQLite.Database;
21 import SQLite.Stmt;
22 import SQLite.TableResult;
106 } catch (SQLite.Exception expected) {
115 } catch (SQLite.Exception expected) {
148 } catch (SQLite.Exception expected) {
165 } catch (SQLite.Exception expected) {
191 } catch (SQLite.Exception expected)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
transactions.py 26 import sqlite3 as sqlite namespace
38 self.con1 = sqlite.connect(get_db_path(), timeout=0.1)
41 self.con2 = sqlite.connect(get_db_path(), timeout=0.1)
116 if sqlite.sqlite_version_info < (3, 2, 2):
117 # This will fail (hang) on earlier versions of sqlite.
125 except sqlite.OperationalError:
135 if sqlite.sqlite_version_info < (3, 2, 2):
136 # This will fail (hang) on earlier versions of sqlite.
144 except sqlite.OperationalError:
156 con = sqlite.connect(":memory:"
    [all...]
userfunctions.py 26 import sqlite3 as sqlite namespace
125 self.con = sqlite.connect(":memory:")
150 except sqlite.OperationalError:
220 except sqlite.OperationalError, e:
261 self.con = sqlite.connect(":memory:")
292 except sqlite.OperationalError:
309 except sqlite.OperationalError, e:
318 except sqlite.OperationalError, e:
327 except sqlite.OperationalError, e:
336 except sqlite.OperationalError, e
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
transactions.py 26 import sqlite3 as sqlite namespace
38 self.con1 = sqlite.connect(get_db_path(), timeout=0.1)
41 self.con2 = sqlite.connect(get_db_path(), timeout=0.1)
116 if sqlite.sqlite_version_info < (3, 2, 2):
117 # This will fail (hang) on earlier versions of sqlite.
125 except sqlite.OperationalError:
135 if sqlite.sqlite_version_info < (3, 2, 2):
136 # This will fail (hang) on earlier versions of sqlite.
144 except sqlite.OperationalError:
156 con = sqlite.connect(":memory:"
    [all...]
userfunctions.py 26 import sqlite3 as sqlite namespace
125 self.con = sqlite.connect(":memory:")
150 except sqlite.OperationalError:
220 except sqlite.OperationalError, e:
261 self.con = sqlite.connect(":memory:")
292 except sqlite.OperationalError:
309 except sqlite.OperationalError, e:
318 except sqlite.OperationalError, e:
327 except sqlite.OperationalError, e:
336 except sqlite.OperationalError, e
    [all...]
  /external/chromium/chrome/common/
DEPS 20 "+third_party/sqlite",
  /external/chromium_org/build/linux/unbundle/
sqlite.gyp 8 'target_name': 'sqlite',
  /external/chromium_org/third_party/sqlite/src/tool/
opcodeDoc.awk 6 print "<h1>SQLite Virtual Database Engine Opcodes</h1>"
  /external/javasqlite/src/main/java/SQLite/
TableResult.java 1 package SQLite;
6 * Class representing an SQLite result set as
15 * SQLite.Database db = new SQLite.Database();
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
SQLite_Test.java 4 import android.database.sqlite.SQLiteDatabase;
10 import static com.xtremelabs.robolectric.util.SQLite.*;
31 SQLite.SQLStringAndBindings insertString = buildInsertString("table_name", values, SQLiteDatabase.CONFLICT_NONE);
38 SQLite.SQLStringAndBindings insertString = buildUpdateString("table_name", values, "id=?", new String[]{"1234"});

Completed in 322 milliseconds

1 2 3 45 6 7 8 91011>>