HomeSort by relevance Sort by last modified time
    Searched defs:mValues (Results 51 - 63 of 63) sorted by null

1 23

  /cts/tests/tests/graphics/src/android/graphics/cts/
MatrixTest.java 30 private float[] mValues;
36 mValues = new float[9];
89 mValues[0] = 1000;
90 mMatrix.getValues(mValues);
93 mValues = new float[9];
94 mValues[0] = 2000;
95 matrix.getValues(mValues);
96 assertEquals(1f, mValues[0]);
239 mValues = new float[9];
241 mMatrix.getValues(mValues);
    [all...]
  /frameworks/base/media/java/android/media/
MediaScanner.java 383 private final ContentValues[] mValues;
388 mValues = new ContentValues[count];
392 if (mIndex == mValues.length) {
395 mValues[mIndex++] = values;
401 while (mIndex < mValues.length) {
402 mValues[mIndex++] = null;
405 mMediaProvider.bulkInsert(mUri, mValues);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectCreator.java 192 private final NewProjectWizardState mValues;
197 mValues = values;
288 if (mValues.mode == Mode.TEST) {
293 final IProject project = workspace.getRoot().getProject(mValues.projectName);
297 mPackageName = mValues.packageName;
300 parameters.put(PARAM_PROJECT, mValues.projectName);
304 parameters.put(PARAM_IS_NEW_PROJECT, mValues.mode == Mode.ANY && !mValues.useExisting);
305 parameters.put(PARAM_SAMPLE_LOCATION, mValues.chosenSample);
306 parameters.put(PARAM_SRC_FOLDER, mValues.sourceFolder)
    [all...]
  /frameworks/base/core/java/android/animation/
ValueAnimator.java 249 PropertyValuesHolder[] mValues;
375 if (mValues == null || mValues.length == 0) {
378 PropertyValuesHolder valuesHolder = mValues[0];
403 if (mValues == null || mValues.length == 0) {
406 PropertyValuesHolder valuesHolder = mValues[0];
435 if (mValues == null || mValues.length == 0) {
439 PropertyValuesHolder valuesHolder = mValues[0]
    [all...]
  /frameworks/base/tools/aapt/
Bundle.h 41 mWantUTF16(false), mValues(false),
87 bool getValues(void) const { return mValues; }
88 void setValues(bool val) { mValues = val; }
232 bool mValues;
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Matrix_Delegate.java 52 private float mValues[] = new float[MATRIX_SIZE];
85 System.arraycopy(matrix.mValues, 0, mValues, 0, MATRIX_SIZE);
93 System.arraycopy(values, 0, mValues, 0, MATRIX_SIZE);
100 reset(mValues);
109 if (mValues[k] != ((i==j) ? 1 : 0)) {
165 return getAffineTransform(mValues);
169 return (mValues[6] != 0 || mValues[7] != 0 || mValues[8] != 1)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileCreationPage.java 401 private NewXmlFileWizard.Values mValues;
421 mValues = values;
484 mProjectButton = new ProjectCombo(helper, composite, mValues.project);
491 if (project != mValues.project) {
507 mValues.name = mFileNameTextField.getText();
549 int typeIndex = getTypeComboIndex(mValues.type);
553 assert mValues.type == types[typeIndex];
564 return mValues.project;
569 if (mValues.project != null) {
570 changeProject(mValues.project)
    [all...]
  /frameworks/base/core/java/android/provider/
Settings.java 661 // Must synchronize on 'this' to access mValues and mValuesVersion.
662 private final HashMap<String, String> mValues = new HashMap<String, String>();
688 mValues.clear();
692 if (mValues.containsKey(name)) {
693 return mValues.get(name); // Could be null, that's OK -- negative caching
715 mValues.put(name, value);
738 mValues.put(name, value);
    [all...]
ContactsContract.java     [all...]
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
PowerUsageDetail.java 112 private double[] mValues;
193 mValues = args.getDoubleArray(EXTRA_DETAIL_VALUES);
301 if (mTypes != null && mValues != null) {
304 if (mValues[i] <= 0) continue;
310 value = Utils.formatBytes(getActivity(), mValues[i]);
313 value = String.format("%d%%", (int) Math.floor(mValues[i]));
319 value = Utils.formatElapsedTime(getActivity(), mValues[i]);
  /frameworks/base/core/java/android/hardware/
SensorManager.java     [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsProvider2.java     [all...]
ContactAggregator.java 162 private ContentValues mValues = new ContentValues();
454 dataSets[i], contactIds[i], mCandidates, mMatcher, mValues);
    [all...]

Completed in 4161 milliseconds

1 23