Searched refs:values (Results 176 - 200 of 373) sorted by relevance

1234567891011>>

/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DLocalProvider.java130 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { argument
139 count = db.update("data", values, "_id=" + rowId, null);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGLToolbox.java157 public static void setVboFloats(int vboId, float[] values) { argument
158 int len = values.length * 4;
/frameworks/base/tools/preload/
H A DPrintHtmlDiff.java43 for (Proc proc : root.processes.values()) {
55 for (LoadedClass loadedClass : root.loadedClasses.values()) {
/frameworks/opt/photoviewer/sample/src/com/example/photoviewersample/
H A DSampleProvider.java49 public Uri insert(Uri uri, ContentValues values) { argument
145 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
/frameworks/base/core/java/android/content/
H A DContentValues.java29 * This class is used to store a set of values that the {@link ContentResolver}
35 /** Holds the actual values */
39 * Creates an empty set of values using the default initial size
48 * Creates an empty set of values using the given initial size
50 * @param size the initial size of the set of values
57 * Creates a set of values copied from the given set
59 * @param from the values to copy
66 * Creates a set of values copied from the given HashMap. This is used
69 * @param values the values t
72 ContentValues(HashMap<String, Object> values) argument
[all...]
H A DContentProviderNative.java154 ContentValues values = ContentValues.CREATOR.createFromParcel(data);
156 Uri out = insert(callingPkg, url, values);
167 ContentValues[] values = data.createTypedArray(ContentValues.CREATOR);
169 int count = bulkInsert(callingPkg, url, values);
211 ContentValues values = ContentValues.CREATOR.createFromParcel(data);
215 int count = update(callingPkg, url, values, selection, selectionArgs);
455 public Uri insert(String callingPkg, Uri url, ContentValues values) throws RemoteException argument
464 values.writeToParcel(data, 0);
477 public int bulkInsert(String callingPkg, Uri url, ContentValues[] values) throws RemoteException { argument
485 data.writeTypedArray(values,
545 update(String callingPkg, Uri url, ContentValues values, String selection, String[] selectionArgs) argument
[all...]
H A DSearchRecentSuggestionsProvider.java77 // client-provided configuration values
90 // NOTE: These version values are shifted left 8 bits (x 256) in order to create space for
162 * constructor. In your application or activities, you must provide the same values when
181 // saved values
185 // derived values
272 public Uri insert(Uri uri, ContentValues values) { argument
285 rowID = db.insert(sSuggestions, NULL_COLUMN, values);
393 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
/frameworks/base/core/tests/coretests/src/android/app/
H A DSuggestionProvider.java97 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { argument
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilterContext.java99 for (Frame frame : mStoredFrames.values()) {
/frameworks/base/media/mca/filterfw/jni/
H A Djni_shader_program.cpp269 jfloatArray values,
274 jfloat* float_ptr = env->GetFloatArrayElements(values, NULL);
275 const int length = env->GetArrayLength(values);
287 env->ReleaseFloatArrayElements(values, float_ptr, JNI_ABORT);
265 Java_android_filterfw_core_ShaderProgram_setShaderAttributeValues( JNIEnv* env, jobject thiz, jstring attr_name, jfloatArray values, jint component_count) argument
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DPathOpsActivity.java57 Path.Op[] ops = Path.Op.values();
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcFailCause.java69 for (DcFailCause fc : values()) {
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DIccServiceTableTest.java52 return TestIccService.values();
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
H A DTimeZoneFilterTypeAdapter.java180 results.values = null;
253 results.values = filtered;
402 if (results.values == null || results.count == 0) {
416 mLiveResults = (ArrayList<FilterTypeResult>) results.values;
/frameworks/support/v4/java/android/support/v4/util/
H A DArrayMap.java195 * Return a {@link java.util.Collection} for iterating over and interacting with all values
202 public Collection<V> values() { method in class:ArrayMap
/frameworks/base/core/java/android/os/
H A DAsyncTask.java122 * of progress. These values are published on the UI thread, in the
378 * The specified values are the values passed to {@link #publishProgress}.
380 * @param values The values indicating progress.
386 protected void onProgressUpdate(Progress... values) { argument
616 * @param values The progress values to update the UI with.
621 protected final void publishProgress(Progress... values) { argument
624 new AsyncTaskResult<Progress>(this, values))
[all...]
/frameworks/base/core/java/android/printservice/
H A DPrinterDiscoverySession.java146 return new ArrayList<PrinterInfo>(mPrinters.values());
281 for (PrinterInfo printer : mPrinters.values()) {
302 for (PrinterInfo sentPrinter : mLastSentPrinters.values()) {
/frameworks/base/core/java/android/widget/
H A DSimpleAdapter.java76 * TextViews. The first N views in this list are given the values of the first N columns
289 * values to views.
291 * You should use this class to bind values to views that are not
335 results.values = list;
369 results.values = newValues;
379 mData = (List<Map<String, ?>>) results.values;
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRecentLoader.java183 for (RecentTask task : mTasks.values()) {
200 for (RecentTask task : mTasks.values()) {
307 for (RecentTask task : mTasks.values()) {
/frameworks/base/services/java/com/android/server/power/
H A DWirelessChargerDetector.java340 processSampleLocked(event.values[0], event.values[1], event.values[2]);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
H A DCpuVideoTrackDecoder.java221 private static SparseIntArray intArrayToPriorityMap(int[] values) { argument
223 for (int priority = 0; priority < values.length; ++priority) {
224 result.append(values[priority], priority);
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DAsmAnalyzerTest.java116 assertArrayEquals(new ClassReader[] { cr }, found.values().toArray());
236 for (ClassReader cr2 : in_deps.values()) {
251 for (ClassReader cr2 : in_deps.values()) {
/frameworks/ex/common/java/com/android/common/contacts/
H A DDataUsageStatUpdater.java52 * Copied from API in ICS (not available before it). You can use values here if you are sure
246 final ContentValues values = new ContentValues();
247 values.put(ContactsContract.Contacts.LAST_TIME_CONTACTED, currentTimeMillis);
248 if (mResolver.update(ContactsContract.Contacts.CONTENT_URI, values,
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
H A DUT_program_store.java155 for (DepthFunc df : DepthFunc.values()) {
156 for (BlendSrcFunc bsf : BlendSrcFunc.values()) {
157 for (BlendDstFunc bdf : BlendDstFunc.values()) {
/frameworks/support/v4/java/android/support/v4/content/
H A DModernAsyncTask.java217 * The specified values are the values passed to {@link #publishProgress}.
219 * @param values The values indicating progress.
225 protected void onProgressUpdate(Progress... values) { argument
445 * @param values The progress values to update the UI with.
450 protected final void publishProgress(Progress... values) { argument
453 new AsyncTaskResult<Progress>(this, values)).sendToTarget();

Completed in 686 milliseconds

1234567891011>>