HomeSort by relevance Sort by last modified time
    Searched refs:newValues (Results 1 - 25 of 254) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/universal-tween-engine/java/applets/src/aurelienribon/tweenengine/applets/
SpriteAccessor.java 35 public void setValues(Sprite target, int tweenType, float[] newValues) {
37 case POSITION_XY: target.setPosition(newValues[0], newValues[1]); break;
38 case SCALE_XY: target.setScale(newValues[0], newValues[1]); break;
39 case VISIBILITY: target.setVisible(newValues[0] > 0); break;
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
TweenAccessor.java 34 * public void setValues(Particle target, int tweenType, float[] newValues) {
36 * case X: target.setX(newValues[0]); break;
37 * case Y: target.setY(newValues[1]); break;
39 * target.setX(newValues[0]);
40 * target.setY(newValues[1]);
79 * @param newValues The new values determined by the Tween Engine.
81 public void setValues(T target, int tweenType, float[] newValues);
  /frameworks/support/compat/java/android/support/v4/database/
DatabaseUtilsCompat.java 59 public static String[] appendSelectionArgs(String[] originalValues, String[] newValues) {
61 return newValues;
63 String[] result = new String[originalValues.length + newValues.length ];
65 System.arraycopy(newValues, 0, result, originalValues.length, newValues.length);
  /packages/apps/TvSettings/QuickSettings/src/com/android/tv/quicksettings/
PresetSettingsListener.java 39 final int[] newValues;
42 newValues = res.getIntArray(R.array.standard_setting_values);
45 newValues = res.getIntArray(R.array.cinema_setting_values);
48 newValues = res.getIntArray(R.array.vivid_setting_values);
51 newValues = res.getIntArray(R.array.game_setting_values);
62 prefs.putInt(keys[i], newValues[i]);
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/primitives/
MutableFloat.java 31 public void setValues(MutableFloat target, int tweenType, float[] newValues) {
32 target.value = newValues[0];
MutableInteger.java 31 public void setValues(MutableInteger target, int tweenType, float[] newValues) {
32 target.value = (int) newValues[0];
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
StringToIntTable.java 113 int newValues[] = new int[m_mapSize];
115 System.arraycopy(m_values, 0, newValues, 0, m_firstFree + 1);
117 m_values = newValues;
  /external/apache-xml/src/main/java/org/apache/xml/utils/
StringToIntTable.java 106 int newValues[] = new int[m_mapSize];
108 System.arraycopy(m_values, 0, newValues, 0, m_firstFree + 1);
110 m_values = newValues;
  /packages/services/Telecomm/src/com/android/server/telecom/settings/
BlockNumberTaskFragment.java 54 ContentValues newValues = new ContentValues();
55 newValues.put(BlockedNumberContract.BlockedNumbers.COLUMN_ORIGINAL_NUMBER,
58 newValues);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactMetadataProviderTest.java 159 ContentValues newValues = new ContentValues();
160 newValues.put(MetadataSync.ACCOUNT_NAME, TEST_ACCOUNT_NAME1);
161 newValues.put(MetadataSync.ACCOUNT_TYPE, TEST_ACCOUNT_TYPE1);
162 newValues.put(MetadataSync.DATA_SET, TEST_DATA_SET1);
163 newValues.put(MetadataSync.RAW_CONTACT_BACKUP_ID, TEST_BACKUP_ID1);
164 newValues.put(MetadataSync.DATA, newData);
165 newValues.put(MetadataSync.DELETED, 0);
167 mResolver.insert(MetadataSync.CONTENT_URI, newValues);
309 ContentValues newValues = new ContentValues();
310 newValues.put(MetadataSync.ACCOUNT_NAME, TEST_ACCOUNT_NAME1)
    [all...]
  /external/proguard/src/proguard/evaluation/value/
InstructionOffsetValue.java 189 int[] newValues = new int[newLength];
195 System.arraycopy(thisValues, 0, newValues, 0, thisValues.length);
206 newValues[newIndex++] = thisValues[index];
212 System.arraycopy(otherValues, 0, newValues, newIndex, otherValues.length);
214 return new InstructionOffsetValue(newValues);
  /external/eigen/Eigen/src/SparseCore/
CompressedStorage.h 182 internal::scoped_array<Scalar> newValues(m_allocatedSize);
186 internal::smart_copy(m_values, m_values +id, newValues.ptr());
192 internal::smart_copy(m_values +id, m_values +m_size, newValues.ptr() +id+1);
195 std::swap(m_values,newValues.ptr());
234 internal::scoped_array<Scalar> newValues(size);
238 internal::smart_copy(m_values, m_values+copySize, newValues.ptr());
241 std::swap(m_values,newValues.ptr());
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
DataUtil.java 76 ContentValues newValues = new ContentValues(values);
77 newValues.put(ContactsContract.Data.RAW_CONTACT_ID, rawContactId);
79 Uri uri = resolver.insert(URI, newValues);
  /external/icu/icu4c/source/i18n/
sortkey.cpp 60 CollationKey::CollationKey(const uint8_t* newValues, int32_t count)
64 if (count < 0 || (newValues == NULL && count != 0) ||
71 uprv_memcpy(getBytes(), newValues, count);
  /frameworks/base/core/java/android/util/
IntArray.java 154 final int[] newValues = ArrayUtils.newUnpaddedIntArray(newCapacity);
155 System.arraycopy(mValues, 0, newValues, 0, currentSize);
156 mValues = newValues;
LongArray.java 136 final long[] newValues = ArrayUtils.newUnpaddedLongArray(newCapacity);
137 System.arraycopy(mValues, 0, newValues, 0, currentSize);
138 mValues = newValues;
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
MergedBinding.java 100 final List<String> newValues = new ArrayList<String>();
102 newValues.add(expr.toCode().generate());
113 final String[] expressions = concat(oldValues, newValues, String.class);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
Parallax.java 459 int[] newValues = new int[size * 2];
461 newValues[i] = mValues[i];
463 mValues = newValues;
469 float[] newValues = new float[size * 2];
471 newValues[i] = mFloatValues[i];
473 mFloatValues = newValues;
  /external/icu/icu4c/source/tools/toolutil/
ppucd.h 126 * Clears newValues and sets UProperty codes for property values mentioned
131 const UniProps *getProps(UnicodeSet &newValues, UErrorCode &errorCode);
149 UBool parseProperty(UniProps &props, const char *field, UnicodeSet &newValues,
  /frameworks/base/core/java/android/widget/
SimpleAdapter.java 379 ArrayList<Map<String, ?>> newValues = new ArrayList<Map<String, ?>>(count);
397 newValues.add(h);
405 results.values = newValues;
406 results.count = newValues.size();
ArrayAdapter.java 577 final ArrayList<T> newValues = new ArrayList<>();
585 newValues.add(value);
590 newValues.add(value);
597 results.values = newValues;
598 results.count = newValues.size();
  /frameworks/base/core/java/com/android/internal/app/
SuggestedLocaleAdapter.java 257 final ArrayList<LocaleStore.LocaleInfo> newValues = new ArrayList<>();
267 newValues.add(value);
271 results.values = newValues;
272 results.count = newValues.size();
  /external/icu/android_icu4j/src/main/java/android/icu/util/
CompactByteArray.java 87 * @param newValues the values of the compact array.
94 byte newValues[])
101 if (index >= newValues.length+BLOCKCOUNT)
105 values = newValues;
CompactCharArray.java 88 * @param newValues the values of the compact array.
95 char newValues[])
102 if (index >= newValues.length+BLOCKCOUNT)
106 values = newValues;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
CompactByteArray.java 85 * @param newValues the values of the compact array.
92 byte newValues[])
99 if (index >= newValues.length+BLOCKCOUNT)
103 values = newValues;

Completed in 1442 milliseconds

1 2 3 4 5 6 7 8 91011