/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);
|
/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/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]);
|
/frameworks/base/core/java/android/text/ |
PackedObjectVector.java | 114 Object[] newvalues = new Object[newsize * mColumns]; local 118 System.arraycopy(mValues, 0, newvalues, 0, mColumns * mRowGapStart); 119 System.arraycopy(mValues, (mRows - after) * mColumns, newvalues, (newsize - after) * mColumns, after * mColumns); 123 mValues = newvalues;
|
PackedIntVector.java | 257 int[] newvalues = new int[newsize * columns]; local 265 System.arraycopy(mValues, 0, newvalues, 0, columns * rowgapstart); 267 newvalues, (newsize - after) * columns, 283 mValues = 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;
|
/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);
|
/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/icu4c/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, 453 newValues.add((UChar32)prop);
|
/external/icu4c/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);
|
/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();
|
/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/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);
|
/external/chromium_org/third_party/icu/source/i18n/ |
sortkey.cpp | 55 CollationKey::CollationKey(const uint8_t* newValues, int32_t count) 67 uprv_memcpy(fBytes, newValues, fCount);
|
/frameworks/base/core/java/android/hardware/camera2/impl/ |
CameraMetadataNative.java | 606 int[] newValues = new int[availableFormat.length]; 608 newValues[i] = availableFormat[i]; 610 newValues[i] = NATIVE_JPEG_FORMAT; 614 setBase(CameraCharacteristics.SCALER_AVAILABLE_FORMATS, newValues);
|
/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...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
LinkedListMultimap.java | 593 Iterator<? extends V> newValues = values.iterator(); 596 while (keyValues.hasNext() && newValues.hasNext()) { 598 keyValues.set(newValues.next()); 608 while (newValues.hasNext()) { 609 keyValues.add(newValues.next());
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
BaseViewRule.java | 257 Set<String> newValues = new HashSet<String>(); 259 newValues.addAll(Arrays.asList( 263 newValues.add(valueId); 265 newValues.remove(valueId); 268 List<String> sorted = new ArrayList<String>(newValues); [all...] |
/frameworks/base/core/java/android/transition/ |
Transition.java | 473 TransitionValues newValues = endValues.viewValues.get(view); 474 if (newValues != null) { 477 newValues.values.get(properties[j])); [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/resources/ |
results-template.html | 362 var newValues = result.values(); 363 return newValues ? values.concat(newValues.map(function (value) { return [index, value]; })) : values;
|