/external/webkit/Source/WebCore/svg/properties/ |
SVGPathSegListPropertyTearOff.cpp | 34 SVGPathSegList& values = m_animatedProperty->values(); local 35 if (values.isEmpty()) 38 unsigned size = values.size(); 40 ListItemType item = values.at(i); 44 SVGPathSegListPropertyTearOff::Base::clearValues(values, ec); 49 SVGPathSegList& values = m_animatedProperty->values(); local 50 ListItemType returnedItem = Base::getItemValues(values, index, ec); 60 SVGPathSegList& values = m_animatedProperty->values() local [all...] |
/frameworks/base/docs/html/resources/tutorials/notepad/codelab/ |
NotepadCodeLab.zip | |
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
ContactsActor.java | 215 * Mock {@link Context} that reports specific well-known values for testing 353 final ContentValues values = new ContentValues(); local 355 Uri rawContactUri = resolver.insert(RawContacts.CONTENT_URI, values); 369 final ContentValues values = new ContentValues(); local 370 values.put(Data.RAW_CONTACT_ID, contactId); 371 values.put(Data.IS_PRIMARY, 1); 372 values.put(Data.IS_SUPER_PRIMARY, 1); 373 values.put(Data.MIMETYPE, CommonDataKinds.StructuredName.CONTENT_ITEM_TYPE); 374 values.put(CommonDataKinds.StructuredName.FAMILY_NAME, name); 377 Uri dataUri = resolver.insert(insertUri, values); 383 final ContentValues values = new ContentValues(); local 399 final ContentValues values = new ContentValues(); local 414 final ContentValues values = new ContentValues(); local 463 final ContentValues values = new ContentValues(); local 472 final ContentValues values = new ContentValues(); local 481 final ContentValues values = new ContentValues(); local 492 ContentValues values = new ContentValues(); local [all...] |
GroupsTest.java | 163 ContentValues values = new ContentValues(); local 164 values.put(Groups.NOTES, "New notes"); 165 mResolver.update(updateUri, values, null, null); 175 ContentValues values = new ContentValues(); local 176 values.put(Groups.DIRTY, 0); 177 values.put(Groups.NOTES, "other notes"); 178 assertEquals(1, mResolver.update(uri, values, null, null)); 214 ContentValues values = new ContentValues(); local 215 values.put(Groups.TITLE, "title2"); 216 mResolver.update(uri, values, null, null) 259 final ContentValues values = new ContentValues(); local 308 final ContentValues values = new ContentValues(); local 321 final ContentValues values = new ContentValues(); local 351 final ContentValues values = new ContentValues(); local [all...] |
SearchIndexManagerTest.java | 51 ContentValues values = new ContentValues(); local 52 values.put(StructuredName.DISPLAY_NAME, "Bob I. Parr"); 53 insertStructuredName(rawContactId, values); 54 values.clear(); 55 values.put(StructuredName.PREFIX, "Mrs."); 56 values.put(StructuredName.GIVEN_NAME, "Helen"); 57 values.put(StructuredName.MIDDLE_NAME, "I."); 58 values.put(StructuredName.FAMILY_NAME, "Parr"); 59 values.put(StructuredName.SUFFIX, "PhD"); 60 values.put(StructuredName.PHONETIC_FAMILY_NAME, "par") 76 ContentValues values = new ContentValues(); local 91 ContentValues values = new ContentValues(); local 111 ContentValues values = new ContentValues(); local 126 ContentValues values = new ContentValues(); local 152 ContentValues values = new ContentValues(); local 175 ContentValues values = new ContentValues(); local 221 ContentValues values = new ContentValues(); local 462 ContentValues values = new ContentValues(); local [all...] |
/external/antlr/src/org/antlr/runtime/misc/ |
DoubleKeyMap.java | 34 /** Get all values associated with primary key */ 35 public Collection<Value> values(Key1 k1) { method in class:DoubleKeyMap 38 return data2.values(); 53 public Collection<Value> values() { method in class:DoubleKeyMap 55 for (Map<Key2, Value> k2 : data.values()) { 56 for (Value v : k2.values()) {
|
/external/apache-harmony/annotation/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/ |
ElementTypeTest.java | 56 * @tests java.lang.annotation.ElementType#values() 60 ElementType[] values = ElementType.values(); local 61 assertTrue(values.length > 1); 62 Arrays.sort(values); 63 assertTrue(Arrays.binarySearch(values, ElementType.METHOD) >= 0);
|
RetentionPolicyTest.java | 51 * @tests java.lang.annotation.RetentionPolicy#values() 55 RetentionPolicy[] values = RetentionPolicy.values(); local 56 assertTrue(values.length > 1); 57 Arrays.sort(values); 58 assertTrue(Arrays.binarySearch(values, RetentionPolicy.RUNTIME) >= 0);
|
/external/bluetooth/glib/docs/reference/glib/tmpl/ |
types.sgml | 83 Values of this type can range from #G_MININT to #G_MAXINT. 90 Values of this type can range from 0 to #G_MAXUINT. 97 Values of this type can range from #G_MINSHORT to #G_MAXSHORT. 104 Values of this type can range from 0 to #G_MAXUSHORT. 111 Values of this type can range from #G_MINLONG to #G_MAXLONG. 118 Values of this type can range from 0 to #G_MAXULONG. 125 Values of this type can range from -128 to 127. 132 Values of this type can range from 0 to 255. 139 Values of this type can range from -32,768 to 32,767. 142 To print or scan values of this type, us [all...] |
/external/guava/src/com/google/common/collect/ |
AbstractSortedSetMultimap.java | 42 * values 59 K key, Iterable<? extends V> values) { 60 return (SortedSet<V>) super.replaceValues(key, values); 66 * Consequently, the values do not follow their natural ordering or the 69 @Override public Collection<V> values() { method in class:AbstractSortedSetMultimap 70 return super.values();
|
SetMultimap.java | 32 * each return a {@link Set} of values, while {@link #entries} returns a {@code 34 * the map returned by {@link #asMap} has {@code Set} values. 44 * <p>Because a {@code SetMultimap} has unique values for a given key, this 53 * <p>Because a {@code SetMultimap} has unique values for a given key, this 62 * <p>Because a {@code SetMultimap} has unique values for a given key, this 66 * <p>Any duplicates in {@code values} will be stored in the multimap once. 68 Set<V> replaceValues(K key, Iterable<? extends V> values); 73 * <p>Because a {@code SetMultimap} has unique values for a given key, this 83 * has {@link Set} values. 91 * contain the same values. Equality does not depend on the ordering of key [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
TBSCertificate.java | 247 Object[] values = (Object[]) in.content; 249 boolean[] issuerUniqueID = (values[7] == null) 250 ? null : ((BitString) values[7]).toBooleanArray(); 251 boolean[] subjectUniqueID = (values[8] == null) 252 ? null : ((BitString) values[8]).toBooleanArray(); 254 ASN1Integer.toIntValue(values[0]), 255 new BigInteger((byte[]) values[1]), 256 (AlgorithmIdentifier) values[2], 257 (Name) values[3], 258 (Validity) values[4] [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/ |
MessageImprint.java | 52 Object[] values = (Object[]) in.content; 54 (AlgorithmIdentifier)values[0], 55 (byte[])values[1]); 58 protected void getValues(Object object, Object[] values) { 60 values[0] = mi.algId; 61 values[1] = mi.hashedMessage;
|
/external/e2fsprogs/e2fsck/ |
profile_helpers.c | 8 * list of sections or relations, or accessing multiple values from a 147 struct profile_string_list values; local 154 if ((retval = init_list(&values))) 161 add_to_list(&values, value); 164 if (values.num == 0) { 169 end_list(&values, ret_values); 173 end_list(&values, 0); 188 struct profile_string_list values; local 195 if ((retval = init_list(&values))) 202 add_to_list(&values, name) 224 struct profile_string_list values; local [all...] |
/cts/tests/tests/content/src/android/content/cts/ |
ContentQueryMapTest.java | 183 ContentValues values = new ContentValues(); local 184 values.put(DummyProvider.NAME, NAME2); 185 values.put(DummyProvider.VALUE, VALUE2); 186 mResolver.update(DummyProvider.CONTENT_URI, values, 234 ContentValues values = new ContentValues(); local 235 values.put(DummyProvider.NAME, NAME2); 236 values.put(DummyProvider.VALUE, VALUE2); 237 mResolver.update(DummyProvider.CONTENT_URI, values, 240 // values have not been updated 278 values = new ContentValues() 348 ContentValues values = new ContentValues(); local [all...] |
/external/chromium/chrome/browser/ui/webui/ |
value_helper.h | 11 #include "base/values.h" 13 // Used to convert TabRestoreService elements to values for JSON processing.
|
/external/iproute2/etc/iproute2/ |
rt_dsfield | 7 # These values seems do not want to die, Cisco likes them by a strange reason. 15 # Newer RFC2597 values
|
/external/jsr305/ri/src/main/java/javax/annotation/meta/ |
TypeQualifierValidator.java | 10 * is an instance of the set of values denoted by the qualifier. 17 * values denoted by the type qualifier
|
/external/kernel-headers/original/linux/ |
fadvise.h | 10 * The advise values for POSIX_FADV_DONTNEED and POSIX_ADV_NOREUSE 11 * for s390-64 differ from the values for the rest of the world.
|
/libcore/luni/src/main/java/java/security/interfaces/ |
DSAKeyPairGenerator.java | 30 * q}), and base ({@code g}) values from the specified parameters. 33 * the parameter values. 37 * if the specified parameter values are {@code null} or 44 * Initializes this generator for the specified modulus length. Valid values 49 * values or whether 50 * it will use the pre-calculated values for the specified modulus 57 * whether new values should be generated. 62 * no pre-calculated values and {@code genParams} is {@code
|
/libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/ |
ThreeIntegerSequence.java | 58 Object[] values = (Object[]) in.content; 60 return new ThreeIntegerSequence((byte[]) values[0], 61 (byte[]) values[1], (byte[]) values[2]); 64 protected void getValues(Object object, Object[] values) { 68 values[0] = mySeq.p; 69 values[1] = mySeq.q; 70 values[2] = mySeq.g;
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
fadvise.h | 10 * The advise values for POSIX_FADV_DONTNEED and POSIX_ADV_NOREUSE 11 * for s390-64 differ from the values for the rest of the world.
|
/cts/tests/tests/util/src/android/util/cts/ |
SparseArrayTest.java | 29 private static final Integer[] VALUES = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12}; 30 private static final int LENGTH = VALUES.length; 110 int length = VALUES.length; 113 sparseArray.put(KEYS[i], VALUES[i]); 122 assertEquals(sparseArray.indexOfValue(VALUES[i]), sparseArray.indexOfKey(KEYS[i])); 127 Integer oldValue = VALUES[0]; // 0 147 sparseArray.setValueAt(size, VALUES[1]); 149 assertEquals(VALUES[1], sparseArray.valueAt(size)); 152 assertEquals(VALUES[1], sparseArray.get(KEYS[1])); 153 assertFalse(VALUE_FOR_NON_EXISTED_KEY == VALUES[1]) [all...] |
/frameworks/base/core/java/android/database/ |
CursorJoiner.java | 24 * supports the case where the tuple of key column values is unique. 149 * next() are guaranteed to point to the row that was indicated. Reading values 196 * array and saves them in values beginning at startingIndex, skipping a slot 198 * values will be stored in slots 1, 3, and 5. 199 * @param values the String[] to populate 201 * @param columnIndicies the indicies of the values to read from the cursor 202 * @param startingIndex the slot in which to start storing values, and must be either 0 or 1. 204 private static void populateValues(String[] values, Cursor cursor, int[] columnIndicies, 208 values[startingIndex + i*2] = cursor.getString(columnIndicies[i]); 235 * Compare the values. Values contains n pairs of strings. If all the pairs of strings matc [all...] |
/frameworks/base/core/tests/coretests/src/android/content/ |
ContentProviderOperationTest.java | 57 public Uri insert(Uri uri, ContentValues values) { 59 assertEquals(sTestValues1.toString(), values.toString()); 70 public Uri insert(Uri uri, ContentValues values) { 72 assertNull(values); 85 public Uri insert(Uri uri, ContentValues values) { 87 assertEquals(sTestValues1.toString(), values.toString()); 109 public Uri insert(Uri uri, ContentValues values) { 114 assertEquals(expected.toString(), values.toString()); 127 public Uri insert(Uri uri, ContentValues values) { 129 assertEquals(sTestValues1.toString(), values.toString()) 213 final Object[] values = new Object[valueSet.size()]; local 230 ContentValues values = new ContentValues(); local 266 final ContentValues values = new ContentValues(); local 291 ContentValues values = new ContentValues(); local [all...] |