/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;
|
/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/ |
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 | 49 public static String[] appendSelectionArgs(String[] originalValues, String[] newValues) { 51 return newValues; 53 String[] result = new String[originalValues.length + newValues.length ]; 55 System.arraycopy(newValues, 0, result, originalValues.length, newValues.length);
|
/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];
|
/frameworks/base/core/java/android/text/ |
PackedObjectVector.java | 114 Object[] newvalues = ArrayUtils.newUnpaddedObjectArray( local 116 int newsize = newvalues.length / mColumns; 119 System.arraycopy(mValues, 0, newvalues, 0, mColumns * mRowGapStart); 120 System.arraycopy(mValues, (mRows - after) * mColumns, newvalues, (newsize - after) * mColumns, after * mColumns); 124 mValues = newvalues;
|
PackedIntVector.java | 256 int[] newvalues = ArrayUtils.newUnpaddedIntArray( local 258 int newsize = newvalues.length / columns; 266 System.arraycopy(mValues, 0, newvalues, 0, columns * rowgapstart); 268 newvalues, (newsize - after) * columns, 284 mValues = newvalues;
|
/cts/tests/tests/provider/src/android/provider/cts/contacts/ |
DataUtil.java | 71 ContentValues newValues = new ContentValues(values); 72 newValues.put(ContactsContract.Data.RAW_CONTACT_ID, rawContactId); 74 Uri uri = resolver.insert(URI, 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 | 160 ContentValues newValues = new ContentValues(); 161 newValues.put(MetadataSync.ACCOUNT_NAME, TEST_ACCOUNT_NAME1); 162 newValues.put(MetadataSync.ACCOUNT_TYPE, TEST_ACCOUNT_TYPE1); 163 newValues.put(MetadataSync.DATA_SET, TEST_DATA_SET1); 164 newValues.put(MetadataSync.RAW_CONTACT_BACKUP_ID, TEST_BACKUP_ID1); 165 newValues.put(MetadataSync.DATA, newData); 166 newValues.put(MetadataSync.DELETED, 0); 168 mResolver.insert(MetadataSync.CONTENT_URI, newValues); 310 ContentValues newValues = new ContentValues(); 311 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/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;
|
/frameworks/base/core/java/android/util/ |
LongArray.java | 100 final long[] newValues = ArrayUtils.newUnpaddedLongArray(newCapacity); 101 System.arraycopy(mValues, 0, newValues, 0, currentSize); 102 mValues = newValues;
|
IntArray.java | 120 final int[] newValues = ArrayUtils.newUnpaddedIntArray(newCapacity); 121 System.arraycopy(mValues, 0, newValues, 0, currentSize); 122 mValues = newValues;
|
/frameworks/base/tools/aapt2/link/ |
ProductFilter.cpp | 82 std::vector<std::unique_ptr<ResourceConfigValue>> newValues; 102 newValues.push_back(std::move(*valueToKeep)); 111 entry->values = std::move(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/base/core/java/com/android/internal/app/ |
SuggestedLocaleAdapter.java | 219 final ArrayList<LocaleStore.LocaleInfo> newValues = new ArrayList<>(); 229 newValues.add(value); 233 results.values = newValues; 234 results.count = newValues.size();
|
/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/eigen/Eigen/src/SparseCore/ |
CompressedStorage.h | 207 Scalar* newValues = new Scalar[size]; 211 internal::smart_copy(m_values, m_values+copySize, newValues); 216 m_values = newValues;
|
/external/icu/icu4c/source/tools/toolutil/ |
ppucd.h | 124 * Clears newValues and sets UProperty codes for property values mentioned 129 const UniProps *getProps(UnicodeSet &newValues, UErrorCode &errorCode); 147 UBool parseProperty(UniProps &props, const char *field, UnicodeSet &newValues,
|
ppucd.cpp | 183 PreparsedUCD::getProps(UnicodeSet &newValues, UErrorCode &errorCode) { 185 newValues.clear(); 254 if(!parseProperty(*props, field, newValues, errorCode)) { return NULL; } 270 PreparsedUCD::parseProperty(UniProps &props, const char *field, UnicodeSet &newValues, 457 newValues.add((UChar32)prop);
|
/external/icu/icu4c/source/i18n/ |
sortkey.cpp | 58 CollationKey::CollationKey(const uint8_t* newValues, int32_t count) 62 if (count < 0 || (newValues == NULL && count != 0) || 69 uprv_memcpy(getBytes(), newValues, count);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
CompactByteArray.java | 83 * @param newValues the values of the compact array. 90 byte newValues[]) 97 if ((index < 0) || (index >= newValues.length+BLOCKCOUNT)) 101 values = newValues;
|
/frameworks/base/core/java/android/widget/ |
ArrayAdapter.java | 516 final ArrayList<T> newValues = new ArrayList<>(); 524 newValues.add(value); 529 newValues.add(value); 536 results.values = newValues; 537 results.count = newValues.size();
|