/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]);
|
/frameworks/support/v4/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);
|
/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);
|
/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/data-binding/compiler/src/main/java/android/databinding/tool/ |
MergedBinding.java | 100 final List<String> newValues = new ArrayList<>(); 102 newValues.add(CodeGenUtil.Companion.toCode(expr, false).generate()); 113 final String[] expressions = concat(oldValues, newValues, String.class);
|
/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;
|
CompactCharArray.java | 84 * @param newValues the values of the compact array. 91 char newValues[]) 98 if ((index < 0) || (index >= newValues.length+BLOCKCOUNT)) 102 values = newValues;
|
/frameworks/base/core/java/android/widget/ |
ArrayAdapter.java | 509 final ArrayList<T> newValues = new ArrayList<T>(); 517 newValues.add(value); 525 newValues.add(value); 532 results.values = newValues; 533 results.count = newValues.size();
|
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();
|
/frameworks/base/core/java/android/app/ |
LauncherActivity.java | 207 ArrayList<ListItem> newValues = new ArrayList<ListItem>(count); 219 newValues.add(item); 225 results.values = newValues; 226 results.count = newValues.size();
|
/packages/apps/Exchange/tests/src/com/android/exchange/provider/ |
MockProvider.java | 181 public int update(Uri uri, ContentValues newValues, String selection, String[] selectionArgs) { 207 Set<Entry<String, Object>> newValuesSet = newValues.valueSet();
|
/packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/ |
TestProvider.java | 181 public int update(Uri uri, ContentValues newValues, String selection, String[] selectionArgs) { 207 Set<Entry<String, Object>> newValuesSet = newValues.valueSet();
|
/external/guava/guava/src/com/google/common/collect/ |
LinkedListMultimap.java | 610 Iterator<? extends V> newValues = values.iterator(); 613 while (keyValues.hasNext() && newValues.hasNext()) { 615 keyValues.set(newValues.next()); 625 while (newValues.hasNext()) { 626 keyValues.add(newValues.next());
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
LinkedListMultimap.java | 606 Iterator<? extends V> newValues = values.iterator(); 609 while (keyValues.hasNext() && newValues.hasNext()) { 611 keyValues.set(newValues.next()); 621 while (newValues.hasNext()) { 622 keyValues.add(newValues.next());
|
/frameworks/base/core/java/android/transition/ |
Visibility.java | 463 public boolean isTransitionRequired(TransitionValues startValues, TransitionValues newValues) { 464 if (startValues == null && newValues == null) { 467 if (startValues != null && newValues != null && 468 newValues.values.containsKey(PROPNAME_VISIBILITY) != 474 VisibilityInfo changeInfo = getVisibilityChangeInfo(startValues, newValues);
|