/packages/apps/TV/tests/common/src/com/android/tv/testing/ |
ChannelUtils.java | 87 // If a channel exists, update it. If not, insert a new one. 124 resolver.update(uri, values, null, null);
|
/packages/apps/TV/usbtuner/src/com/android/usbtuner/ |
UsbTunerPreferenceProvider.java | 207 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:UsbTunerPreferenceProvider
|
/packages/apps/UnifiedEmail/src/com/android/mail/ |
NotificationActionIntentService.java | 151 contentResolver.update(uri, values, null, null);
|
/packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/ |
TestProvider.java | 54 * delete() and update() do not allow non-null selection or selectionArgs arguments; the presence 181 public int update(Uri uri, ContentValues newValues, String selection, String[] selectionArgs) { method in class:TestProvider
|
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
SQLiteContentProvider.java | 69 * The equivalent of the {@link #update} method, but invoked within a transaction. 146 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:SQLiteContentProvider
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
DbModifierWithNotification.java | 158 public int update(String table, ContentValues values, String whereClause, String[] whereArgs) { method in class:DbModifierWithNotification 177 int count = mDb.update(table, values, whereClause, whereArgs); 206 count = mDb.update(table, values, whereClause, whereArgs); 239 * Returns the source package that gets affected (in an insert/update operation) by the supplied
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
ContactsProvider2TransactionTest.java | 86 * Make sure we start/finish transactions on the right databases for update. 99 // Update all raw contacts. 101 assertTrue(mResolver.update(RawContacts.CONTENT_URI, values, null, null) > 0); 109 // Update all profile raw contacts. 111 assertTrue(mResolver.update(Profile.CONTENT_RAW_CONTACTS_URI, values, null, null) > 0);
|
/packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/ |
UserDictionaryProvider.java | 284 public int update(Uri uri, ContentValues values, String where, String[] whereArgs) { method in class:UserDictionaryProvider 289 count = db.update(USERDICT_TABLE_NAME, values, where, whereArgs); 294 count = db.update(USERDICT_TABLE_NAME, values, Words._ID + "=" + wordId
|
/packages/services/Mms/src/com/android/mms/service/ |
DownloadRequest.java | 128 // Update the retrieve status of the NotificationInd 131 SqliteWrapper.update( 155 // Update some of the properties of the message 164 if (SqliteWrapper.update( 171 LogUtil.e(requestId, "persistIfRequired: can not update message"); 187 LogUtil.e(requestId, "persistIfRequired: can not update message", e);
|
/packages/services/Telephony/src/com/android/phone/vvm/omtp/sync/ |
VoicemailsQueryHelper.java | 154 * Sends an update command to the voicemail content provider for a list of voicemails. 156 * "update" means that the voicemail source is indicating that the server has up-to-date 159 * @param voicemails The list of voicemails to update 177 mContentResolver.update(uri, contentValues, null, null); 187 mContentResolver.update(uri, contentValues, null, null);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
_weakrefset.py | 50 self.update(data) 116 def update(self, other): member in class:WeakSet 123 self.update(other)
|
collections.py | 70 link_prev[1] = link_next # update link_prev[NEXT] 71 link_next[0] = link_prev # update link_next[PREV] 126 update = MutableMapping.update variable in class:OrderedDict 128 __update = update # let subclasses override update without breaking __init__ 399 >>> for elem in 'shazam': # update counts from an iterable 408 >>> c.update(d) # add in the second counter 444 self.update(iterable, **kwds) 495 def update(self, iterable=None, **kwds) member in class:Counter [all...] |
sets.py | 148 result._data.update(self._data) 342 # The main loop for update() and the subclass __init__() methods. 345 # Use the fast update() method when a dictionary is available. 347 data.update(iterable._data) 429 """Update a set with the union of itself and another.""" 431 self._data.update(other._data) 435 """Update a set with the union of itself and another.""" 439 """Update a set with the intersection of itself and another.""" 445 """Update a set with the intersection of itself and another.""" 452 """Update a set with the symmetric difference of itself and another."" 489 def update(self, iterable): member in class:Set [all...] |
trace.py | 243 self.update(self.__class__(counts, calledfuncs, callers)) 248 def update(self, other): member in class:CoverageResults 412 linenos.update(find_lines(c, strs))
|
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
TreeWidget.py | 131 self.update() 137 self.update() 162 def update(self): member in class:TreeNode 164 self.parent.update() 168 self.canvas.update() 473 node.update()
|
/prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/Finder/ |
Finder_items.py | 145 def update(self, _object, _attributes={}, **_arguments): member in class:Finder_items_Events 146 """update: Update the display of the specified object(s) to match their on-disk representation 147 Required argument: the item to update 148 Keyword argument necessity: only update if necessary (i.e. a finder window is open). default is false
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
_weakrefset.py | 50 self.update(data) 116 def update(self, other): member in class:WeakSet 123 self.update(other)
|
collections.py | 70 link_prev[1] = link_next # update link_prev[NEXT] 71 link_next[0] = link_prev # update link_next[PREV] 126 update = MutableMapping.update variable in class:OrderedDict 128 __update = update # let subclasses override update without breaking __init__ 399 >>> for elem in 'shazam': # update counts from an iterable 408 >>> c.update(d) # add in the second counter 444 self.update(iterable, **kwds) 495 def update(self, iterable=None, **kwds) member in class:Counter [all...] |
sets.py | 148 result._data.update(self._data) 342 # The main loop for update() and the subclass __init__() methods. 345 # Use the fast update() method when a dictionary is available. 347 data.update(iterable._data) 429 """Update a set with the union of itself and another.""" 431 self._data.update(other._data) 435 """Update a set with the union of itself and another.""" 439 """Update a set with the intersection of itself and another.""" 445 """Update a set with the intersection of itself and another.""" 452 """Update a set with the symmetric difference of itself and another."" 489 def update(self, iterable): member in class:Set [all...] |
trace.py | 243 self.update(self.__class__(counts, calledfuncs, callers)) 248 def update(self, other): member in class:CoverageResults 412 linenos.update(find_lines(c, strs))
|
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/ |
TreeWidget.py | 131 self.update() 137 self.update() 162 def update(self): member in class:TreeNode 164 self.parent.update() 168 self.canvas.update() 473 node.update()
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
_weakrefset.py | 50 self.update(data) 116 def update(self, other): member in class:WeakSet 123 self.update(other)
|
collections.py | 70 link_prev[1] = link_next # update link_prev[NEXT] 71 link_next[0] = link_prev # update link_next[PREV] 126 update = MutableMapping.update variable in class:OrderedDict 128 __update = update # let subclasses override update without breaking __init__ 399 >>> for elem in 'shazam': # update counts from an iterable 408 >>> c.update(d) # add in the second counter 444 self.update(iterable, **kwds) 495 def update(self, iterable=None, **kwds) member in class:Counter [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
TreeWidget.py | 131 self.update() 137 self.update() 162 def update(self): member in class:TreeNode 164 self.parent.update() 168 self.canvas.update() 473 node.update()
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/ |
Finder_items.py | 145 def update(self, _object, _attributes={}, **_arguments): member in class:Finder_items_Events 146 """update: Update the display of the specified object(s) to match their on-disk representation 147 Required argument: the item to update 148 Keyword argument necessity: only update if necessary (i.e. a finder window is open). default is false
|