Searched defs:update (Results 1 - 25 of 144) sorted by relevance

123456

/frameworks/av/include/camera/
H A DCameraMetadata.h126 status_t update(uint32_t tag,
128 status_t update(uint32_t tag,
130 status_t update(uint32_t tag,
132 status_t update(uint32_t tag,
134 status_t update(uint32_t tag,
136 status_t update(uint32_t tag,
138 status_t update(uint32_t tag,
142 status_t update(uint32_t tag, Vector<T> data) { function in class:android::CameraMetadata
143 return update(tag, data.array(), data.size());
219 * Base update entr
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DColorMatrixColorFilter.java37 update();
52 update();
87 update();
118 update();
121 private void update() { method in class:ColorMatrixColorFilter
H A DLightingColorFilter.java51 update();
77 update();
103 update();
106 private void update() { method in class:LightingColorFilter
H A DPorterDuffColorFilter.java43 update();
73 update();
101 update();
104 private void update() { method in class:PorterDuffColorFilter
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
H A DObservableWithNotBindableFieldObject.java20 public void update(String data) { method in class:ObservableWithNotBindableFieldObject
/frameworks/base/keystore/java/android/security/keystore/
H A DKeyStoreCryptoOperationStreamer.java24 * {@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/base/packages/SystemUI/src/com/android/systemui/volume/
H A DSpTexts.java28 * Capture initial sp values for registered textviews, and update properly when configuration
61 public void update() { method in class:SpTexts
/frameworks/native/services/surfaceflinger/Effects/
H A DDaltonizer.cpp46 update();
51 void Daltonizer::update() { function in class:android::Daltonizer
/frameworks/support/v4/api21/android/support/v4/app/
H A DActivityOptionsCompat21.java57 public void update(ActivityOptionsCompat21 otherOptions) { method in class:ActivityOptionsCompat21
58 mActivityOptions.update(otherOptions.mActivityOptions);
/frameworks/base/core/tests/coretests/EnabledTestApp/src/com/android/frameworks/coretests/enabled_app/
H A DDisabledProvider.java51 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:DisabledProvider
H A DEnabledProvider.java51 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:EnabledProvider
/frameworks/base/core/tests/coretests/apks/install_complete_package_info/src/com/android/frameworks/coretests/
H A DTestProvider.java54 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:TestProvider
H A DTestReceiver.java54 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:TestReceiver
/frameworks/base/core/tests/coretests/apks/version/src/com/android/frameworks/coretests/version_test/
H A DNullProvider.java31 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:NullProvider
/frameworks/base/core/tests/coretests/apks/version_nosys/src/com/android/frameworks/coretests/version_test/
H A DNullProvider.java31 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:NullProvider
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DViewInvertHelper.java73 public void update(boolean invert) { method in class:ViewInvertHelper
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DBordeauxClassifier.java78 public boolean update(final HashMap<Integer, Float> sample, int target) { method in class:BordeauxClassifier
/frameworks/av/media/libstagefright/codecs/aacdec/
H A DDrcPresModeWrap.cpp152 CDrcPresModeWrapper::update() function in class:CDrcPresModeWrapper
318 // update the decoder
/frameworks/av/media/libstagefright/codecs/amrwb/src/
H A Dwb_syn_filt.cpp55 int16 update, (i) : 0=no update, 1=update of memory.
132 int16 update, /* (i) : 0=no update, 1=update of memory. */
213 if (update)
125 wb_syn_filt( int16 a[], int16 m, int16 x[], int16 y[], int16 lg, int16 mem[], int16 update, int16 y_buf[] ) argument
/frameworks/base/core/java/android/database/sqlite/
H A DSqliteWrapper.java76 public static int update(Context context, ContentResolver resolver, Uri uri, method in class:SqliteWrapper
79 return resolver.update(uri, values, where, selectionArgs);
81 Log.e(TAG, "Catch a SQLiteException when update: ", e);
/frameworks/base/core/java/android/provider/
H A DSearchIndexablesProvider.java187 public final int update( method in class:SearchIndexablesProvider
H A DSyncStateContract.java121 public static void update(ContentProviderClient provider, Uri uri, byte[] data) method in class:SyncStateContract.Helpers
125 provider.update(uri, values, null, null);
/frameworks/base/core/java/com/android/internal/content/
H A DSelectionBuilder.java113 * Execute update using the current internal state as {@code WHERE} clause.
115 public int update(SQLiteDatabase db, String table, ContentValues values) { method in class:SelectionBuilder
116 return db.update(table, values, getSelection(), getSelectionArgs());
/frameworks/base/core/tests/coretests/src/android/app/
H A DSuggestionProvider.java97 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { method in class:SuggestionProvider
98 throw new UnsupportedOperationException("update not supported");
/frameworks/base/services/core/java/com/android/server/am/
H A DDumpHeapProvider.java72 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:DumpHeapProvider

Completed in 803 milliseconds

123456