Searched defs:table (Results 1 - 10 of 10) sorted by relevance

/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
H A DRomkanFullKatakana.java163 * @param table HashMap for Romaji-to-Kana conversion
166 public static boolean convert(ComposingText text, HashMap<String, String> table) { argument
187 String match = table.get(key.toString().toLowerCase());
/packages/apps/Gallery3D/src/com/cooliris/picasa/
H A DTableContentProvider.java42 public void addMapping(String authority, String path, String mimeSubtype, EntrySchema table) { argument
43 // Add the table URI mapping.
47 mappings.add(new Mapping(table, mimeSubtype, false));
51 mappings.add(new Mapping(table, mimeSubtype, true));
94 String tableName = mapping.table.getTableName();
112 String tableName = mapping.table.getTableName();
132 String tableName = mapping.table.getTableName();
166 String tableName = mapping.table.getTableName();
188 String tableName = mapping.table.getTableName();
211 public EntrySchema table; field in class:TableContentProvider.Mapping
215 Mapping(EntrySchema table, String mimeSubtype, boolean hasId) argument
[all...]
/packages/providers/DrmProvider/src/com/android/providers/drm/
H A DDrmProvider.java109 * Creates the table that'll hold the download information.
130 * Deletes the table that holds the download information.
274 public String table; field in class:DrmProvider.GetTableAndWhereOutParameter
286 out.table = "audio";
290 out.table = "audio";
295 out.table = "images";
299 out.table = "images";
357 count = db.delete(sGetTableAndWhereParam.table,
383 count = db.update(sGetTableAndWhereParam.table, initialValues,
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/
H A DTelephonyProvider.java313 private void insertAddingDefaults(SQLiteDatabase db, String table, ContentValues row) { argument
H A DMmsProvider.java273 String table = TABLE_PDU;
299 table = TABLE_PART;
303 table = TABLE_ADDR;
307 table = TABLE_RATE;
311 table = TABLE_DRM;
323 if (table.equals(TABLE_PDU)) {
357 if ((rowId = db.insert(table, null, finalValues)) <= 0) {
364 } else if (table.equals(TABLE_ADDR)) {
368 if ((rowId = db.insert(table, null, finalValues)) <= 0) {
374 } else if (table
616 deleteDataRows(SQLiteDatabase db, String table, String selection, String[] selectionArgs) argument
[all...]
/packages/apps/Launcher2/src/com/android/launcher2/
H A DLauncherProvider.java95 return "vnd.android.cursor.dir/" + args.table;
97 return "vnd.android.cursor.item/" + args.table;
107 qb.setTables(args.table);
121 final long rowId = db.insert(args.table, null, initialValues);
139 if (db.insert(args.table, null, values[i]) < 0) return 0;
155 int count = db.delete(args.table, args.where, args.args);
166 int count = db.update(args.table, values, args.where, args.args);
239 // Populate favorites table with initial favorites
359 // Convert existing widgets only if table upgrade was successful
873 public final String table; field in class:LauncherProvider.SqlArguments
[all...]
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DOpenWnnJAJP.java1975 * @param table Table of toggle characters
1977 private void processSoftKeyboardToggleChar(String[] table) { argument
1978 if (table == null) {
1990 String c = searchToggleCharacter(prevChar, table, false);
2004 String str = table[0];
2007 char top = table[0].charAt(0);
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarProvider2.java106 Attendees.EVENT_ID, // Assume these are the same for each table
128 * The cached copy of the CalendarMetaData database table.
290 * table. This should be at least a day because if the timezone is
355 * Columns from the EventsRawTimes table
433 * the timezone dependent fields in the Instances table if the timezone
475 * then the Instances table will be regenerated.
501 Log.v(TAG, "Cannot update Events table from EventsRawTimes table");
573 Log.v(TAG, "Could not update Events table with values " + values);
618 // Regenerate the Instances table fo
2710 deleteFromTable(String table, Uri uri, String selection, String[] selectionArgs) argument
2739 updateInTable(String table, ContentValues values, Uri uri, String selection, String[] selectionArgs) argument
[all...]
/packages/providers/MediaProvider/src/com/android/providers/media/
H A DMediaProvider.java448 // create image thumbnail table
587 // Cleans up album_art table entry when an album is deleted
660 // Create bucket_id and bucket_display_name columns for the video table.
673 // Create bookmark column for the video table.
692 // Create is_podcast and bookmark columns for the audio table.
806 // create video thumbnail table
1043 * Iterate through the rows of a table in a database, ensuring that the bucket_id and
1074 * Iterate through the rows of a table in a database, ensuring that the
1215 private boolean queryThumbnail(SQLiteQueryBuilder qb, Uri uri, String table, argument
1217 qb.setTables(table);
2146 public String table; field in class:MediaProvider.GetTableAndWhereOutParameter
2923 getKeyIdForName(SQLiteDatabase db, String table, String keyField, String nameField, String rawName, String cacheName, String path, int albumHash, String artist, HashMap<String, Long> cache, Uri srcuri) argument
[all...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactsDatabaseHelper.java704 // Contacts table
756 // Package name mapping table
762 // Mimetype mapping table
768 // Mimetype table requires an index on mime type
773 // Public generic data table
815 // Private phone numbers table used for lookup
837 // Private name/nickname table used for lookup
865 // Groups table
923 // The table for recent calls is here so we can do table join
2541 updateIndexStats(SQLiteDatabase db, String table, String index, String stats) argument
[all...]

Completed in 129 milliseconds