/frameworks/base/core/java/android/view/ |
ViewPropertyAnimator.java | 154 * values holder is the list of all property/value objects. 206 * values are used to calculate the animated value for a given animation fraction 649 * constant name for the property along with the from/delta values that will be used to 717 * This method handles setting the property values directly in the View object's fields. 857 NameValuesHolder values = valueList.get(i); local [all...] |
/libcore/luni/src/main/java/org/apache/harmony/luni/util/ |
TwoKeyHashMap.java | 42 private Collection<V> values; field in class:TwoKeyHashMap 93 * Returns a collection view of the values 95 public Collection<V> values() { method in class:TwoKeyHashMap 96 if (values == null) { 97 values = new ValuesCollectionImpl(); 99 return values; 277 * Creates values iterator 523 * An instance is returned by the values() call.
|
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppUtility.java | 290 ContentValues values = new ContentValues(); local 291 values.put(BluetoothShare.URI, transInfo.mFileUri); 292 values.put(BluetoothShare.MIMETYPE, transInfo.mFileType); 293 values.put(BluetoothShare.DESTINATION, transInfo.mDestAddr); 296 values);
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
RawContactReadOnlyEditorView.java | 130 ValuesDelta values = state.getValues(); local 131 mAccountName = values.getAsString(RawContacts.ACCOUNT_NAME); 132 mAccountType = values.getAsString(RawContacts.ACCOUNT_TYPE); 133 mDataSet = values.getAsString(RawContacts.DATA_SET); 168 mRawContactId = values.getAsLong(RawContacts._ID);
|
/sdk/ide_common/src/com/android/ide/common/resources/ |
ResourceRepository.java | 295 // values/) 358 for (List<ResourceFolder> list : mFolderMap.values()) { 442 * Returns the resources values matching a given {@link FolderConfiguration}. 453 * Returns the resources values matching a given {@link FolderConfiguration} for the current 465 for (ResourceType key : ResourceType.values()) { 479 Collection<List<ResourceFolder>> folderList = mFolderMap.values(); 500 Collection<List<ResourceFolder>> folderList = mFolderMap.values(); 571 * <p/>The values returned are taken from the resource files best matching a given 607 Collection<List<ResourceItem>> lists = mResourceMap.values();
|
/external/bluetooth/bluez/lib/ |
sdp.c | 511 sdp_data_t *sdp_seq_alloc_with_length(void **dtds, void **values, int *length, 522 data = (sdp_data_t *) values[i]; 524 data = sdp_data_alloc_with_length(dtd, values[i], length[i]); 540 sdp_data_t *sdp_seq_alloc(void **dtds, void **values, int len) 550 data = (sdp_data_t *) values[i]; 552 data = sdp_data_alloc(dtd, values[i]); 1952 void **dtds, **values; local 2239 void *dtds[10], *values[10]; local 2371 void **dtds, **values; local 2500 void *dtds[2], *values[2]; local 3195 void **types, **values; local [all...] |
/external/skia/src/animator/ |
SkDisplayApply.cpp | 115 void SkApply::applyValues(int animatorIndex, SkOperand* values, int count, 131 temp.fOperand = values[index]; 137 scriptValue.fOperand = values[0]; 146 animator->packARGB(&values->fScalar, count, &converted); 147 values = converted.begin(); 154 info->setString(target, values->fString); 156 target->setReference(info, values->fDisplayable); 158 info->setValue(target, values, count); 582 // SkTypedArray values; 584 // values.setCount(count) [all...] |
SkMemberInfo.cpp | 97 if (dispArray->values.count() <= index) 99 type = dispArray->values.getType(); 119 type = dispArray->values.getType(); 160 void SkMemberInfo::setValue(SkDisplayable* displayable, const SkOperand values[], 162 SkASSERT(sizeof(values[0].fScalar) == sizeof(values[0])); // no support for 64 bit pointers, yet 169 memcpy(dst, values, count * sizeof(SkOperand));
|
/frameworks/base/core/java/android/provider/ |
CalendarContract.java | 325 * <P>Type: INTEGER (one of the values below)</P> 2130 ContentValues values = new ContentValues(); local [all...] |
/frameworks/base/core/tests/coretests/src/android/database/sqlite/ |
SQLiteDatabaseTest.java | 112 mDatabase.execSQL("insert into test values(1);"); 152 ContentValues values = new ContentValues(); local 155 values.put("i", i); 156 values.put("j", "i" + System.currentTimeMillis()); 157 mDatabase.insert(TEST_TABLE, null, values); 160 values.put("j", "u" + System.currentTimeMillis()); 161 mDatabase.update(TEST_TABLE, values, "i = " + i, null); 185 values.put("i", i); 186 values.put("j", "i" + System.currentTimeMillis()); 187 mDatabase.insert(TEST_TABLE, null, values); [all...] |
/cts/tests/tests/telephony/src/android/telephony/cts/ |
PhoneNumberUtilsTest.java | 212 ContentValues values = new ContentValues(); local 213 values.put(People.NAME, "CTS test contact"); 214 personRecord = cr.insert(People.CONTENT_URI, values); 216 values.clear(); 217 values.put(People.Phones.TYPE, People.Phones.TYPE_HOME); 218 values.put(People.Phones.NUMBER, "+18005552871"); 219 phoneRecord = cr.insert(phoneUri, values);
|
/external/openssl/crypto/x509v3/ |
v3_utl.c | 254 STACK_OF(CONF_VALUE) *values = NULL; 286 X509V3_add_value(ntmp, NULL, &values); 302 X509V3_add_value(ntmp, vtmp, &values); 319 X509V3_add_value(ntmp, vtmp, &values); 329 X509V3_add_value(ntmp, NULL, &values); 332 return values; 336 sk_CONF_VALUE_pop_free(values, X509V3_conf_free); 695 /* Treat the IPv6 representation as a list of values
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
DescriptorsTest.java | 77 assertEquals(FieldDescriptor.Type.values().length, 78 FieldDescriptorProto.Type.values().length); 79 for (FieldDescriptor.Type type : FieldDescriptor.Type.values()) { 396 FieldDescriptor.Type[] values1 = FieldDescriptor.Type.values(); 397 WireFormat.FieldType[] values2 = WireFormat.FieldType.values(); 411 FieldDescriptor.JavaType[] values1 = FieldDescriptor.JavaType.values(); 412 WireFormat.JavaType[] values2 = WireFormat.JavaType.values();
|
/external/tremolo/Tremolo/ |
bitwise.c | 690 unsigned long values[TESTWORDS]; local 705 values[j]=rand(); 709 flat[word] |= ((values[j]>>k)&0x1)<<bit; 797 if(temp!=(values[j]&mask[len[j]])){ 800 values[j]&mask[len[j]],temp,j-begin,len[j]); 832 if(temp!=(values[j]&mask[len[j]])){ 835 values[j]&mask[len[j]],temp,j-begin,len[j]);
|
/external/guava/src/com/google/common/collect/ |
AbstractMultimap.java | 46 * a multimap as a map that associates each key with a collection of values. All 51 * #createCollection()}, which creates an empty collection of values for a key. 56 * to create the collection of values for that key. The subclass should not call 63 * through the keys and values in sorted order. 65 * <p>Keys and values may be null, as long as the underlying collection classes 91 * The map variable contains the collection of values associated with each 93 * contain any values for that key, a new collection generated by 95 * remains in the map as long as the multimap has any values for the key. If 96 * all values for the key are removed, the key and collection are removed 102 * empty, the multimap may contain subsequently added values for that key. T 1124 public Collection<V> values() { method [all...] |
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteDatabase.java | [all...] |
/packages/apps/Contacts/src/com/android/contacts/ |
ContactLoader.java | 434 "Cannot extract content values from an aggregated contact"); 445 result.add(pair.values); 797 final ContentValues entryValues = subValue.values; 826 final ContentValues values = entity.getEntityValues(); local 828 values.getAsString(RawContacts.ACCOUNT_TYPE), 829 values.getAsString(RawContacts.DATA_SET)); 834 contactData.mInvitableAccountTypes.addAll(result.values()); 1007 ContentValues values = entity.getEntityValues(); local [all...] |
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
MmsSmsProvider.java | 586 ContentValues values = new ContentValues(4); local 589 values.put(ThreadsColumns.DATE, date - date % 1000); 590 values.put(ThreadsColumns.RECIPIENT_IDS, recipientIds); 592 values.put(Threads.TYPE, Threads.BROADCAST_THREAD); 594 values.put(ThreadsColumns.MESSAGE_COUNT, 0); 596 long result = mOpenHelper.getWritableDatabase().insert("threads", null, values); [all...] |
/external/doclava/src/com/google/doclava/ |
ClassInfo.java | 428 mMethods = new ArrayList<MethodInfo>(all.values()); 467 mFields = new ArrayList<FieldInfo>(all.values()); 499 mSelfFields = new ArrayList<FieldInfo>(fields.values()); 539 mSelfMethods = new ArrayList<MethodInfo>(methods.values()); 623 mSelfAttributes = new ArrayList<AttributeInfo>(attrs.values()); 943 for (ClassInfo cl : direct.values()) { 951 for (ClassInfo cl : indirect.values()) { [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
FloatTest.java | 132 float[] values = new float[] { Float.NEGATIVE_INFINITY, -Float.MAX_VALUE, -2f, local 135 for (int i = 0; i < values.length; i++) { 136 float f1 = values[i]; 140 for (int j = i + 1; j < values.length; j++) { 141 float f2 = values[j]; 934 float[] values = new float[] { Float.NEGATIVE_INFINITY, -Float.MAX_VALUE, -2f, local [all...] |
/external/icu4c/test/cintltst/ |
trietest.c | 36 /* Values for setting possibly overlapping, out-of-order ranges of values */ 44 * Values for testing: 144 uint32_t values[30]; local 160 values[countValues++]=checkRanges[i].value; 175 if(value!=values[i]) { 177 testName, c, c2, value, values[i]); 208 if(value!=values[i]) { 210 testName, c, c2, value, values[i]); 220 if(value!=values[i]) [all...] |
/external/v8/test/mjsunit/ |
array-unshift.js | 58 // ... but sees values from Array.prototype 95 // Note that unshift copies values from prototype into the array. 138 // ... but sees values from array_proto. 174 // Note that unshift copies values from prototype into the array. 193 // Check the behaviour when approaching maximal values for length.
|
/external/webkit/Source/WebCore/css/ |
CSSMutableStyleDeclaration.cpp | 114 // Shorthand and 4-values properties 330 Vector< RefPtr<CSSValue> > values(size); 334 values[i] = getPropertyCSSValue(properties[i]); 335 if (values[i]) { 336 if (values[i]->isValueList()) { 337 CSSValueList* valueList = static_cast<CSSValueList*>(values[i].get()); 344 // Now stitch the properties together. Implicit initial values are flagged as such and 353 if (values[j]) { 354 if (values[j]->isValueList()) 355 value = static_cast<CSSValueList*>(values[j].get())->item(i) [all...] |
/frameworks/base/core/tests/coretests/src/android/net/ |
UriTest.java | 611 // empty values 640 List<String> values = uri.getQueryParameters(""); local 641 assertEquals(2, values.size()); 642 assertEquals("b", values.get(0)); 643 assertEquals("", values.get(1)); 648 List<String> values = uri.getQueryParameters(""); local 649 assertEquals(1, values.size()); 650 assertEquals("", values.get(0)); 655 List<String> values = uri.getQueryParameters(""); local 656 assertEquals(1, values.size()) [all...] |
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/ |
Utility.java | 815 String[] values = new String[projection.length]; 821 values[i] = c.getString(i); 829 return values; [all...] |