Searched defs:values (Results 76 - 86 of 86) sorted by relevance

1234

/frameworks/base/core/java/android/app/
H A DActivityManagerNative.java2131 public void updateConfiguration(Configuration values) throws RemoteException argument
2136 values.writeToParcel(data, 0);
H A DIActivityManager.java188 public void updateConfiguration(Configuration values) throws RemoteException; argument
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java1131 * statement and fill in those values with {@link SQLiteProgram#bindString}
1135 * @param sql The raw SQL statement, may contain ? for unknown values to be
1163 * replaced by the values from selectionArgs, in order that they
1164 * appear in the selection. The values will be bound as Strings.
1201 * replaced by the values from selectionArgs, in order that they
1202 * appear in the selection. The values will be bound as Strings.
1244 * replaced by the values from selectionArgs, in order that they
1245 * appear in the selection. The values will be bound as Strings.
1279 * replaced by the values from selectionArgs, in order that they
1280 * appear in the selection. The values wil
1408 insert(String table, String nullColumnHack, ContentValues values) argument
1430 insertOrThrow(String table, String nullColumnHack, ContentValues values) argument
1621 update(String table, ContentValues values, String whereClause, String[] whereArgs) argument
1636 updateWithOnConflict(String table, ContentValues values, String whereClause, String[] whereArgs, int conflictAlgorithm) argument
[all...]
/frameworks/base/core/java/android/hardware/
H A DSensorManager.java157 /** Offset to the untransformed values in the array returned by
187 /** values returned by the accelerometer in various locations in the universe.
188 * all values are in SI units (m/s^2) */
211 /** Various luminance values during the day (lux) */
218 /** Various luminance values during the night (lux) */
232 /** The values returned by this sensor cannot be trusted, calibration
372 final float[] values = new float[3];
389 final int sensor = sensors_data_poll(values, status, timestamp);
416 values, timestamp, accuracy);
505 void onSensorChangedLocked(Sensor sensor, float[] values, lon argument
1316 getOrientation(float[] R, float values[]) argument
1423 mapSensorDataToWindow(int sensor, float[] values, int orientation) argument
1569 sensors_data_poll(float[] values, int[] status, long[] timestamp) argument
[all...]
/frameworks/base/core/java/android/provider/
H A DContacts.java222 ContentValues values = new ContentValues();
227 //values.put(_SYNC_ACCOUNT, account.mName);
228 //values.put(_SYNC_ACCOUNT_TYPE, account.mType);
229 values.put(KEY, key);
230 values.put(VALUE, value);
231 cr.update(Settings.CONTENT_URI, values, null, null);
451 ContentValues values = new ContentValues();
454 values.put(LAST_TIME_CONTACTED, System.currentTimeMillis());
455 resolver.update(uri, values, null, null);
540 ContentValues values
559 createPersonInMyContactsGroup(ContentResolver resolver, ContentValues values) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DPowerManagerService.java118 // values for setPowerState
387 * can be specified. Current values include {@link android.os.BatteryManager#BATTERY_PLUGGED_AC}
871 for (PokeLock p: mPokeLocks.values()) {
1009 for (PokeLock p: mPokeLocks.values()) {
2111 private int getAutoBrightnessValue(int sensorValue, int[] values) { argument
2119 return values[i];
2370 // force recompute of backlight values
2406 // force recompute of backlight values
2745 float distance = event.values[0];
2793 int value = (int)event.values[
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java566 * Whether we are currently recording reported values.
938 Iterator<KernelWakelockStats> itr = m.values().iterator();
969 true /* track reported values */);
2187 public void addSpeedStepTimes(long[] values) { argument
2188 for (int i = 0; i < mSpeedBins.length && i < values.length; i++) {
2189 mSpeedBins[i].addCountAtomic(values[i]);
2828 true /* track reported values */);
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES20.cpp4549 /* void glVertexAttrib1fv ( GLuint indx, const GLfloat *values ) */
4555 GLfloat *values = (GLfloat *) 0; local
4558 _env->ThrowNew(IAEClass, "values == null");
4568 values = values_base + offset;
4572 (GLfloat *)values
4582 /* void glVertexAttrib1fv ( GLuint indx, const GLfloat *values ) */
4588 GLfloat *values = (GLfloat *) 0; local
4590 values = (GLfloat *)getPointer(_env, values_buf, &_array, &_remaining);
4593 (GLfloat *)values
4596 releasePointer(_env, _array, values, JNI_FALS
4617 GLfloat *values = (GLfloat *) 0; local
4650 GLfloat *values = (GLfloat *) 0; local
4680 GLfloat *values = (GLfloat *) 0; local
4713 GLfloat *values = (GLfloat *) 0; local
4744 GLfloat *values = (GLfloat *) 0; local
4777 GLfloat *values = (GLfloat *) 0; local
[all...]
/frameworks/base/libs/utils/
H A DResourceTypes.cpp1174 // check for sensical values pulled out of the stream so far...
1248 ResStringPool values; member in struct:android::ResTable::Header
1768 if (header->values.getError() != NO_ERROR) {
1771 status_t err = header->values.setTo(chunk, csize);
1802 mError = header->values.getError();
1804 LOGW("No string values found in resource table!");
1998 ? String8(bestPackage->header->values.stringAt(
2208 // with its parent's values. Otherwise start out empty.
3558 return &mHeaders[index]->values;
4051 const char* str8 = pkg->header->values
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLES20.java1730 // C function void glVertexAttrib1fv ( GLuint indx, const GLfloat *values )
1734 float[] values,
1738 // C function void glVertexAttrib1fv ( GLuint indx, const GLfloat *values )
1742 java.nio.FloatBuffer values
1753 // C function void glVertexAttrib2fv ( GLuint indx, const GLfloat *values )
1757 float[] values,
1761 // C function void glVertexAttrib2fv ( GLuint indx, const GLfloat *values )
1765 java.nio.FloatBuffer values
1777 // C function void glVertexAttrib3fv ( GLuint indx, const GLfloat *values )
1781 float[] values,
1732 glVertexAttrib1fv( int indx, float[] values, int offset ) argument
1755 glVertexAttrib2fv( int indx, float[] values, int offset ) argument
1779 glVertexAttrib3fv( int indx, float[] values, int offset ) argument
1804 glVertexAttrib4fv( int indx, float[] values, int offset ) argument
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java332 // These values are set in system/rootdir/init.rc on startup.
658 * sticky Intent, values are an ArrayList of all broadcasted intents with
724 * string containing the provider name and values are a
733 * string containing the provider's implementation class and values are a
5265 for (SparseArray<ProcessRecord> apps : mProcessNames.getMap().values()) {
5308 Iterator<SparseArray<Long>> badApps = mProcessCrashTimes.getMap().values().iterator();
5337 for (ServiceRecord service : mServices.values()) {
6685 Iterator<UriPermission> it = perms.values().iterator();
9143 for (SparseArray<ProcessRecord> apps : mProcessNames.getMap().values()) {
9725 for (SparseArray<ProcessRecord> procs : mProcessNames.getMap().values()) {
13488 updateConfiguration(Configuration values) argument
13511 updateConfigurationLocked(Configuration values, HistoryRecord starting) argument
[all...]

Completed in 830 milliseconds

1234