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

1 2 3 4

  /developers/samples/android/connectivity/sync/BasicSyncAdapter/BasicSyncAdapterTests/src/com/example/android/network/sync/basicsyncadapter/provider/
FeedProviderTest.java 20 ContentValues newValues = new ContentValues();
21 newValues.put(FeedContract.Entry.COLUMN_NAME_TITLE, "MyTitle");
22 newValues.put(FeedContract.Entry.COLUMN_NAME_LINK, "http://example.com");
23 newValues.put(FeedContract.Entry.COLUMN_NAME_ENTRY_ID, "MyEntryID");
26 newValues);
43 ContentValues newValues = new ContentValues();
44 newValues.put(FeedContract.Entry.COLUMN_NAME_TITLE, "Alpha-MyTitle");
45 newValues.put(FeedContract.Entry.COLUMN_NAME_LINK, "http://alpha.example.com");
46 newValues.put(FeedContract.Entry.COLUMN_NAME_ENTRY_ID, "Alpha-MyEntryID");
49 newValues);
    [all...]
  /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;
  /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);
  /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/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);
  /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/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/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/exchange2/tests/src/com/android/exchange/provider/
MockProvider.java 178 public int update(Uri uri, ContentValues newValues, String selection, String[] selectionArgs) {
204 Set<Entry<String, Object>> newValuesSet = newValues.valueSet();
  /packages/apps/Exchange/tests/src/com/android/exchange/provider/
MockProvider.java 178 public int update(Uri uri, ContentValues newValues, String selection, String[] selectionArgs) {
204 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...]
  /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());
  /frameworks/base/core/java/android/database/
DatabaseUtils.java     [all...]
  /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/view/
MotionEvent.java     [all...]
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider2.java     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime.compatibility_3.2.100.v20100505.jar 
org.eclipse.core.databinding.property_1.3.0.I20100601-0800.jar 
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java     [all...]

Completed in 2666 milliseconds

1 2 3 4