HomeSort by relevance Sort by last modified time
    Searched defs:update (Results 301 - 325 of 1241) sorted by null

<<11121314151617181920>>

  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
VoicemailContentTable.java 173 // Directly update the db because we cannot update voicemail_uri through external
174 // update() due to projectionMap check. This also avoids unnecessary permission
176 db.update(mTableName, values, UriData.createUriData(newUri).getWhereClause(), null);
232 public int update(UriData uriData, ContentValues values, String selection, method in class:VoicemailContentTable
239 // TODO: This implementation does not allow bulk update because it only accepts
240 // URI that include message Id. I think we do want to support bulk update.
243 return getDatabaseModifier(db).update(mTableName, values, combinedClause,
250 "Cannot update URI: %s. Bulk update not supported", uriData.getUri()))
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.update.configurator_3.3.100.v20100512.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
WatchExpressionsSidebarPane.js 79 this.section.update();
138 update: function(e)
231 this.update();
238 this.update();
258 this.update();
265 this.update();
393 update: function()
395 WebInspector.ObjectPropertyTreeElement.prototype.update.call(this);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineOverviewPane.js 64 this.update();
69 this.update();
88 this.update();
91 update: function()
98 this._overviewControls[i].update();
147 this.update();
197 this._refreshTimeout = setTimeout(this.update.bind(this), 300);
326 update: function() { },
370 update: function()
  /cts/tests/tests/content/src/android/content/cts/
SearchRecentSuggestionsProviderTest.java 76 s.update(TEST_URI, null, null, null);
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Audio_Artists_AlbumsTest.java 112 // do not support update operation of the albums
116 mContentResolver.update(artistsAlbumsUri, albumValues, null, null);
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/common/db/
SelectionBuilder.java 332 * Execute an {@code UPDATE} against database.
339 public int update(SQLiteDatabase db, ContentValues values) { method in class:SelectionBuilder
341 Log.v(TAG, "update() " + this);
342 return db.update(mTable, values, getSelection(), getSelectionArgs());
  /developers/samples/android/common/src/java/com/example/android/common/db/
SelectionBuilder.java 332 * Execute an {@code UPDATE} against database.
339 public int update(SQLiteDatabase db, ContentValues values) { method in class:SelectionBuilder
341 Log.v(TAG, "update() " + this);
342 return db.update(mTable, values, getSelection(), getSelectionArgs());
  /development/samples/ApiDemos/src/com/example/android/apis/content/
FileProvider.java 102 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:FileProvider
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PurgeableBitmapView.java 34 * PurgeableBitmapView decodes an encoded bitstream to a Bitmap each time update()
81 public int update(PurgeableBitmap.RefreshHandler handler) { method in class:PurgeableBitmapView
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
GLWorld.java 68 vertex.update(mVertexBuffer, transform);
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssContentProvider.java 170 public int update(Uri uri, ContentValues values, String whereClause) { method in class:RssContentProvider
172 int updateCount = mDb.update(DATABASE_TABLE_NAME, values, whereClause);
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
DictionaryProvider.java 199 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:DictionaryProvider
  /development/samples/Support7Demos/src/com/example/android/supportv7/view/
CardViewActivity.java 54 update();
68 private void update() { method in class:CardViewActivity
142 update();
146 update(); method
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.common/db/
SelectionBuilder.java 332 * Execute an {@code UPDATE} against database.
339 public int update(SQLiteDatabase db, ContentValues values) { method in class:SelectionBuilder
341 Log.v(TAG, "update() " + this);
342 return db.update(mTable, values, getSelection(), getSelectionArgs());
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
task.rb 343 def update method in class:ANTLR3
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/crypto/
SHA1ImplTest.java 81 md.update(new byte[] { 0x61, 0x62, 0x63 });
108 md.update("abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq".getBytes("UTF-8"));
141 md.update(msgs[n]);
144 md.update(msgs[0]);
  /external/apache-http/src/org/apache/http/impl/conn/
AbstractPoolEntry.java 79 //@@@ avoid that, derived classes should decide whether update is allowed
155 // - update the tracking data
217 this.connection.update(null, tracker.getTargetHost(),
258 this.connection.update(null, next, secure, params);
296 // - update the tracking data
DefaultClientConnection.java 209 public void update(Socket sock, HttpHost target, method in class:DefaultClientConnection
230 } // update
DefaultClientConnectionOperator.java 237 conn.update(sock, target, lsf.isSecure(sock), params);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DESedeWrapEngine.java 322 sha1.update(key, 0, key.length);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/
CBCBlockCipherMac.java 123 public void update( method in class:CBCBlockCipherMac
135 public void update( method in class:CBCBlockCipherMac
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseMac.java 115 macEngine.update(input);
123 macEngine.update(input, offset, len);
  /external/chromium_org/chrome/browser/extensions/api/runtime/
chrome_runtime_api_delegate.cc 262 const Extension* update = service->GetPendingExtensionUpdate(extension_id); local
263 if (update) {
266 UpdateCheckResult(true, kUpdateFound, update->VersionString()));
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
editable_text_area_shadow.js 40 * Update the shadow element.
43 cvox.EditableTextAreaShadow.prototype.update = function(element) {

Completed in 749 milliseconds

<<11121314151617181920>>