HomeSort by relevance Sort by last modified time
    Searched defs:db (Results 401 - 425 of 735) sorted by null

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/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...]
test_basics.py 3 various DB flags, etc.
14 from test_all import db, test_support, verbose, get_new_environment_path, \
24 info = db.version()
27 print 'bsddb.db.version(): %s' % (info, )
28 print db.DB_VERSION_STRING
30 self.assertEqual(info, (db.DB_VERSION_MAJOR, db.DB_VERSION_MINOR,
31 db.DB_VERSION_PATCH))
36 dbtype = db.DB_UNKNOWN # must be set in derived class
52 self.env = db.DBEnv(
15 get_new_database_path namespace
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
dbobj.py 2 # This file contains real Python object wrappers for DB and DBEnv
28 exec("from . import db") namespace
30 import db namespace
40 self._cobj = db.DBEnv(*args, **kwargs)
64 if db.version() < (4,5):
115 if db.version() >= (4,4):
123 class DB(MutableMapping):
126 self._cobj = db.DB(*((dbenv._cobj,) + args), **kwargs)
237 self._cobj = db.DBSequence(*args, **kwargs
    [all...]
  /prebuilts/python/linux-x86/2.7.5/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...]
test_basics.py 3 various DB flags, etc.
14 from test_all import db, test_support, verbose, get_new_environment_path, \
24 info = db.version()
27 print 'bsddb.db.version(): %s' % (info, )
28 print db.DB_VERSION_STRING
30 self.assertEqual(info, (db.DB_VERSION_MAJOR, db.DB_VERSION_MINOR,
31 db.DB_VERSION_PATCH))
36 dbtype = db.DB_UNKNOWN # must be set in derived class
52 self.env = db.DBEnv(
15 get_new_database_path namespace
    [all...]
  /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...]
  /frameworks/base/media/java/android/mtp/
MtpDatabase.java 255 SQLiteDatabase db = null; local
258 db = context.openOrCreateDatabase("device-properties", Context.MODE_PRIVATE, null);
259 if (db != null) {
260 c = db.query("properties", new String[] { "_id", "code", "value" },
276 if (db != null) db.close();
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDatabaseHelper.java 62 private static final String DATABASE_NAME = "calendar.db";
326 public void onOpen(SQLiteDatabase db) {
327 mSyncState.onDatabaseOpened(db);
329 mCalendarsInserter = new DatabaseUtils.InsertHelper(db, Tables.CALENDARS);
330 mColorsInserter = new DatabaseUtils.InsertHelper(db, Tables.COLORS);
331 mEventsInserter = new DatabaseUtils.InsertHelper(db, Tables.EVENTS);
332 mEventsRawTimesInserter = new DatabaseUtils.InsertHelper(db, Tables.EVENTS_RAW_TIMES);
333 mInstancesInserter = new DatabaseUtils.InsertHelper(db, Tables.INSTANCES);
334 mAttendeesInserter = new DatabaseUtils.InsertHelper(db, Tables.ATTENDEES);
335 mRemindersInserter = new DatabaseUtils.InsertHelper(db, Tables.REMINDERS)
3130 SQLiteDatabase db = super.getWritableDatabase(); local
3370 final SQLiteDatabase db = getWritableDatabase(); local
3436 final SQLiteDatabase db = getWritableDatabase(); local
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseContactsProvider2Test.java 557 // There's no api for this, so we just tweak the DB directly.
558 SQLiteDatabase db = ((ContactsProvider2) getProvider()).getDatabaseHelper() local
560 db.execSQL("DELETE FROM " + Tables.DEFAULT_DIRECTORY +
565 // There's no api for this, so we just tweak the DB directly.
566 SQLiteDatabase db = ((ContactsProvider2) getProvider()).getDatabaseHelper() local
573 return db.insert(Tables.ACCOUNTS, null, values);
1029 SQLiteDatabase db = ((ContactsProvider2) getProvider()).getDatabaseHelper() local
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsProvider2.java 238 // The database tag to use for representing the contacts DB in contacts transactions.
241 // The database tag to use for representing the profile DB in contacts transactions.
1823 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
1922 SQLiteDatabase db = mContactsHelper.getWritableDatabase(); local
1972 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
2309 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
2329 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
2423 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
2424 mAggregator.get().aggregateInTransaction(mTransactionContext.get(), db); local
2474 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
2477 mAggregator.get().onRawContactInsert(mTransactionContext.get(), db, rawContactId); local
2654 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
2888 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
2928 final SQLiteDatabase db = mDbHelper.get().getReadableDatabase(); local
2962 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
2975 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
3011 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
3046 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
3087 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
3140 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
3173 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
3203 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
3257 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
3327 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
3348 final SQLiteDatabase db = dbHelper.getWritableDatabase(); local
3598 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
3817 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
3840 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
3847 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
3872 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
3913 final SQLiteDatabase db = mDbHelper.get().getReadableDatabase(); local
3931 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
3939 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
3961 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
3966 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
3989 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
4013 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
4278 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
4308 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
4325 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
4397 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
4480 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
4501 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
4717 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
4737 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
4892 aggregator.aggregateContact(mTransactionContext.get(), db, rawContactId1); local
4893 aggregator.aggregateContact(mTransactionContext.get(), db, rawContactId2); local
5210 final SQLiteDatabase db = dbHelper.getWritableDatabase(); local
5449 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
5700 SQLiteDatabase db = mDbHelper.get().getReadableDatabase(); local
5732 final SQLiteDatabase db = mDbHelper.get().getReadableDatabase(); local
8627 final SQLiteDatabase db = mDbHelper.get().getDatabase(writing); local
9643 SQLiteDatabase db = null; local
9656 mContactAggregator.aggregateInTransaction(mTransactionContext.get(), db); local
9680 final SQLiteDatabase db = mContactsHelper.getWritableDatabase(); local
9763 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
9819 final SQLiteDatabase db = mDbHelper.get().getWritableDatabase(); local
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
AbstractContactAggregator.java 283 SQLiteDatabase db = mDbHelper.getReadableDatabase(); local
307 mAggregatedPresenceReplace = db.compileStatement(replaceAggregatePresenceSql);
309 mRawContactCountQuery = db.compileStatement(
315 mAggregatedPresenceDelete = db.compileStatement(
319 mMarkForAggregation = db.compileStatement(
325 mPhotoIdUpdate = db.compileStatement(
330 mDisplayNameUpdate = db.compileStatement(
335 mLookupKeyUpdate = db.compileStatement(
340 mStarredUpdate = db.compileStatement("UPDATE " + Tables.CONTACTS + " SET "
346 mSendToVoicemailUpdate = db.compileStatement("UPDATE " + Tables.CONTACTS + " SET
702 final SQLiteDatabase db = mDbHelper.getWritableDatabase(); local
1951 final SQLiteDatabase db = mDbHelper.getReadableDatabase(); local
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
DatabaseUtilsTest.java 57 mDatabaseFile = new File(dbDir, "database_test.db");
144 SQLiteDatabase db = getContext().openOrCreateDatabase(dbName, 0, null); local
149 Cursor cursor = db.query(TABLE_NAME, PROJECTION, null, null, null, null, null);
  /device/google/contexthub/firmware/src/algos/
fusion.c 502 struct Vec3 db; local
503 mat33Apply(&db, &K[1], &e);
504 vec3Add(&fusion->x1, &db);
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TransformerIdentityImpl.java 228 DocumentBuilder db = dbf.newDocumentBuilder(); local
230 doc = db.newDocument();
    [all...]
  /external/autotest/frontend/afe/
model_logic.py 6 from django.db import backend
7 from django.db import connection
8 from django.db import connections
9 from django.db import models as dbmodels
10 from django.db import transaction
11 from django.db.models.sql import query
12 import django.db.models.sql.where namespace
170 compiler = join_to_query.query.get_compiler(using=join_to_query.db)
279 django.db.models.sql.where.AND)
306 compiler = query_set.query.get_compiler(using=query_set.db)
    [all...]
  /external/autotest/scheduler/
monitor_db.py 18 import django.db namespace
375 self._log_tick_msg('Calling django.db.reset_queries().')
377 django.db.reset_queries()
    [all...]
monitor_db_functional_test.py 70 db = None variable in class:MockConnectionManager
76 assert MockConnectionManager.db
77 return MockConnectionManager.db
362 MockConnectionManager.db = self._database
424 # update from DB
430 # update from DB
    [all...]
  /external/boringssl/win-x86/crypto/aes/
aes-586.asm 843 db 99,124,119,123,242,107,111,197 label
844 db 48,1,103,43,254,215,171,118 label
845 db 202,130,201,125,250,89,71,240 label
846 db 173,212,162,175,156,164,114,192 label
847 db 183,253,147,38,54,63,247,204 label
848 db 52,165,229,241,113,216,49,21 label
849 db 4,199,35,195,24,150,5,154 label
850 db 7,18,128,226,235,39,178,117 label
851 db 9,131,44,26,27,110,90,160 label
852 db 82,59,214,179,41,227,47,13 label
853 db 83,209,0,237,32,252,177,91 label
854 db 106,203,190,57,74,76,88,207 label
855 db 208,239,170,251,67,77,51,133 label
856 db 69,249,2,127,80,60,159,168 label
857 db 81,163,64,143,146,157,56,245 label
858 db 188,182,218,33,16,255,243,210 label
859 db 205,12,19,236,95,151,68,23 label
860 db 196,167,126,61,100,93,25,115 label
861 db 96,129,79,220,34,42,144,136 label
862 db 70,238,184,20,222,94,11,219 label
863 db 224,50,58,10,73,6,36,92 label
864 db 194,211,172,98,145,149,228,121 label
865 db 231,200,55,109,141,213,78,169 label
866 db 108,86,244,234,101,122,174,8 label
867 db 186,120,37,46,28,166,180,198 label
868 db 232,221,116,31,75,189,139,138 label
869 db 112,62,181,102,72,3,246,14 label
870 db 97,53,87,185,134,193,29,158 label
871 db 225,248,152,17,105,217,142,148 label
872 db 155,30,135,233,206,85,40,223 label
873 db 140,161,137,13,191,230,66,104 label
874 db 65,153,45,15,176,84,187,22 label
875 db 99,124,119,123,242,107,111,197 label
876 db 48,1,103,43,254,215,171,118 label
877 db 202,130,201,125,250,89,71,240 label
878 db 173,212,162,175,156,164,114,192 label
879 db 183,253,147,38,54,63,247,204 label
880 db 52,165,229,241,113,216,49,21 label
881 db 4,199,35,195,24,150,5,154 label
882 db 7,18,128,226,235,39,178,117 label
883 db 9,131,44,26,27,110,90,160 label
884 db 82,59,214,179,41,227,47,132 label
885 db 83,209,0,237,32,252,177,91 label
886 db 106,203,190,57,74,76,88,207 label
887 db 208,239,170,251,67,77,51,133 label
888 db 69,249,2,127,80,60,159,168 label
889 db 81,163,64,143,146,157,56,245 label
890 db 188,182,218,33,16,255,243,210 label
891 db 205,12,19,236,95,151,68,23 label
892 db 196,167,126,61,100,93,25,115 label
893 db 96,129,79,220,34,42,144,136 label
894 db 70,238,184,20,222,94,11,219 label
895 db 224,50,58,10,73,6,36,92 label
896 db 194,211,172,98,145,149,228,121 label
897 db 231,200,55,109,141,213,78,169 label
898 db 108,86,244,234,101,122,174,8 label
899 db 186,120,37,46,28,166,180,198 label
900 db 232,221,116,31,75,189,139,138 label
901 db 112,62,181,102,72,3,246,14 label
902 db 97,53,87,185,134,193,29,158 label
903 db 225,248,152,17,105,217,142,148 label
904 db 155,30,135,233,206,85,40,223 label
905 db 140,161,137,13,191,230,66,104 label
906 db 65,153,45,15,176,84,187,22 label
907 db 99,124,119,123,242,107,111,197 label
908 db 48,1,103,43,254,215,171,118 label
909 db 202,130,201,125,250,89,71,240 label
910 db 173,212,162,175,156,164,114,192 label
911 db 183,253,147,38,54,63,247,204 label
912 db 52,165,229,241,113,216,49,21 label
913 db 4,199,35,195,24,150,5,154 label
914 db 7,18,128,226,235,39,178,117 label
915 db 9,131,44,26,27,110,90,160 label
916 db 82,59,214,179,41,227,47,132 label
917 db 83,209,0,237,32,252,177,91 label
918 db 106,203,190,57,74,76,88,207 label
919 db 208,239,170,251,67,77,51,133 label
920 db 69,249,2,127,80,60,159,168 label
921 db 81,163,64,143,146,157,56,245 label
922 db 188,182,218,33,16,255,243,210 label
923 db 205,12,19,236,95,151,68,23 label
924 db 196,167,126,61,100,93,25,115 label
925 db 96,129,79,220,34,42,144,136 label
926 db 70,238,184,20,222,94,11,219 label
927 db 224,50,58,10,73,6,36,92 label
928 db 194,211,172,98,145,149,228,121 label
929 db 231,200,55,109,141,213,78,169 label
930 db 108,86,244,234,101,122,174,8 label
931 db 186,120,37,46,28,166,180,198 label
932 db 232,221,116,31,75,189,139,138 label
933 db 112,62,181,102,72,3,246,14 label
934 db 97,53,87,185,134,193,29,158 label
935 db 225,248,152,17,105,217,142,148 label
936 db 155,30,135,233,206,85,40,223 label
937 db 140,161,137,13,191,230,66,104 label
938 db 65,153,45,15,176,84,187,22 label
939 db 99,124,119,123,242,107,111,197 label
940 db 48,1,103,43,254,215,171,118 label
941 db 202,130,201,125,250,89,71,240 label
942 db 173,212,162,175,156,164,114,192 label
943 db 183,253,147,38,54,63,247,204 label
944 db 52,165,229,241,113,216,49,21 label
945 db 4,199,35,195,24,150,5,154 label
946 db 7,18,128,226,235,39,178,117 label
947 db 9,131,44,26,27,110,90,160 label
948 db 82,59,214,179,41,227,47,132 label
949 db 83,209,0,237,32,252,177,91 label
950 db 106,203,190,57,74,76,88,207 label
951 db 208,239,170,251,67,77,51,133 label
952 db 69,249,2,127,80,60,159,168 label
953 db 81,163,64,143,146,157,56,245 label
954 db 188,182,218,33,16,255,243,210 label
955 db 205,12,19,236,95,151,68,23 label
956 db 196,167,126,61,100,93,25,115 label
957 db 96,129,79,220,34,42,144,136 label
958 db 70,238,184,20,222,94,11,219 label
959 db 224,50,58,10,73,6,36,92 label
960 db 194,211,172,98,145,149,228,121 label
961 db 231,200,55,109,141,213,78,169 label
962 db 108,86,244,234,101,122,174,8 label
963 db 186,120,37,46,28,166,180,198 label
964 db 232,221,116,31,75,189,139,138 label
965 db 112,62,181,102,72,3,246,14 label
966 db 97,53,87,185,134,193,29,158 label
967 db 225,248,152,17,105,217,142,148 label
968 db 155,30,135,233,206,85,40,223 label
969 db 140,161,137,13,191,230,66,104 label
970 db 65,153,45,15,176,84,187,22 label
2027 db 82,9,106,213,48,54,165,56 label
2028 db 191,64,163,158,129,243,215,251 label
2029 db 124,227,57,130,155,47,255,135 label
2030 db 52,142,67,68,196,222,233,203 label
2031 db 84,123,148,50,166,194,35,61 label
2032 db 238,76,149,11,66,250,195,78 label
2033 db 8,46,161,102,40,217,36,178 label
2034 db 118,91,162,73,109,139,209,37 label
2035 db 114,248,246,100,134,104,152,22 label
2036 db 212,164,92,204,93,101,182,146 label
2037 db 108,112,72,80,253,237,185,218 label
2038 db 94,21,70,87,167,141,157,132 label
2039 db 144,216,171,0,140,188,211,10 label
2040 db 247,228,88,5,184,179,69,6 label
2041 db 208,44,30,143,202,63,15,2 label
2042 db 193,175,189,3,1,19,138,107 label
2043 db 58,145,17,65,79,103,220,234 label
2044 db 151,242,207,206,240,180,230,115 label
2045 db 150,172,116,34,231,173,53,133 label
2046 db 226,249,55,232,28,117,223,110 label
2047 db 71,241,26,113,29,41,197,137 label
2048 db 111,183,98,14,170,24,190,27 label
2049 db 252,86,62,75,198,210,121,32 label
2050 db 154,219,192,254,120,205,90,244 label
2051 db 31,221,168,51,136,7,199,49 label
2052 db 177,18,16,89,39,128,236,95 label
2053 db 96,81,127,169,25,181,74,13 label
2054 db 45,229,122,159,147,201,156,239 label
2055 db 160,224,59,77,174,42,245,176 label
2056 db 200,235,187,60,131,83,153,97 label
2057 db 23,43,4,126,186,119,214,38 label
2058 db 225,105,20,99,85,33,12,125 label
2059 db 82,9,106,213,48,54,165,56 label
2060 db 191,64,163,158,129,243,215,251 label
2061 db 124,227,57,130,155,47,255,135 label
2062 db 52,142,67,68,196,222,233,203 label
2063 db 84,123,148,50,166,194,35,61 label
2064 db 238,76,149,11,66,250,195,78 label
2065 db 8,46,161,102,40,217,36,178 label
2066 db 118,91,162,73,109,139,209,37 label
2067 db 114,248,246,100,134,104,152,22 label
2068 db 212,164,92,204,93,101,182,146 label
2069 db 108,112,72,80,253,237,185,218 label
2070 db 94,21,70,87,167,141,157,132 label
2071 db 144,216,171,0,140,188,211,10 label
2072 db 247,228,88,5,184,179,69,6 label
2073 db 208,44,30,143,202,63,15,2 label
2074 db 193,175,189,3,1,19,138,107 label
2075 db 58,145,17,65,79,103,220,234 label
2076 db 151,242,207,206,240,180,230,115 label
2077 db 150,172,116,34,231,173,53,133 label
2078 db 226,249,55,232,28,117,223,110 label
2079 db 71,241,26,113,29,41,197,137 label
2080 db 111,183,98,14,170,24,190,27 label
2081 db 252,86,62,75,198,210,121,32 label
2082 db 154,219,192,254,120,205,90,244 label
2083 db 31,221,168,51,136,7,199,49 label
2084 db 177,18,16,89,39,128,236,95 label
2085 db 96,81,127,169,25,181,74,13 label
2086 db 45,229,122,159,147,201,156,239 label
2087 db 160,224,59,77,174,42,245,176 label
2088 db 200,235,187,60,131,83,153,97 label
2089 db 23,43,4,126,186,119,214,38 label
2090 db 225,105,20,99,85,33,12,125 label
2091 db 82,9,106,213,48,54,165,56 label
2092 db 191,64,163,158,129,243,215,251 label
2093 db 124,227,57,130,155,47,255,135 label
2094 db 52,142,67,68,196,222,233,203 label
2095 db 84,123,148,50,166,194,35,61 label
2096 db 238,76,149,11,66,250,195,78 label
2097 db 8,46,161,102,40,217,36,178 label
2098 db 118,91,162,73,109,139,209,37 label
2099 db 114,248,246,100,134,104,152,22 label
2100 db 212,164,92,204,93,101,182,146 label
2101 db 108,112,72,80,253,237,185,218 label
2102 db 94,21,70,87,167,141,157,132 label
2103 db 144,216,171,0,140,188,211,10 label
2104 db 247,228,88,5,184,179,69,6 label
2105 db 208,44,30,143,202,63,15,2 label
2106 db 193,175,189,3,1,19,138,107 label
2107 db 58,145,17,65,79,103,220,234 label
2108 db 151,242,207,206,240,180,230,115 label
2109 db 150,172,116,34,231,173,53,133 label
2110 db 226,249,55,232,28,117,223,110 label
2111 db 71,241,26,113,29,41,197,137 label
2112 db 111,183,98,14,170,24,190,27 label
2113 db 252,86,62,75,198,210,121,32 label
2114 db 154,219,192,254,120,205,90,244 label
2115 db 31,221,168,51,136,7,199,49 label
2116 db 177,18,16,89,39,128,236,95 label
2117 db 96,81,127,169,25,181,74,13 label
2118 db 45,229,122,159,147,201,156,239 label
2119 db 160,224,59,77,174,42,245,176 label
2120 db 200,235,187,60,131,83,153,97 label
2121 db 23,43,4,126,186,119,214,38 label
2122 db 225,105,20,99,85,33,12,125 label
2123 db 82,9,106,213,48,54,165,56 label
2124 db 191,64,163,158,129,243,215,251 label
2125 db 124,227,57,130,155,47,255,135 label
2126 db 52,142,67,68,196,222,233,203 label
2127 db 84,123,148,50,166,194,35,61 label
2128 db 238,76,149,11,66,250,195,78 label
2129 db 8,46,161,102,40,217,36,178 label
2130 db 118,91,162,73,109,139,209,37 label
2131 db 114,248,246,100,134,104,152,22 label
2132 db 212,164,92,204,93,101,182,146 label
2133 db 108,112,72,80,253,237,185,218 label
2134 db 94,21,70,87,167,141,157,132 label
2135 db 144,216,171,0,140,188,211,10 label
2136 db 247,228,88,5,184,179,69,6 label
2137 db 208,44,30,143,202,63,15,2 label
2138 db 193,175,189,3,1,19,138,107 label
2139 db 58,145,17,65,79,103,220,234 label
2140 db 151,242,207,206,240,180,230,115 label
2141 db 150,172,116,34,231,173,53,133 label
2142 db 226,249,55,232,28,117,223,110 label
2143 db 71,241,26,113,29,41,197,137 label
2144 db 111,183,98,14,170,24,190,27 label
2145 db 252,86,62,75,198,210,121,32 label
2146 db 154,219,192,254,120,205,90,244 label
2147 db 31,221,168,51,136,7,199,49 label
2148 db 177,18,16,89,39,128,236,95 label
2149 db 96,81,127,169,25,181,74,13 label
2150 db 45,229,122,159,147,201,156,239 label
2151 db 160,224,59,77,174,42,245,176 label
2152 db 200,235,187,60,131,83,153,97 label
2153 db 23,43,4,126,186,119,214,38 label
2154 db 225,105,20,99,85,33,12,125 label
3215 db 65,69,83,32,102,111,114,32,120,56,54,44,32,67,82,89 label
3216 db 80,84,79,71,65,77,83,32,98,121,32,60,97,112,112,114 label
3217 db 111,64,111,112,101,110,115,115,108,46,111,114,103,62,0 label
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/tests/
test_appengine.py 45 from google.appengine.ext import db namespace
247 class TestFlowModel(db.Model):
422 # Retrieve same key from DB model to confirm mixing works
434 # Set DB store and refresh to add to storage
451 # First DB, then NDB
459 # First NDB, then DB
  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
input_readers.py 62 from google.appengine.ext import db namespace
64 from google.appengine.ext.db import metadata
457 except db.NeedIndexError, why:
610 Supports both db.model and ndb.model.
618 if isinstance(entity_type, db.Model):
639 if issubclass(model_class, db.Model):
656 model_class: the db.Model class for the entity type to apply filters on.
677 except db.BadValueError, e:
712 except db.BadValueError, e:
    [all...]
model.py 54 from google.appengine.ext import db namespace
71 class _HugeTaskPayload(db.Model):
74 payload = db.BlobProperty()
556 class MapreduceState(db.Model):
591 active = db.BooleanProperty(default=True, indexed=False)
592 last_poll_time = db.DateTimeProperty(required=True)
595 app_id = db.StringProperty(required=False, indexed=True)
597 active_shards = db.IntegerProperty(default=0, indexed=False)
598 failed_shards = db.IntegerProperty(default=0, indexed=False)
599 aborted_shards = db.IntegerProperty(default=0, indexed=False
    [all...]
  /external/chromium-trace/catapult/third_party/pipeline/pipeline/
pipeline.py 48 from google.appengine.ext import db namespace
180 slot_key: The db.Key for this slot's _SlotRecord if it's already been
189 slot_key = db.Key.from_path(_SlotRecord.kind(), uuid.uuid4().hex)
266 filler_pipeline_key: The db.Key of the _PipelineRecord that filled
322 already_defined: Maps output name to stringified db.Key (of _SlotRecords)
333 if not isinstance(slot_key, db.Key):
334 slot_key = db.Key(slot_key)
350 all_slots = db.get(slot_key_dict.keys())
476 self._pipeline_key = db.Key.from_path(
572 pipeline_key = db.Key.from_path(_PipelineRecord.kind(), pipeline_id
    [all...]
  /external/chromium-trace/catapult/tracing/third_party/css-element-queries/test/
mootools-more-yui-compressed.min.js 1 MooTools.More={version:"1.5.0",build:"73db5e24e6e9c5c87b3a27aebef2248053f7db37"};(function(){Events.Pseudos=function(a,j,i){var k="_monitorEvents:";var l=function(e){return{store:e.store?function(g,f){e.store(k+g,f)}:function(g,f){(e._monitorEvents||(e._monitorEvents={}))[g]=f},retrieve:e.retrieve?function(g,f){return e.retrieve(k+g,f)}:function(g,f){if(!e._monitorEvents){return f}return e._monitorEvents[g]||f}}};var b=function(f){if(f.indexOf(":")==-1||!a){return null}var g=Slick.parse(f).expressions[0][0],q=g.pseudos,h=q.length,r=[];while(h--){var s=q[h].key,e=a[s];if(e!=null){r.push({event:g.tag,value:q[h].value,pseudo:s,original:f,listener:e})}}return r.length?r:null};return{addEvent:function(t,g,w){var s=b(t);if(!s){return j.call(this,t,g,w)}var v=l(this),e=v.retrieve(t,[]),x=s[0].event,u=Array.slice(arguments,2),h=g,f=this;s.each(function(o){var n=o.listener,m=h;if(n==false){x+=":"+o.pseudo+"("+o.value+")"}else{h=function(){n.call(f,o,m,arguments,h)}}});e.include({type:x,event:g,monitor:h});v.store(t,e);if(t!=x){j.apply(this,[t,g].concat(u))}return j.apply(this,[x,h].concat(u))},removeEvent:function(e,f){var g=b(e);if(!g){return i.call(this,e,f)}var p=l(this),h=p.retrieve(e);if(!h){return this}var o=Array.slice(arguments,2);i.apply(this,[e,f].concat(o));h.each(function(n,m){if(!f||n.event==f){i.apply(this,[n.type,n.monitor].concat(o))}delete h[m]},this);p.store(e,h);return this}}};var c={once:function(b,a,g,h){a.apply(this,g);this.removeEvent(b.event,h).removeEvent(b.original,a)},throttle:function(b,a,f){if(!a._throttled){a.apply(this,f);a._throttled=setTimeout(function(){a._throttled=false},b.value||250)}},pause:function(b,a,f){clearTimeout(a._pause);a._pause=a.delay(b.value||250,this,f)}};Events.definePseudo=function(b,a){c[b]=a;return this};Events.lookupPseudo=function(a){return c[a]};var d=Events.prototype;Events.implement(Events.Pseudos(c,d.addEvent,d.removeEvent));["Request","Fx"].each(function(a){if(this[a]){this[a].implement(Events.prototype)}})})();Class.refactor=function(c,d){Object.each(d,function(a,b){var f=c.prototype[b];f=(f&&f.$origin)||f||function(){};c.implement(b,(typeof a=="function")?function(){var h=this.previous;this.previous=f;var e=a.apply(this,arguments);this.previous=h;return e}:a)});return c};Class.Mutators.Binds=function(b){if(!this.prototype.initialize){this.implement("initialize",function(){})}return Array.from(b).concat(this.prototype.Binds||[])};Class.Mutators.initialize=function(b){return function(){Array.from(this.Binds).each(function(a){var d=this[a];if(d){this[a]=d.bind(this)}},this);return b.apply(this,arguments)}};Class.Occlude=new Class({occlude:function(f,d){d=document.id(d||this.element);var e=d.retrieve(f||this.property);if(e&&!this.occluded){return(this.occluded=e)}this.occluded=false;d.store(f||this.property,this);return this.occluded}});(function(){var b={wait:function(a){return this.chain(function(){this.callChain.delay(a==null?500:a,this);return this}.bind(this))}};Chain.implement(b);if(this.Fx){Fx.implement(b)}if(this.Element&&Element.implement&&this.Fx){Element.implement({chains:function(a){Array.from(a||["tween","morph","reveal"]).each(function(d){d=this.get(d);if(!d){return}d.setOptions({link:"chain"})},this);return this},pauseFx:function(d,a){this.chains(a).get(a||"tween").wait(d);return this}})}})();(function(b){Array.implement({min:function(){return Math.min.apply(null,this)},max:function(){return Math.max.apply(null,this)},average:function(){return this.length?this.sum()/this.length:0},sum:function(){var a=0,d=this.length;if(d){while(d--){if(this[d]!=null){a+=parseFloat(this[d])}}}return a},unique:function(){return[].combine(this)},shuffle:function(){for(var f=this.length;f&&--f;){var a=this[f],e=Math.floor(Math.random()*(f+1));this[f]=this[e];this[e]=a}return this},reduce:function(g,f){for(var h=0,a=this.length;h<a;h++){if(h in this){f=f===b?this[h]:g.call(null,f,this[h],h,this)}}return f},reduceRight:function(f,e){var a=this.length;while(a--){if(a in this){e=e===b?this[a]:f.call(null,e,this[a],a,this)}}return e},pluck:function(a){return this.map(function(d){return d[a]})}})})();(function(){var c=function(a){return a!=null};var d=Object.prototype.hasOwnProperty;Object.extend({getFromPath:function(b,a){if(typeof a=="string"){a=a.split(".")}for(var g=0,h=a.length;g<h;g++){if(d.call(b,a[g])){b=b[a[g]]}else{return null}}return b},cleanValues:function(f,a){a=a||c;for(var b in f){if(!a(f[b])){delete f[b]}}return f},erase:function(b,a){if(d.call(b,a)){delete b[a]}return b},run:function(b){var f=Array.slice(arguments,1);for(var a in b){if(b[a].apply){b[a].apply(b,f)}}return b}})})();(function(){var f=null,g={},i={};var j=function(a){if(instanceOf(a,h.Set)){return a}else{return g[a]}};var h=this.Locale={define:function(e,a,c,b){var d;if(instanceOf(e,h.Set)){d=e.name;if(d){g[d]=e}}else{d=e;if(!g[d]){g[d]=new h.Set(d)}e=g[d]}if(a){e.define(a,c,b)}if(!f){f=e}return e},use:function(a){a=j(a);if(a){f=a;this.fireEvent("change",a)}return this},getCurrent:function(){return f},get:function(a,b){return(f)?f.get(a,b):""},inherit:function(c,b,a){c=j(c);if(c){c.inherit(b,a)}return this},list:function(){return Object.keys(g)}};Object.append(h,new Events);h.Set=new Class({sets:{},inherits:{locales:[],sets:{}},initialize:function(a){this.name=a||""},define:function(a,c,b){var d=this.sets[a];if(!d){d={}}if(c){if(typeOf(c)=="object"){d=Object.merge(d,c)}else{d[c]=b}}this.sets[a]=d;return this},get:function(a,t,b){var c=Object.getFromPath(this.sets,a);if(c!=null){var l=typeOf(c);if(l=="function"){c=c.apply(null,Array.from(t))}else{if(l=="object"){c=Object.clone(c)}}return c}var u=a.indexOf("."),d=u<0?a:a.substr(0,u),s=(this.inherits.sets[d]||[]).combine(this.inherits.locales).include("en-US");if(!b){b=[]}for(var v=0,w=s.length;v<w;v++){if(b.contains(s[v])){continue}b.include(s[v]);var e=g[s[v]];if(!e){continue}c=e.get(a,t,b);if(c!=null){return c}}return""},inherit:function(b,a){b=Array.from(b);if(a&&!this.inherits.sets[a]){this.inherits.sets[a]=[]}var c=b.length;while(c--){(a?this.inherits.sets[a]:this.inherits.locales).unshift(b[c])}return this}})})();Locale.define("en-US","Date",{months:["January","February","March","April","May","June","July","August","September","October","November","December"],months_abbr:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],days_abbr:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dateOrder:["month","date","year"],shortDate:"%m/%d/%Y",shortTime:"%I:%M%p",AM:"AM",PM:"PM",firstDayOfWeek:0,ordinal:function(b){return(b>3&&b<21)?"th":["th","st","nd","rd","th"][Math.min(b%10,4)]},lessThanMinuteAgo:"less than a minute ago",minuteAgo:"about a minute ago",minutesAgo:"{delta} minutes ago",hourAgo:"about an hour ago",hoursAgo:"about {delta} hours ago",dayAgo:"1 day ago",daysAgo:"{delta} days ago",weekAgo:"1 week ago",weeksAgo:"{delta} weeks ago",monthAgo:"1 month ago",monthsAgo:"{delta} months ago",yearAgo:"1 year ago",yearsAgo:"{delta} years ago",lessThanMinuteUntil:"less than a minute from now",minuteUntil:"about a minute from now",minutesUntil:"{delta} minutes from now",hourUntil:"about an hour from now",hoursUntil:"about {delta} hours from now",dayUntil:"1 day from now",daysUntil:"{delta} days from now",weekUntil:"1 week from now",weeksUntil:"{delta} weeks from now",monthUntil:"1 month from now",monthsUntil:"{delta} months from now",yearUntil:"1 year from now",yearsUntil:"{delta} years from now"});(function(){var J=this.Date;var E=J.Methods={ms:"Milliseconds",year:"FullYear",min:"Minutes",mo:"Month",sec:"Seconds",hr:"Hours"};["Date","Day","FullYear","Hours","Milliseconds","Minutes","Month","Seconds","Time","TimezoneOffset","Week","Timezone","GMTOffset","DayOfYear","LastMonth","LastDayOfMonth","UTCDate","UTCDay","UTCFullYear","AMPM","Ordinal","UTCHours","UTCMilliseconds","UTCMinutes","UTCMonth","UTCSeconds","UTCMilliseconds"].each(function(a){J.Methods[a.toLowerCase()]=a});var u=function(a,b,c){if(b==1){return a}return a<Math.pow(10,b-1)?(c||"0")+u(a,b-1,c):a};J.implement({set:function(a,c){a=a.toLowerCase();var b=E[a]&&"set"+E[a];if(b&&this[b]){this[b](c)}return this}.overloadSetter(),get:function(a){a=a.toLowerCase();var b=E[a]&&"get"+E[a];if(b&&this[b]){return this[b]()}return null}.overloadGetter(),clone:function(){return new J(this.get("time"))},increment:function(c,a){c=c||"day";a=a!=null?a:1;switch(c){case"year":return this.increment("month",a*12);case"month":var b=this.get("date");this.set("date",1).set("mo",this.get("mo")+a);return this.set("date",b.min(this.get("lastdayofmonth")));case"week":return this.increment("day",a*7);case"day":return this.set("date",this.get("date")+a)}if(!J.units[c]){throw new Error(c+" is not a supported interval")}return this.set("time",this.get("time")+a*J.units[c]())},decrement:function(b,a){return this.increment(b,-1*(a!=null?a:1))},isLeapYear:function(){return J.isLeapYear(this.get("year"))},clearTime:function(){return this.set({hr:0,min:0,sec:0,ms:0})},diff:function(a,b){if(typeOf(a)=="string"){a=J.parse(a)}return((a-this)/J.units[b||"day"](3,3)).round()},getLastDayOfMonth:function(){return J.daysInMonth(this.get("mo"),this.get("year"))},getDayOfYear:function(){return(J.UTC(this.get("year"),this.get("mo"),this.get("date")+1)-J.UTC(this.get("year"),0,1))/J.units.day()},setDay:function(b,c){if(c==null){c=J.getMsg("firstDayOfWeek");if(c===""){c=1}}b=(7+J.parseDay(b,true)-c)%7;var a=(7+this.get("day")-c)%7;return this.increment("day",b-a)},getWeek:function(c){if(c==null){c=J.getMsg("firstDayOfWeek");if(c===""){c=1}}var a=this,d=(7+a.get("day")-c)%7,e=0,b;if(c==1){var g=a.get("month"),f=a.get("date")-d;if(g==11&&f>28){return 1}if(g==0&&f<-2){a=new J(a).decrement("day",d);d=0}b=new J(a.get("year"),0,1).get("day")||7;if(b>4){e=-7}}else{b=new J(a.get("year"),0,1).get("day")}e+=a.get("dayofyear");e+=6-d;e+=(7+b-c)%7;return(e/7)},getOrdinal:function(a){return J.getMsg("ordinal",a||this.get("date"))},getTimezone:function(){return this.toString().replace(/^.*? ([A-Z]{3}).[0-9]{4}.*$/,"$1").replace(/^.*?\(([A-Z])[a-z]+ ([A-Z])[a-z]+ ([A-Z])[a-z]+\)$/,"$1$2$3")},getGMTOffset:function(){var a=this.get("timezoneOffset");return((a>0)?"-":"+")+u((a.abs()/60).floor(),2)+u(a%60,2)},setAMPM:function(b){b=b.toUpperCase();var a=this.get("hr");if(a>11&&b=="AM"){return this.decrement("hour",12)}else{if(a<12&&b=="PM"){return this.increment("hour",12)}}return this},getAMPM:function(){return(this.get("hr")<12)?"AM":"PM"},parse:function(a){this.set("time",J.parse(a));return this},isValid:function(a){if(!a){a=this}return typeOf(a)=="date"&&!isNaN(a.valueOf())},format:function(b){if(!this.isValid()){return"invalid date"}if(!b){b="%x %X"}if(typeof b=="string"){b=D[b.toLowerCase()]||b}if(typeof b=="function"){return b(this)}var a=this;return b.replace(/%([a-z%])/gi,function(c,d){switch(d){case"a":return J.getMsg("days_abbr")[a.get("day")];case"A":return J.getMsg("days")[a.get("day")];case"b":return J.getMsg("months_abbr")[a.get("month")];case"B":return J.getMsg("months")[a.get("month")];case"c":return a.format("%a %b %d %H:%M:%S %Y");case"d":return u(a.get("date"),2);case"e":return u(a.get("date"),2," ");case"H":return u(a.get("hr"),2);case"I":return u((a.get("hr")%12)||12,2);case"j":return u(a.get("dayofyear"),3);case"k":return u(a.get("hr"),2," ");case"l":return u((a.get("hr")%12)||12,2," ");case"L":return u(a.get("ms"),3);case"m":return u((a.get("mo")+1),2);case"M":return u(a.get("min"),2);case"o":return a.get("ordinal");case"p":return J.getMsg(a.get("ampm"));case"s":return Math.round(a/1000);case"S":return u(a.get("seconds"),2);case"T":return a.format("%H:%M:%S");case"U":return u(a.get("week"),2);case"w":return a.get("day");case"x":return a.format(J.getMsg("shortDate"));case"X":return a.format(J.getMsg("shortTime"));case"y":return a.get("year").toString().substr(2);case"Y":return a.get("year");case"z":return a.get("GMTOffset");case"Z":return a.get("Timezone")}return d})},toISOString:function(){return this.format("iso8601")}}).alias({toJSON:"toISOString",compare:"diff",strftime:"format"});var z=["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],C=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];var D={db:"%Y-%m-%d %H:%M:%S",compact:"%Y%m%dT%H%M%S","short":"%d %b %H:%M","long":"%B %d, %Y %H:%M",rfc822: (…)
    [all...]
  /external/clang/test/CodeGenCXX/
const-init-cxx11.cpp 162 extern constexpr int (D::*db) = &C::b; member in namespace:MemberPtr
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
PerformanceResults.java 11 package org.eclipse.test.internal.performance.results.db;
58 * Local class helping to guess remaining time while reading results from DB
483 // if one local files is missing then force a full DB read!
484 // TODO moderate this to force the DB read only for the missing file...

Completed in 1676 milliseconds

<<11121314151617181920>>