HomeSort by relevance Sort by last modified time
    Searched defs:update (Results 701 - 725 of 1828) sorted by null

<<21222324252627282930>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
ImportPage.java 303 // -- update UI & enable finish if there's no error
431 mCheckboxTableViewer.update(event.getElement(), null);
447 public void update(ViewerCell cell) { method in class:ImportPage.ProjectCellLabelProvider
491 mCheckboxTableViewer.update(element, null);
  /build/tools/signtos/
SignTos.java 245 sig.update(buffer, 0, bytesRead);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
MotionIndicatorView.java 48 * xCovered.update(40);
49 * xCovered.update(-40);
50 * xCovered.update(12);
52 * yCovered.update(50);
53 * yCovered.update(-51);
55 * zCovered.update(150);
56 * zCovered.update(42);
390 * @return if this update changes the status of
392 public boolean update(int data) { method in class:RangeCoveredRegister
  /cts/tests/tests/content/src/android/content/cts/
ContentProviderTest.java 265 public int update(Uri uri, ContentValues values, String selection, method in class:ContentProviderTest.MockContentProvider
336 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:ContentProviderTest.OpenFileContentProvider
MockContentProvider.java 299 public int update(Uri uri, ContentValues values, String selection, method in class:MockContentProvider
307 count = db.update("TestTable1", values, selection, selectionArgs);
312 count = db.update("TestTable1", values, "_id=" + segment +
318 count = db.update("TestTable2", values, selection, selectionArgs);
323 count = db.update("TestTable2", values, "_id=" + segment +
  /cts/tests/tests/provider/src/android/provider/cts/
BlockedNumberContractTest.java 86 mContentResolver.update(
203 mContentResolver.update(
ContactsContract_FrequentsStrequentsTest.java 398 * Given a contact id, update the contact corresponding to that contactId so that it now shows
406 mResolver.update(ContentUris.withAppendedId(Contacts.CONTENT_URI, contactId), values,
423 mResolver.update(uri, new ContentValues(), null, null);
SearchRecentSuggestionsTest.java 154 // Test: update
156 * SearchRecentSuggestionsProvider.update is not implement, always
166 mTestSRSProvider.update(mTestUri, value, "display1=\"" + insertDisplay1 + "\"",
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderThrottle.java 341 public int update(Uri uri, ContentValues values, String where, String[] whereArgs) { method in class:LoaderThrottle.SimpleProvider
348 // If URI is main table, update uses incoming where clause and args.
349 count = db.update(MainTable.TABLE_NAME, values, where, whereArgs);
353 // If URI is for a particular row ID, update is based on incoming
357 count = db.update(MainTable.TABLE_NAME, values, finalWhere, whereArgs);
492 cl.setUpdateThrottle(2000); // update at most every 2 seconds.
  /development/samples/NotePad/src/com/example/android/notepad/
NotePadProvider.java 650 * {@link android.content.ContentResolver#update(Uri,ContentValues,String,String[])}
658 * @param uri The URI pattern to match and update.
669 public int update(Uri uri, ContentValues values, String where, String[] whereArgs) { method in class:NotePadProvider
676 // Does the update based on the incoming URI pattern
679 // If the incoming URI matches the general notes pattern, does the update based on
683 // Does the update and returns the number of rows updated.
684 count = db.update(
692 // If the incoming URI matches a single note ID, does the update based on the incoming
716 // Does the update and returns the number of rows updated.
717 count = db.update(
    [all...]
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
LoaderThrottleSupport.java 342 public int update(Uri uri, ContentValues values, String where, String[] whereArgs) { method in class:LoaderThrottleSupport.SimpleProvider
349 // If URI is main table, update uses incoming where clause and args.
350 count = db.update(MainTable.TABLE_NAME, values, where, whereArgs);
354 // If URI is for a particular row ID, update is based on incoming
358 count = db.update(MainTable.TABLE_NAME, values, finalWhere, whereArgs);
492 cl.setUpdateThrottle(2000); // update at most every 2 seconds.
  /development/samples/Vault/src/com/example/android/vault/
EncryptedDocument.java 286 mMac.update(inbuf, 0, n);
287 outbuf = mCipher.update(inbuf, 0, n);
329 outbuf = mCipher.update(inbuf, 0, n);
331 mMac.update(outbuf);
338 mMac.update(outbuf);
347 // Rewind and update header
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
XmlDocumentProvider.java 328 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:XmlDocumentProvider
396 // Update path
  /external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
DynamicXYPlotActivity.java 34 // redraws a plot whenever an update is received:
43 public void update(Observable o, Object arg) { method in class:DynamicXYPlotActivity.MyPlotUpdater
128 // encapsulates management of the observers watching this datasource for update events:
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherTest.java 256 * @tests javax.crypto.Cipher#update(byte[], int, int)
282 byte[] output = c.update(input, 0, bytesRead);
331 byte[] output = c.update(input, 0, bytesRead);
374 * Class under test for int update(byte[], int, int, byte[], int)
382 c.update(b, 0, 10, b1, 5);
MacTest.java 291 * Test for <code>update</code> and <code>doFinal</code> methods
305 macs[i].update((byte) 0);
310 macs[i].update(buf); method
315 macs[i].update(buf, 0, 3); method
320 macs[i].update(bBuf); method
421 * Assertion: update Mac and returns result
444 macs[i].update(upd); method
454 * Test for <code>update(byte[] input, int outset, int len)</code> method
472 macs[i].update(b, -10, b.length); method
477 macs[i].update(b, 0, -10) method
482 macs[i].update(b, 0, b.length + 1); method
487 macs[i].update(b, b.length - 1, 2); method
517 macs[i].update(upd1, 2, 4); method
520 macs[i].update(upd2); method
530 macs[i].update(upd1, 2, 1); method
628 macs[i].update(byteNull); method
632 macs[i].update(byteBuff); method
639 macs[i].update(null, 0, 0); method
673 macs[i].update(byteBuf); method
677 macs[i].update(bbuf, 2, 3); method
749 macs[i].update(bbuf); method
752 macs[i].update(bbuf, 0, bbuf.length); method
    [all...]
  /external/autotest/frontend/afe/
resources.py 45 rep.update({'max_number_of_machines':
58 def update(self, input_dict): member in class:AtomicGroupClass
92 rep.update({'name': self.instance.name,
101 rep.update({'atomic_group_class':
113 def update(self, input_dict): member in class:Label
114 # TODO update atomic group
159 rep.update({'jobs': 'TODO',
194 rep.update({'users':
207 def update(self, input_dict): member in class:Acl
270 rep.update({'hostname': self.instance.hostname
312 def update(self, input_dict): member in class:Host
406 def update(self, input_dict): member in class:Test
733 def update(self, input_dict): member in class:Job
790 def update(self, input_dict): member in class:QueueEntry
850 def update(self, input_dict): member in class:HealthTask
    [all...]
  /external/autotest/frontend/shared/
resource_lib.py 144 self._query_params.update(parameters)
153 full_query_params.update(query_params)
285 self.update(self._decoded_input())
304 def update(self, input_dict): member in class:Entry
434 rep.update({'members': members})
485 rep.update({'total_results': len(queryset),
501 entry.update(input_dict)
543 kwargs.update(entry._uri_args())
601 def update(self, input_dict): member in class:Relationship
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
CCMBlockCipher.java 381 cMac.update(b0, 0, b0.length);
393 cMac.update((byte)(textLength >> 8));
394 cMac.update((byte)textLength);
400 cMac.update((byte)0xff);
401 cMac.update((byte)0xfe);
402 cMac.update((byte)(textLength >> 24));
403 cMac.update((byte)(textLength >> 16));
404 cMac.update((byte)(textLength >> 8));
405 cMac.update((byte)textLength);
412 cMac.update(initialAssociatedText, 0, initialAssociatedText.length)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/
Primes.java 599 d.update(input, 0, input.length);
  /external/chromium-trace/catapult/third_party/Paste/paste/
httpheaders.py 47 ``update(collection, *args, **kwargs)``
58 This method is similar to update, only that it may affect other
62 is simply ``update()`` but limited to keyword arguments.
165 def update(self, environ, value): member in class:EnvironVariable
243 ``update()``
257 similar to ``update``, but with two differences; first,
305 update the collection /w header value (may have side effects)
307 This method is similar to ``update`` only that usage may result
313 self.update(collection, **kwargs)
456 def update(self, collection, *args, **kwargs) member in class:HTTPHeader
536 def update(self, collection, *args, **kwargs): member in class:_MultiEntryHeader
    [all...]
  /external/chromium-trace/catapult/third_party/typ/typ/
runner.py 521 self.update(test_start_msg + ' queued', elide=False)
523 self.update(test_start_msg, elide=(not self.args.verbose))
549 self.update(stats.format() + result.name + suffix, elide=False)
557 self.update(stats.format() + result.name + suffix,
567 def update(self, msg, elide): member in class:Runner
568 self.printer.update(msg, elide)
585 self.update('%d test%s run%s, %d failure%s.' %
  /external/deqp/scripts/khr_util/
registry.py 39 self.__dict__.update(kwargs)
88 self.__dict__.update(kwargs)
89 self.update(items)
97 def update(self, items): member in class:Index
  /external/eigen/Eigen/src/Cholesky/
LDLT.h 366 // Apply the update
373 // Update the diagonal terms
383 // Update the terms of L
393 static bool update(MatrixType& mat, const TranspositionType& transpositions, Workspace& tmp, const WType& w, const typename MatrixType::RealScalar& sigma=1) function in struct:Eigen::internal::ldlt_inplace
412 static EIGEN_STRONG_INLINE bool update(MatrixType& mat, TranspositionType& transpositions, Workspace& tmp, WType& w, const typename MatrixType::RealScalar& sigma=1) function in struct:Eigen::internal::ldlt_inplace
415 return ldlt_inplace<Lower>::update(matt, transpositions, tmp, w.conjugate(), sigma);
460 /** Update the LDLT decomposition: given A = L D L^T, efficiently compute the decomposition of A + sigma w w^T.
486 internal::ldlt_inplace<UpLo>::update(m_matrix, m_transpositions, m_temporary, w, sigma);
  /external/jetty/src/java/org/eclipse/jetty/security/authentication/
DigestAuthenticator.java 361 md.update(username.getBytes(StringUtil.__ISO_8859_1));
362 md.update((byte) ':');
363 md.update(realm.getBytes(StringUtil.__ISO_8859_1));
364 md.update((byte) ':');
365 md.update(password.getBytes(StringUtil.__ISO_8859_1));
370 md.update(method.getBytes(StringUtil.__ISO_8859_1));
371 md.update((byte) ':');
372 md.update(uri.getBytes(StringUtil.__ISO_8859_1));
382 md.update(TypeUtil.toString(ha1, 16).getBytes(StringUtil.__ISO_8859_1));
383 md.update((byte) ':')
    [all...]

Completed in 618 milliseconds

<<21222324252627282930>>