HomeSort by relevance Sort by last modified time
    Searched refs:db (Results 476 - 500 of 1274) sorted by null

<<11121314151617181920>>

  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
XPathExpressionImpl.java 235 static DocumentBuilder db = null; field in class:XPathExpressionImpl
294 db = dbf.newDocumentBuilder();
295 Document document = db.parse( source );
381 db = dbf.newDocumentBuilder();
383 DOMImplementation dim = db.getDOMImplementation();
  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/api/map_job/
model_datastore_input_reader.py 7 from google.appengine.ext import db namespace
23 Supports both db.model and ndb.model.
31 if isinstance(entity_type, db.Model):
98 if issubclass(model_class, db.Model):
115 model_class: the db.Model class for the entity type to apply filters on.
136 except db.BadValueError, e:
159 except db.BadValueError, e:
  /frameworks/base/core/java/android/database/
DatabaseUtils.java 773 * @param db the database the table is in
777 public static long queryNumEntries(SQLiteDatabase db, String table) {
778 return queryNumEntries(db, table, null, null);
783 * @param db the database the table is in
790 public static long queryNumEntries(SQLiteDatabase db, String table, String selection) {
791 return queryNumEntries(db, table, selection, null);
796 * @param db the database the table is in
807 public static long queryNumEntries(SQLiteDatabase db, String table, String selection,
810 return longForQuery(db, "select count(*) from " + table + s,
816 * @param db the database the table is i
1367 SQLiteDatabase db = context.openOrCreateDatabase(dbName, 0, null); local
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
SmsProvider.java 123 SQLiteDatabase db = getDBOpenHelper(match).getReadableDatabase(); local
213 purgeDeletedMessagesInRawTable(db);
264 Cursor ret = qb.query(db, projectionIn, selection, selectionArgs,
273 private void purgeDeletedMessagesInRawTable(SQLiteDatabase db) {
275 int num = db.delete(TABLE_RAW, "deleted = 1 AND date < " + oldTimestamp, null);
524 SQLiteDatabase db = getDBOpenHelper(match).getWritableDatabase(); local
570 db.delete(TABLE_SMS, "thread_id=? AND type=?",
618 rowID = db.insert(table, "body", values);
632 db.insert(TABLE_WORDS, Telephony.MmsSms.WordsTable.INDEXED_TEXT, cv);
652 SQLiteDatabase db = getDBOpenHelper(match).getWritableDatabase() local
759 SQLiteDatabase db = getDBOpenHelper(match).getWritableDatabase(); local
    [all...]
  /external/sqlite/dist/orig/
sqlite3.h     [all...]
  /external/sqlite/dist/
sqlite3.h     [all...]
  /external/opencv/ml/src/
mlann_mlp.cpp 256 weights[0] = wbuf->data.db;
326 calc_activ_func( layer_out, _w.data.db + _w.rows*_w.cols );
344 double* dst = _dst->data.db;
359 const double* src = _src->data.db;
372 const double* src = _src->data.db;
387 double* dst = _dst->data.db;
400 double* data = sums->data.db;
480 double* xf = _xf->data.db;
481 double* df = _df->data.db;
588 const double* d = vecs->data.db[i]
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
BugleDatabaseOperations.java 160 * @param db the database
167 public static String getOrCreateConversationFromThreadId(final DatabaseWrapper db,
174 return getOrCreateConversation(db, threadId, senderBlocked, participants, false, false,
181 * @param db the database
188 public static String getOrCreateConversationFromRecipient(final DatabaseWrapper db,
193 return getOrCreateConversation(db, threadId, senderBlocked, recipients, false, false, null);
199 * @param db the database
209 public static String getOrCreateConversation(final DatabaseWrapper db, final long threadId,
214 // Check to see if this conversation is already in out local db cache
215 String conversationId = BugleDatabaseOperations.getExistingConversation(db, threadId
1811 final DatabaseWrapper db = DataModel.get().getDatabase(); local
1871 final DatabaseWrapper db = DataModel.get().getDatabase(); local
    [all...]
  /external/opencv/cv/src/
cvcalibration.cpp 265 double *row = JtJ->data.db + i*nparams, *col = JtJ->data.db + i;
268 JtErr->data.db[i] = 0;
278 param->data.db[i] = prevParam->data.db[i] - (mask->data.ptr[i] ? param->data.db[i] : 0);
548 rx = src->data.db[0];
549 ry = src->data.db[step];
550 rz = src->data.db[step*2];
732 dst->data.db[0] = rx
    [all...]
  /external/autotest/scheduler/
scheduler_lib.py 73 db = database_connection.DatabaseConnection(DB_CONFIG_SECTION)
74 db.connect(db_type='django')
75 return db
93 logging.debug('Could not close the db connection. %s', e)
monitor_db_cleanup.py 20 def __init__(self, db, clean_interval_minutes, run_at_initialize=False):
21 self._db = db
57 def __init__(self, db, clean_interval_minutes):
58 super(UserCleanup, self).__init__(db, clean_interval_minutes)
106 logging.info('Cleaning db inconsistencies')
233 def __init__(self, db, drone_manager, run_at_initialize=True):
236 @param db: Database connection object.
245 db, clean_interval_minutes, run_at_initialize=run_at_initialize)
257 logging.info('Checking for uncleanable DB inconsistencies')
  /external/chromium-trace/catapult/dashboard/dashboard/
mr.py 130 Either one op.db.Put, or nothing.
148 yield op.db.Put(new_alert)
154 yield op.db.Put(test)
167 yield op.db.Put(suite)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/rds/
test_promote_modify.py 25 self.masterDB_name = "boto-db-%s" % str(int(time.time()))
32 for db in [self.masterDB_name, self.replicaDB_name, self.renamedDB_name]:
34 if i.id == db:
35 self.conn.delete_dbinstance(db, skip_final_snapshot=True)
39 self.masterDB = self.conn.create_dbinstance(self.masterDB_name, 5, 'db.t1.micro', 'root', 'bototestpw')
135 # Since the replica DB was renamed...
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
ReadDraftDataAction.java 84 final DatabaseWrapper db = DataModel.get().getDatabase(); local
88 ConversationListItemData.getExistingConversation(db, conversationId);
92 message = BugleDatabaseOperations.readDraftMessageData(db, conversationId,
UpdateDestinationBlockedAction.java 110 final DatabaseWrapper db = DataModel.get().getDatabase(); local
111 BugleDatabaseOperations.updateDestination(db, destination, isBlocked);
114 .getConversationFromOtherParticipantDestination(db, destination);
  /external/boringssl/win-x86/crypto/modes/
ghash-x86.asm 943 db 102,15,58,68,194,0 label
944 db 102,15,58,68,202,17 label
945 db 102,15,58,68,220,0 label
979 db 102,15,58,15,227,8 label
995 db 102,15,56,0,197 label
1000 db 102,15,58,68,194,0 label
1001 db 102,15,58,68,202,17 label
1002 db 102,15,58,68,220,0 label
1030 db 102,15,56,0,197 label
1052 db 102,15,56,0,19 label
1057 db 102,15,56,0,221 label
1058 db 102,15,56,0,245 label
1065 db 102,15,58,68,242,0 label
1066 db 102,15,58,68,250,17 label
1067 db 102,15,58,68,221,0 label
1079 db 102,15,58,68,194,0 label
1080 db 102,15,58,68,202,17 label
1081 db 102,15,58,68,229,16 label
1090 db 102,15,56,0,253 label
1097 db 102,15,56,0,245 label
1106 db 102,15,58,68,242,0 label
1119 db 102,15,58,68,250,17 label
1126 db 102,15,58,68,221,0 label
1134 db 102,15,58,68,194,0 label
1135 db 102,15,58,68,202,17 label
1136 db 102,15,58,68,229,16 label
1173 db 102,15,56,0,221 label
1180 db 102,15,58,68,194,0 label
1181 db 102,15,58,68,202,17 label
1182 db 102,15,58,68,220,0 label
1211 db 102,15,56,0,197 label
1220 db 15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0 label
1221 db 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194 label
1262 db 71,72,65,83,72,32,102,111,114,32,120,56,54,44,32,67 label
1263 db 82,89,80,84,79,71,65,77,83,32,98,121,32,60,97,112 label
1264 db 112,114,111,64,111,112,101,110,115,115,108,46,111,114,103,62 label
1265 db 0 label
    [all...]
  /external/libvpx/libvpx/vp8/common/x86/
subpixel_ssse3.asm     [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/x86/
subpixel_ssse3.asm     [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ColorMatrixSample.java 47 float db, float da) {
51 0, 0, 2, 0, db,
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/manager/
__init__.py 29 [DB]
41 The values in the DB section are "generic values" that will be used
43 a specific Model class that gives the db info for that class.
46 db_user = boto.config.get('DB', 'db_user', None)
47 db_passwd = boto.config.get('DB', 'db_passwd', None)
48 db_type = boto.config.get('DB', 'db_type', 'SimpleDB')
49 db_name = boto.config.get('DB', 'db_name', None)
50 db_table = boto.config.get('DB', 'db_table', None)
51 db_host = boto.config.get('DB', 'db_host', "sdb.amazonaws.com")
52 db_port = boto.config.getint('DB', 'db_port', 443
    [all...]
  /external/owasp/sanitizer/tools/findbugs/bin/
findbugs-dbStats 64 fb_mainclass=edu.umd.cs.findbugs.cloud.db.DBStats
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryDownloadProgressBar.java 55 final SQLiteDatabase db = MetadataDbHelper.getDb(context, clientId); local
57 MetadataDbHelper.getContentValuesOfLatestAvailableWordlistById(db, wordlistId);
137 // clean up the db entry.
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
CommonNicknameCache.java 43 public CommonNicknameCache(SQLiteDatabase db) {
44 mDb = db;
  /prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/test/
test_all.py 64 def __init__(self, db, *args, **kwargs) :
65 self._dbcursor = db.cursor(*args, **kwargs)
399 def __init__(self, db, *args, **kwargs) :
400 self._db=db
401 self._dbsequence = bsddb._db.DBSequence_orig(db._db, *args, **kwargs)
419 bsddb._db.DB_orig = bsddb._db.DB
420 if bsddb.db.version() <= (4, 3) :
429 bsddb.DBEnv = bsddb.db.DBEnv = bsddb._db.DBEnv = DBEnv_py3k
430 bsddb.DB = bsddb.db.DB = bsddb._db.DB = DB_py3
444 hashopen, btopen, rnopen, dbobj namespace
448 hashopen, btopen, rnopen, dbobj namespace
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/bsddb/test/
test_all.py 64 def __init__(self, db, *args, **kwargs) :
65 self._dbcursor = db.cursor(*args, **kwargs)
399 def __init__(self, db, *args, **kwargs) :
400 self._db=db
401 self._dbsequence = bsddb._db.DBSequence_orig(db._db, *args, **kwargs)
419 bsddb._db.DB_orig = bsddb._db.DB
420 if bsddb.db.version() <= (4, 3) :
429 bsddb.DBEnv = bsddb.db.DBEnv = bsddb._db.DBEnv = DBEnv_py3k
430 bsddb.DB = bsddb.db.DB = bsddb._db.DB = DB_py3
444 hashopen, btopen, rnopen, dbobj namespace
448 hashopen, btopen, rnopen, dbobj namespace
    [all...]

Completed in 967 milliseconds

<<11121314151617181920>>