HomeSort by relevance Sort by last modified time
    Searched refs:mValues (Results 76 - 100 of 230) sorted by null

1 2 34 5 6 7 8 910

  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Compass.java 36 private float[] mValues;
42 mValues = event.values;
110 if (mValues != null) {
111 canvas.rotate(-mValues[0]);
SensorTest.java 35 private float[] mValues;
193 if (mValues != null) {
194 canvas.rotate(-mValues[0]);
  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
InsertingCells.java 40 private ListItemObject mValues[];
57 mValues = new ListItemObject[] {
83 ListItemObject obj = mValues[mItemNum % mValues.length];
  /frameworks/av/include/media/
CharacterEncodingDetector.h 54 StringArray mValues;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
ActivityPage.java 52 private final NewProjectWizardState mValues;
73 mValues = values;
118 TemplateManager manager = mValues.template.getManager();
125 File current = mValues.activityValues.getTemplateLocation();
149 mValues.activityValues.setTemplateLocation(mTemplates.get(0));
187 TemplateHandler handler = mValues.activityValues.getTemplateHandler();
192 File file = new File(mValues.activityValues.getTemplateLocation(),
252 mCreateToggle.setSelection(mValues.createActivity);
266 if (mValues.createActivity) {
271 TemplateHandler templateHandler = mValues.activityValues.getTemplateHandler()
    [all...]
NewTemplatePage.java 103 private final NewTemplateWizardState mValues;
131 mValues = values;
168 TemplateMetadata template = mValues.getTemplateHandler().getTemplate();
203 mProjectButton = new ProjectCombo(helper, container, mValues.project);
226 Map<String, String> defaults = mValues.defaults;
260 if (mValues.hidden != null && mValues.hidden.contains(id)) {
299 mValues.parameters.put(id, value);
338 mValues.parameters.put(id, value);
361 Combo combo = createOptionCombo(parameter, container, mValues.parameters
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectCreator.java 215 private final NewProjectWizardState mValues;
224 mValues = values;
292 if (mValues.importProjects != null && !mValues.importProjects.isEmpty()) {
319 if (mValues.importProjects != null && !mValues.importProjects.isEmpty()) {
343 assert mValues.importProjects != null && !mValues.importProjects.isEmpty();
347 for (ImportedProject p : mValues.importProjects) {
375 dictionary.put(STRING_APP_NAME, mValues.applicationName)
    [all...]
ImportPage.java 77 private final NewProjectWizardState mValues;
93 mValues = values;
232 mValues.importProjects = selected;
274 } else if (mValues.importProjects == null || mValues.importProjects.isEmpty()) {
278 for (ImportedProject project : mValues.importProjects) {
289 if (mValues.importProjects.size() > 1) {
338 mValues.workingSets = getWorkingSets();
362 mValues.importProjects = mProjectPaths;
365 mValues.importProjects = Collections.emptyList()
    [all...]
  /external/chromium_org/ui/android/java/src/org/chromium/ui/interpolators/
BakedBezierInterpolator.java 130 private final float[] mValues;
138 mValues = values;
139 mStepSize = 1.f / (mValues.length - 1);
153 (int)(input * (mValues.length - 1)),
154 mValues.length - 2);
160 return mValues[position] + weight * (mValues[position + 1] - mValues[position]);
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/
SensorStats.java 58 private final Map<String, Object> mValues = new HashMap<>();
71 mValues.put(key, value);
93 return mValues.keySet();
101 return mValues.get(key);
113 final Map<String, Object> flattenedMap = new HashMap<>(mValues);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileCreationPage.java 398 private NewXmlFileWizard.Values mValues;
418 mValues = values;
482 mProjectButton = new ProjectCombo(helper, composite, mValues.project);
489 if (project != mValues.project) {
506 mValues.name = mFileNameTextField.getText();
548 int typeIndex = getTypeComboIndex(mValues.type);
552 assert mValues.type == types[typeIndex];
563 return mValues.project;
568 if (mValues.project != null) {
569 changeProject(mValues.project)
    [all...]
NewXmlFileWizard.java 77 private Values mValues;
85 mValues = new Values();
86 mMainPage = createMainPage(mValues);
91 mConfigPage = new ChooseConfigurationPage(mValues);
170 IFile file = mValues.getDestinationFile();
171 TypeInfo type = mValues.type;
187 String attrs = type.getDefaultAttrs(mValues.project, root);
188 String child = type.getChild(mValues.project, root);
  /frameworks/av/media/libmedia/
CharacterEncodingDetector.cpp 49 mValues.push_back(value);
62 *value = mValues.getEntry(index);
80 ALOGV("%s: %s", mNames.getEntry(i), mValues.getEntry(i));
96 const char *value = mValues.getEntry(i);
137 const char *value = mValues.getEntry(i);
170 uint8_t* src = (uint8_t *)mValues.getEntry(i);
175 const char *s = mValues.getEntry(i);
195 mValues.setEntry(i, "???");
221 const char* source = mValues.getEntry(i);
235 mValues.setEntry(i, "???")
    [all...]
  /packages/apps/Calendar/tests/src/com/android/calendar/event/
EditEventHelperTest.java 126 private ContentValues mValues;
    [all...]
  /frameworks/base/core/java/android/preference/
MultiSelectListPreference.java 44 private Set<String> mValues = new HashSet<String>();
138 mValues.clear();
139 mValues.addAll(values);
148 return mValues;
190 mNewValues.addAll(mValues);
196 final Set<String> values = mValues;
234 setValues(restoreValue ? getPersistedStringSet(mValues) : (Set<String>) defaultValue);
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_TestDataBuilder.java 61 protected ContentValues mValues = new ContentValues();
105 mValues.put(key, value);
111 mValues.put(key, value);
117 mValues.put(key, value);
130 mUri = mProvider.insert(getContentUri(), mValues);
170 Set<Map.Entry<String, Object>> entries = mValues.valueSet();
191 fail("No data rows for " + getContentUri() + "[" + mValues.toString() + "]");
319 mValues.put(Data.MIMETYPE, mimeType);
329 mValues.put(Data.RAW_CONTACT_ID, mRawContact.getId());
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
RawContact.java 53 private final ContentValues mValues;
142 mValues = values;
152 mValues = parcel.readParcelable(ContentValues.class.getClassLoader());
164 parcel.writeParcelable(mValues, i);
193 return mValues;
341 sb.append("RawContact: ").append(mValues);
351 return Objects.hashCode(mValues, mDataItems);
360 return Objects.equal(mValues, other.mValues) &&
  /cts/common/util/src/com/android/compatibility/common/util/
ReportLog.java 38 private double[] mValues;
64 mValues = values;
78 return mValues;
  /sdk/emulator/opengl/shared/emugl/common/
lazy_instance_unittest.cpp 101 void* mValues[kMaxThreads];
110 state->mValues[state->mCount++] = state->mStaticCounter->ptr();
138 EXPECT_EQ(expectedValue, state.mValues[n]) << "For thread " << n;
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
DeqpTestRunner.java 103 private Map<String, String> mValues;
118 if (mValues == null) mValues = new HashMap<String, String>();
122 mValues.put(mCurrentName, mCurrentValue);
128 mDeqpTests.handleStatus(mValues);
129 mValues = null;
132 mValues.put(mCurrentName, mCurrentValue);
157 mValues.put(mCurrentName, mCurrentValue);
163 if (mValues != null) {
164 mDeqpTests.handleStatus(mValues);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
CreateAssetSetWizard.java 73 private CreateAssetSetWizardState mValues = new CreateAssetSetWizardState();
82 mValues.project = mInitialProject;
84 mChooseAssetPage = new ChooseAssetTypePage(mValues);
85 mConfigureAssetPage = new ConfigureAssetSetPage(mValues);
94 ConfigureAssetSetPage.generateImages(mValues, false, null);
96 IProject project = mValues.project;
239 mValues.project = project;
247 mValues.project = mInitialProject;
  /development/apps/Development/src/com/android/development/
MediaScannerActivity.java 53 ContentValues mValues[] = new ContentValues[10];
97 mValues[i] = new ContentValues();
175 mValues[i].clear();
177 final ContentValues map = mValues[i];
192 mResolver.bulkInsert(mAudioUri, mValues);
  /packages/apps/Settings/src/com/android/settings/notification/
SettingPref.java 40 private final int[] mValues;
51 mValues = values;
74 for (int value : mValues) {
  /frameworks/base/core/tests/coretests/src/android/database/
DatabasePerformanceTests.java 910 ContentValues[] mValues = new ContentValues[SIZE];
934 mValues[i] = b;
942 mDatabase.update("t1", mValues[i], where[i], null);
954 ContentValues[] mValues = new ContentValues[SIZE];
977 mValues[i] = b;
984 mDatabase.update("t1", mValues[i], where[i], null);
995 ContentValues[] mValues = new ContentValues[SIZE];
1009 mValues[i] = b;
1016 mDatabase.insert("t1", null, mValues[i]);
1027 ContentValues[] mValues = new ContentValues[SIZE]
    [all...]
NewDatabasePerformanceTests.java 794 ContentValues[] mValues = new ContentValues[SIZE];
818 mValues[i] = b;
825 mDatabase.update("t1", mValues[i], where[i], null);
837 ContentValues[] mValues = new ContentValues[SIZE];
860 mValues[i] = b;
866 mDatabase.update("t1", mValues[i], where[i], null);
877 ContentValues[] mValues = new ContentValues[SIZE];
891 mValues[i] = b;
897 mDatabase.insert("t1", null, mValues[i]);
908 ContentValues[] mValues = new ContentValues[SIZE]
    [all...]

Completed in 906 milliseconds

1 2 34 5 6 7 8 910