Searched refs:values (Results 126 - 150 of 211) sorted by relevance

123456789

/frameworks/base/core/java/android/database/
H A DBulkCursorNative.java127 HashMap<Long, Map<String, Object>> values = data.readHashMap(null);
128 boolean result = updateRows(values);
346 public boolean updateRows(Map values) throws RemoteException argument
353 data.writeMap(values);
/frameworks/base/core/java/android/util/
H A DXml.java157 for (Encoding encoding : Encoding.values()) {
175 * attribute values at each of the tags as the parser moves
/frameworks/base/services/java/com/android/server/am/
H A DIntentBindRecord.java65 Iterator<AppBindRecord> it = apps.values().iterator();
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
H A DMenu.java72 presentationType = PresentationType.values()[in.readInt()];
H A DStkCmdMessage.java24 * should call getXXX() to get commands's specific values.
100 mBrowserSettings.mode = LaunchBrowserMode.values()[in.readInt()];
/frameworks/base/test-runner/src/android/test/mock/
H A DMockCursor.java186 public boolean commitUpdates(Map<? extends Long, ? extends Map<String, Object>> values) { argument
H A DMockIContentProvider.java92 public int update(Uri url, ContentValues values, String selection, String[] selectionArgs) argument
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPorterDuffXfermode_Delegate.java71 for (PorterDuff.Mode m : PorterDuff.Mode.values()) {
/frameworks/base/tools/preload/
H A DPrintCsv.java46 for (LoadedClass loadedClass : root.loadedClasses.values()) {
/frameworks/base/vpn/java/android/net/vpn/
H A DVpnManager.java96 return VpnType.values();
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DSMSDispatcher.java540 * @param ss Current service state. Valid values are:
594 ContentValues values = new ContentValues();
595 values.put("date", new Long(sms.getTimestampMillis()));
596 values.put("pdu", HexDump.toHexString(sms.getPdu()));
597 values.put("address", sms.getOriginatingAddress());
598 values.put("reference_number", concatRef.refNumber);
599 values.put("count", concatRef.msgCount);
600 values.put("sequence", concatRef.seqNumber);
602 values.put("destination_port", portAddrs.destPort);
604 mResolver.insert(mRawUri, values);
[all...]
/frameworks/base/core/java/android/provider/
H A DSettings.java572 ContentValues values = new ContentValues();
573 values.put(NAME, name);
574 values.put(VALUE, value);
575 resolver.insert(uri, values);
791 * as an integer. Note that internally setting values are always
814 * as an integer. Note that internally setting values are always
844 * with that name. Note that internally setting values are always
859 * as a {@code long}. Note that internally setting values are always
884 * as a {@code long}. Note that internally setting values are always
913 * with that name. Note that internally setting values ar
[all...]
/frameworks/base/core/java/android/content/
H A DSyncQueue.java134 for (SyncOperation op : mOperationsMap.values()) {
269 for (SyncOperation operation : mOperationsMap.values()) {
H A DContentResolver.java232 * explicit values in the {@code selection} parameter, so that queries
233 * that differ only by those values will be recognized as the same
246 * replaced by the values from selectionArgs, in the order that they
247 * appear in the selection. The values will be bound as Strings.
592 * @param values The initial values for the newly inserted row. The key is the column name for
596 public final Uri insert(Uri url, ContentValues values) argument
604 Uri createdRow = provider.insert(url, values);
651 * @param values The initial values fo
655 bulkInsert(Uri url, ContentValues[] values) argument
716 update(Uri uri, ContentValues values, String where, String[] selectionArgs) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_hardware_SensorManager.cpp120 jfloatArray values, jintArray status, jlongArray timestamp)
139 env->SetFloatArrayRegion(values, 0, 3, event.vector.v);
119 sensors_data_poll(JNIEnv *env, jclass clazz, jint nativeQueue, jfloatArray values, jintArray status, jlongArray timestamp) argument
H A Dandroid_opengl_GLES20.cpp4561 /* void glVertexAttrib1fv ( GLuint indx, const GLfloat *values ) */
4567 GLfloat *values = (GLfloat *) 0; local
4570 _env->ThrowNew(IAEClass, "values == null");
4580 values = values_base + offset;
4584 (GLfloat *)values
4594 /* void glVertexAttrib1fv ( GLuint indx, const GLfloat *values ) */
4600 GLfloat *values = (GLfloat *) 0; local
4602 values = (GLfloat *)getPointer(_env, values_buf, &_array, &_remaining);
4605 (GLfloat *)values
4608 releasePointer(_env, _array, values, JNI_FALS
4629 GLfloat *values = (GLfloat *) 0; local
4662 GLfloat *values = (GLfloat *) 0; local
4692 GLfloat *values = (GLfloat *) 0; local
4725 GLfloat *values = (GLfloat *) 0; local
4756 GLfloat *values = (GLfloat *) 0; local
4789 GLfloat *values = (GLfloat *) 0; local
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLES20.java1803 // C function void glVertexAttrib1fv ( GLuint indx, const GLfloat *values )
1807 float[] values,
1811 // C function void glVertexAttrib1fv ( GLuint indx, const GLfloat *values )
1815 java.nio.FloatBuffer values
1826 // C function void glVertexAttrib2fv ( GLuint indx, const GLfloat *values )
1830 float[] values,
1834 // C function void glVertexAttrib2fv ( GLuint indx, const GLfloat *values )
1838 java.nio.FloatBuffer values
1850 // C function void glVertexAttrib3fv ( GLuint indx, const GLfloat *values )
1854 float[] values,
1805 glVertexAttrib1fv( int indx, float[] values, int offset ) argument
1828 glVertexAttrib2fv( int indx, float[] values, int offset ) argument
1852 glVertexAttrib3fv( int indx, float[] values, int offset ) argument
1877 glVertexAttrib4fv( int indx, float[] values, int offset ) argument
[all...]
H A DObject3D.java105 Iterator<Group> iter = mGroups.values().iterator();
239 Iterator<Group> iter = mGroups.values().iterator();
/frameworks/base/opengl/tools/glgen/specs/gles11/
H A DGLES20.spec135 void glVertexAttrib1fv ( GLuint indx, const GLfloat *values )
137 void glVertexAttrib2fv ( GLuint indx, const GLfloat *values )
139 void glVertexAttrib3fv ( GLuint indx, const GLfloat *values )
141 void glVertexAttrib4fv ( GLuint indx, const GLfloat *values )
/frameworks/base/services/java/com/android/server/
H A DInputManager.java348 public String[] values; field in class:InputManager.InputDeviceCalibration
490 calibration.values = properties.values().toArray(new String[properties.size()]);
/frameworks/base/core/java/android/app/backup/
H A DBackupHelperDispatcher.java138 for (BackupHelper helper: mHelpers.values()) {
/frameworks/base/core/java/android/widget/
H A DFilter.java166 * implementation returns an empty String for null values or the default
177 * <p>Holds the results of a filtering operation. The results are the values
178 * computed by the filtering operation and the number of these values.</p>
186 * <p>Contains all the values computed by the filtering operation.</p>
188 public Object values; field in class:Filter.FilterResults
191 * <p>Contains the number of values computed by the filtering
205 * @param count the number of values computed by the filter
/frameworks/base/core/jni/android/graphics/
H A DMatrix.cpp321 static void getValues(JNIEnv* env, jobject clazz, SkMatrix* matrix, jfloatArray values) { argument
322 AutoJavaFloatArray autoValues(env, values, 9);
339 static void setValues(JNIEnv* env, jobject clazz, SkMatrix* matrix, jfloatArray values) { argument
340 AutoJavaFloatArray autoValues(env, values, 9);
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DDatabaseHelper.java140 // Load inital settings values
206 db.execSQL("INSERT INTO system ('name', 'value') values ('network_preference', '" +
291 db.execSQL("INSERT INTO system ('name', 'value') values ('"
349 db.execSQL("INSERT OR IGNORE INTO secure(name,value) values('" +
364 db.execSQL("INSERT INTO system(name,value) values('zoom','2');");
405 db.execSQL("INSERT INTO system ('name', 'value') values ('"
436 db.execSQL("INSERT OR IGNORE INTO secure(name,value) values('" +
452 db.execSQL("INSERT OR IGNORE INTO system(name,value) values('" +
557 db.execSQL("INSERT INTO secure(name,value) values('" +
559 db.execSQL("INSERT INTO secure(name,value) values('"
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java168 * Edge flags for this row of keys. Possible values that can be assigned are
420 int[] values = new int[count];
425 values[count++] = Integer.parseInt(st.nextToken());
430 return values;
811 // Round it to avoid values like 47.9999 from getting truncated

Completed in 611 milliseconds

123456789