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

1 2 3 4 5 6

  /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);
  /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;
  /frameworks/base/core/java/android/util/
IntArray.java 101 final int[] newValues = ArrayUtils.newUnpaddedIntArray(newCapacity);
102 System.arraycopy(mValues, 0, newValues, 0, currentSize);
103 mValues = newValues;
LongArray.java 100 final long[] newValues = ArrayUtils.newUnpaddedLongArray(newCapacity);
101 System.arraycopy(mValues, 0, newValues, 0, currentSize);
102 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 182 int[] newValues = new int[newLength];
191 newValues[newIndex++] = this.values[index];
198 newValues[newIndex++] = other.values[index];
201 return new InstructionOffsetValue(newValues);
  /sdk/emulator/opengl/shared/emugl/common/
id_to_object_map.cpp 213 void** newValues = static_cast<void**>(
214 ::calloc(sizeof(newValues[0]), newCapacity));
224 newValues[newSlot] = mValues[n];
232 mValues = newValues;
  /frameworks/base/core/java/android/widget/
ArrayAdapter.java 476 final ArrayList<T> newValues = new ArrayList<T>();
484 newValues.add(value);
492 newValues.add(value);
499 results.values = newValues;
500 results.count = newValues.size();
SimpleAdapter.java 343 ArrayList<Map<String, ?>> newValues = new ArrayList<Map<String, ?>>(count);
361 newValues.add(h);
369 results.values = newValues;
370 results.count = newValues.size();
  /external/chromium_org/third_party/icu/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/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/chromium_org/remoting/webapp/
stats_accumulator.js 42 * @param {Object.<string, number>} newValues
44 remoting.StatsAccumulator.prototype.add = function(newValues) {
45 for (var key in newValues) {
46 this.getValueList(key).push(newValues[key]);
  /external/chromium_org/third_party/icu/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 185 PreparsedUCD::getProps(UnicodeSet &newValues, UErrorCode &errorCode) {
187 newValues.clear();
256 if(!parseProperty(*props, field, newValues, errorCode)) { return NULL; }
272 PreparsedUCD::parseProperty(UniProps &props, const char *field, UnicodeSet &newValues,
459 newValues.add((UChar32)prop);
  /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 185 PreparsedUCD::getProps(UnicodeSet &newValues, UErrorCode &errorCode) {
187 newValues.clear();
256 if(!parseProperty(*props, field, newValues, errorCode)) { return NULL; }
272 PreparsedUCD::parseProperty(UniProps &props, const char *field, UnicodeSet &newValues,
459 newValues.add((UChar32)prop);
  /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;
  /frameworks/base/core/java/android/transition/
Visibility.java 487 boolean areValuesChanged(TransitionValues oldValues, TransitionValues newValues) {
488 if (oldValues == null && newValues == null) {
491 if (oldValues != null && newValues != null &&
492 newValues.values.containsKey(PROPNAME_VISIBILITY) !=
498 VisibilityInfo changeInfo = getVisibilityChangeInfo(oldValues, newValues);
Transition.java     [all...]
  /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();
  /external/smack/src/org/jivesoftware/smackx/
FormField.java 240 * @param newValues default values or an answered values of the question.
242 public void addValues(List<String> newValues) {
244 values.addAll(newValues);
  /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 597 Iterator<? extends V> newValues = values.iterator();
600 while (keyValues.hasNext() && newValues.hasNext()) {
602 keyValues.set(newValues.next());
612 while (newValues.hasNext()) {
613 keyValues.add(newValues.next());
    [all...]

Completed in 609 milliseconds

1 2 3 4 5 6