/frameworks/base/core/java/android/app/ |
LauncherActivity.java | 198 results.values = list; 204 ArrayList<ListItem> values = mOriginalValues; local 205 int count = values.size(); 210 ListItem item = values.get(i); 225 results.values = newValues; 235 mActivitiesList = (List<ListItem>) results.values;
|
/frameworks/base/libs/hwui/ |
DisplayListRenderer.h | 358 void addInts(const int32_t* values, uint32_t count) { 361 mWriter.writeInt(values[i]); 365 void addUInts(const uint32_t* values, int8_t count) { 368 mWriter.writeInt(values[i]); 376 void addFloats(const float* values, int count) { 379 mWriter.writeScalar(values[i]);
|
/libcore/luni/src/main/java/java/util/ |
Calendar.java | 53 * A {@code Calendar} object can produce all the time field values needed 56 * {@code Calendar} defines the range of values returned by certain 59 * Other values are defined by the concrete subclass, such as {@code ERA} 65 * range of field values than it produces. For example, a lenient 69 * out-of-range field settings. When calendars recompute field values for return 72 * values between 1 and the length of the month. 294 * True iff the values in {@code fields[]} correspond to {@code time}. Despite the name, this 295 * is effectively "are the values in fields[] up-to-date?" --- {@code fields[]} may contain 296 * non-zero values and {@code isSet[]} may contain {@code true} values even whe [all...] |
/packages/apps/Calendar/src/com/android/calendar/alerts/ |
AlertService.java | 213 ContentValues values = new ContentValues(); local 237 values.put(CalendarAlerts.RECEIVED_TIME, currentTime); 245 values.put(CalendarAlerts.STATE, newState); 252 values.put(CalendarAlerts.NOTIFY_TIME, currentTime); 256 if (values.size() > 0) cr.update(alertUri, values, null, null);
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
RawContactEditorView.java | 176 ValuesDelta values = state.getValues(); local 177 mRawContactId = values.getAsLong(RawContacts._ID); 181 String accountName = values.getAsString(RawContacts.ACCOUNT_NAME); 192 String accountName = values.getAsString(RawContacts.ACCOUNT_NAME); 341 for (ValuesDelta values : entries) { 342 Long id = values.getAsLong(GroupMembership.GROUP_ROW_ID);
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/ |
EventLogParser.java | 161 // This is due to the event encoding several values on 2 longs. 459 // TODO parse and create string values. 468 // get each individual values as String 469 String[] values = data.split(","); local 475 objects[0] = getObjectFromString(values[0], EventValueType.LONG); 476 objects[1] = getObjectFromString(values[1], EventValueType.LONG); 481 if (values.length != desc.length) { 485 Object[] objects = new Object[values.length]; 488 Object obj = getObjectFromString(values[i], desc[i].getEventValueType());
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/xml/ |
ManifestData.java | 159 * To get an instance with all the actual values, use {@link #resolveSupportsScreensValues(int)} 177 String[] values = value.split("\\|"); local 179 mAnyDensity = Boolean.valueOf(values[0]); 180 mResizeable = Boolean.valueOf(values[1]); 181 mSmallScreens = Boolean.valueOf(values[2]); 182 mNormalScreens = Boolean.valueOf(values[3]); 183 mLargeScreens = Boolean.valueOf(values[4]); 187 * Returns an instance of {@link SupportsScreens} initialized with the default values 205 * Returns a version of the receiver for which all values have been set, even if they 208 * on default values [all...] |
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
CalendarProvider2Test.java | 217 * This is used to update an event. The values to update are specified 222 * by checking for specific keys and converting the associated values. 981 ContentValues values = new ContentValues(); local [all...] |
/external/guava/src/com/google/common/collect/ |
LinkedListMultimap.java | 49 * iteration order for both keys and values. The iteration order is preserved 50 * across non-distinct key values. For example, for the following multimap 60 * iteration order is kept consistent between keys, entries and values. For 73 * return collections that iterate through the values in the order they were 75 * {@link #values} iterate across the key-value mappings in the order they were 78 * <p>Keys and values may be null. All optional multimap methods are supported, 81 * <p>The methods {@link #get}, {@link #keySet}, {@link #keys}, {@link #values}, 101 * the values for a specific key, is used to implement {@link 125 private transient Multiset<K> keyCount; // the number of values for each key 318 /** A {@code ListIterator} over values for a specified key. * 464 Iterator<V> values = new ValueForKeyIterator(key); local [all...] |
/packages/apps/Contacts/src/com/android/contacts/list/ |
CustomContactListFilterActivity.java | 156 final ContentValues values = iterator.next().getEntityValues(); local 157 final GroupDelta group = GroupDelta.fromBefore(values); 266 final ContentValues values = new ContentValues(); local 267 values.put(Settings.ACCOUNT_NAME, accountName); 268 values.put(Settings.ACCOUNT_TYPE, accountType); 269 values.put(Settings.DATA_SET, dataSet); 272 // Read existing values when present 273 values.put(Settings.SHOULD_SYNC, cursor.getInt(0)); 274 values.put(Settings.UNGROUPED_VISIBLE, cursor.getInt(1)); 275 return fromBefore(values).setUngrouped(accountHasGroups) 878 final ContentValues values = new ContentValues(); local [all...] |
/frameworks/base/core/java/android/accounts/ |
AccountManagerService.java | 418 ContentValues values = new ContentValues(); local 419 values.put(ACCOUNTS_NAME, account.name); 420 values.put(ACCOUNTS_TYPE, account.type); 421 values.put(ACCOUNTS_PASSWORD, password); 422 long accountId = db.insert(TABLE_ACCOUNTS, ACCOUNTS_NAME, values); 449 ContentValues values = new ContentValues(); local 450 values.put(EXTRAS_KEY, key); 451 values.put(EXTRAS_ACCOUNTS_ID, accountId); 452 values.put(EXTRAS_VALUE, value); 453 return db.insert(TABLE_EXTRAS, EXTRAS_KEY, values); 683 ContentValues values = new ContentValues(); local 759 final ContentValues values = new ContentValues(); local 835 ContentValues values = new ContentValues(); local 1802 ContentValues values = new ContentValues(); local 2056 ContentValues values = new ContentValues(); local [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
FileA3DTest.java | 61 for(FileA3D.EntryType et : FileA3D.EntryType.values()) { 102 assertEquals(2, FileA3D.EntryType.values().length);
|
/dalvik/hit/src/com/android/hit/ |
ClassInstance.java | 48 byte[] values) { 49 ByteArrayInputStream bais = new ByteArrayInputStream(values);
|
ClassObj.java | 151 public final void setStaticFieldValues(byte[] values) { 152 mStaticFieldValues = values;
|
/development/samples/MySampleRss/src/com/example/codelab/rssexample/ |
RssContentProvider.java | 58 // Here are our column name constants, used to query for field values. 170 public int update(Uri uri, ContentValues values, String whereClause) { 172 int updateCount = mDb.update(DATABASE_TABLE_NAME, values, whereClause);
|
/development/samples/SearchableDictionary/src/com/example/android/searchabledict/ |
DictionaryProvider.java | 189 public Uri insert(Uri uri, ContentValues values) { 199 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
|
/development/tools/apkcheck/src/com/android/apkcheck/ |
ClassInfo.java | 147 return mFieldList.values().iterator(); 161 return mMethodList.values().iterator();
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
TreeMapTest.java | 189 // get the keySet() and values() on the original Map 191 Collection values = map.values(); local 192 assertEquals("values() does not work", "value", values.iterator() 197 Collection values2 = map2.values(); 198 assertTrue("values() is identical", values2 != values); 199 // values() and keySet() on the cloned() map should be different 200 assertEquals("values() was not cloned", "value2", values2.iterator( 610 String[] values = { "one", "two", "three" }; local 753 Collection values = myTreeMap.values(); local 868 String[] values = { "one", "two", "three" }; local 1879 Collection<String> values = map.values(); local [all...] |
/external/bluetooth/glib/gobject/ |
gsourceclosure.c | 50 static const GFlagsValue values[] = { local 59 etype = g_flags_register_static ("GIOCondition", values);
|
/external/chromium/chrome/common/extensions/docs/examples/api/tabs/inspector/ |
jstemplate_compiled.js | 646 * If the templates is processed again, changed values are merely 787 * Sets the function used to resolve the values of the transclude 819 * HTML template processor. Data values are bound to HTML templates 821 * jsvalues. The template is modifed in place. The values of those 917 var values = domGetAttribute(template, ATT_values); 918 if (values) { 919 me.jstValues_(context, template, values); 1079 * Implements the jsvalues attribute: evaluates each of the values and 1083 * template node (otherwise). Since DOM attribute values are always 1095 var values = valuesStr.split(/\s*;\s*/) [all...] |
/external/clang/utils/ |
SummarizeErrors | 20 def values(self): member in class:multidict 21 return self.data.values()
|
/external/emma/core/java12/com/vladium/util/ |
IntSet.java | 98 public int [] values () method in class:IntSet 119 public void values (final int [] target, final int offset) method in class:IntSet
|
/external/gtest/include/gtest/ |
gtest-typed-test.h | 78 typename TestFixture::List values; 79 values.push_back(n);
|
/external/icu4c/layoutex/ |
RunArrays.cpp | 213 le_int32 *values = (le_int32 *) fValues; local 215 values[index] = value;
|
/external/libxml2/include/libxml/ |
xmlregexp.h | 100 xmlChar **values, 107 xmlChar **values,
|