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

12 3 4 5 6 7 8 91011>>

  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForStructuredPostal.java 62 public boolean update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, method in class:DataRowHandlerForStructuredPostal
71 super.update(db, txContext, values, c, callerIsSyncAdapter, callerIsMetadataSyncAdapter);
81 private void fixStructuredPostalComponents(ContentValues augmented, ContentValues update) {
82 final String unstruct = update.getAsString(StructuredPostal.FORMATTED_ADDRESS);
85 final boolean touchedStruct = !areAllEmpty(update, STRUCTURED_FIELDS);
91 postal.toValues(update);
93 && (touchedStruct || areAnySpecified(update, STRUCTURED_FIELDS))) {
96 update.put(StructuredPostal.FORMATTED_ADDRESS, joined);
  /art/test/438-volatile/src/
Main.java 31 public static long $opt$update(long a) {
36 public static double $opt$update(double a) {
42 if (value != $opt$update(value)) {
43 throw new RuntimeException("Volatile update failed for long:" + value);
48 if (value != $opt$update(value)) {
49 throw new RuntimeException("Volatile update failed for double:" + value);
  /cts/tests/openglperf2/jni/reference/
ReferenceRenderer.cpp 79 bool ReferenceRenderer::update(int frame) { function in class:ReferenceRenderer
84 mCurrentScene->update(localFrame);
  /cts/tools/dasm/src/java_cup/
version.java 10 * update, and are written as v<major>.<minor><update> (e.g. v0.9a).
13 * change big enough to cause incompatibilities. Finally update
37 /** The update letter. */
38 public static final char update = 'd'; field in class:version
  /device/huawei/angler/camera/QCamera2/HAL3/
QCamera3CropRegionMapper.cpp 73 * FUNCTION : update
75 * DESCRIPTION: update sensor active array size and sensor output size
85 void QCamera3CropRegionMapper::update(uint32_t active_array_w, function in class:qcamera::QCamera3CropRegionMapper
  /device/lge/bullhead/camera/QCamera2/HAL3/
QCamera3CropRegionMapper.cpp 73 * FUNCTION : update
75 * DESCRIPTION: update sensor active array size and sensor output size
85 void QCamera3CropRegionMapper::update(uint32_t active_array_w, function in class:qcamera::QCamera3CropRegionMapper
  /external/autotest/tko/
reason_qualifier.py 9 def update(self, new_wording): member in class:reason_counter
55 reason_htable[reason_reduced].update(reason_reduced)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
Digest.java 23 * update the message digest with a single byte.
27 public void update(byte in); method in interface:Digest
30 * update the message digest with a block of bytes.
36 public void update(byte[] in, int inOff, int len); method in interface:Digest
Mac.java 39 public void update(byte in) method in interface:Mac
49 public void update(byte[] in, int inOff, int len) method in interface:Mac
Signer.java 17 * update the internal digest with the byte b
19 public void update(byte b); method in interface:Signer
22 * update the internal digest with the byte array in
24 public void update(byte[] in, int off, int len); method in interface:Signer
  /external/llvm/utils/
lldbDataFormatters.py 26 self.update() # initialize this provider
50 def update(self): member in class:SmallVectorSynthProvider
67 self.update() # initialize this provider
85 def update(self): member in class:ArrayRefSynthProvider
  /external/mesa3d/src/gallium/drivers/svga/
svga_state.h 43 enum pipe_error (*update)( struct svga_context *svga, unsigned dirty ); member in struct:svga_tracked_state
  /external/opencv3/samples/python2/
coherence.py 53 def update(): function
67 print 'Press SPACE to update the image\n'
70 update()
74 update()
fitline.py 48 def update(_=None): function
77 cv2.createTrackbar('noise', 'fit line', 3, 50, update)
78 cv2.createTrackbar('point n', 'fit line', 100, 500, update)
79 cv2.createTrackbar('outlier %', 'fit line', 30, 100, update)
81 update()
  /external/replicaisland/src/com/replica/replicaisland/
BaseObject.java 22 * an ObjectManager, and anything that requires an update per frame should be derived from
33 * Update this object.
34 * @param timeDelta The duration since the last update (in seconds).
37 public void update(float timeDelta, BaseObject parent) { method in class:BaseObject
  /frameworks/base/keystore/java/android/security/keystore/
KeyStoreCryptoOperationStreamer.java 24 * {@code update} and {@code finish} operations.
27 * update and finish operations. Firstly, KeyStore's update operation can consume only a limited
28 * amount of data in one go because the operations are marshalled via Binder. Secondly, the update
30 * remainder for next time. The helper exposes {@link #update(byte[], int, int) update} and
37 byte[] update(byte[] input, int inputOffset, int inputLength) throws KeyStoreException; method in interface:KeyStoreCryptoOperationStreamer
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
ObservableWithNotBindableFieldObject.java 20 public void update(String data) { method in class:ObservableWithNotBindableFieldObject
  /frameworks/support/v4/api21/android/support/v4/app/
ActivityOptionsCompat21.java 57 public void update(ActivityOptionsCompat21 otherOptions) { method in class:ActivityOptionsCompat21
58 mActivityOptions.update(otherOptions.mActivityOptions);
  /hardware/bsp/intel/peripheral/libupm/examples/java/
Adxl345Sample.java 47 sensor.update();
H3LIS331DLSample.java 49 sensor.update();
Itg3200Sample.java 46 gyro.update();
  /hardware/bsp/intel/peripheral/libupm/src/adafruitss/
adafruitss.cxx 62 adafruitss::update();
114 int adafruitss::update(void) function in class:adafruitss
  /hardware/bsp/intel/peripheral/libupm/src/micsv89/
micsv89.cxx 43 void MICSV89::update() { function in class:MICSV89
  /hardware/bsp/intel/peripheral/libupm/src/mpu9150/
mpu9150.cxx 87 void MPU9150::update() function in class:MPU9150
89 MPU60X0::update();
92 m_mag->update();
  /hardware/bsp/intel/peripheral/libupm/src/nunchuck/
nunchuck.cxx 107 void NUNCHUCK::update() function in class:NUNCHUCK

Completed in 525 milliseconds

12 3 4 5 6 7 8 91011>>