HomeSort by relevance Sort by last modified time
    Searched defs:values (Results 176 - 200 of 6006) sorted by null

1 2 3 4 5 6 78 91011>>

  /packages/providers/ContactsProvider/src/com/android/providers/contacts/database/
ContactsTableUtil.java 59 final ContentValues values = new ContentValues(); local
60 values.put(Contacts.CONTACT_LAST_UPDATED_TIMESTAMP,
62 db.update(Tables.CONTACTS, values, Contacts._ID + " = ?",
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
PropertyUtils.java 74 ContentValues values = new ContentValues(); local
75 values.put(PropertiesColumns.PROPERTY_KEY, key);
76 values.put(PropertiesColumns.PROPERTY_VALUE, value);
77 db.replace(Tables.PROPERTIES, null, values);
  /packages/providers/ContactsProvider/test_common/src/com/android/providers/contacts/testutil/
DataUtil.java 39 public static void update(ContentResolver resolver, long dataId, ContentValues values) {
41 resolver.update(uri, values, null, null);
45 ContentValues values) {
46 values.put(ContactsContract.Data.RAW_CONTACT_ID, rawContactId);
47 values.put(ContactsContract.Data.MIMETYPE,
49 Uri resultUri = resolver.insert(ContactsContract.Data.CONTENT_URI, values);
69 ContentValues values = new ContentValues(); local
83 values.put(StructuredName.DISPLAY_NAME, sb.toString());
84 values.put(StructuredName.GIVEN_NAME, givenName);
85 values.put(StructuredName.FAMILY_NAME, familyName)
101 ContentValues values = new ContentValues(); local
    [all...]
  /packages/providers/DownloadProvider/tests/permission/src/com/android/providers/downloads/permission/tests/
DownloadProviderPermissionsTest.java 77 ContentValues values = new ContentValues(); local
78 values.put(Downloads.Impl.COLUMN_URI, "foo");
79 mContentResolver.insert(Downloads.Impl.CONTENT_URI, values);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
NestedConfiguration.java 30 * all of its values from a different configuration, except for one or more
41 /** The configuration we are inheriting non-overridden values from */
80 * its values from the given {@linkplain Configuration}.
83 * @param values the configuration to copy values from
84 * @param parent the parent to tie the configuration to for inheriting values
90 @NonNull Configuration values,
94 initFrom(configuration, other, values, true /*sync*/);
101 * its values from the given {@linkplain Configuration}.
105 * @param values the configuration to copy values fro
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/guice/
InvocationScope.java 36 * <p>The scope can be initialized with one or more seed values by calling <code>seed(key, value)
74 private final ThreadLocal<Map<Key<?>, Object>> values = new ThreadLocal<Map<Key<?>, Object>>(); field in class:InvocationScope
78 checkState(values.get() == null, "A scoping block is already in progress");
79 values.set(Maps.<Key<?>, Object>newHashMap());
84 checkState(values.get() != null, "No scoping block in progress");
85 values.remove();
164 Map<Key<?>, Object> scopedObjects = values.get();
  /cts/hostsidetests/inputmethodservice/deviceside/provider/src/android/inputmethodservice/cts/receiver/
EventReceiver.java 50 final ContentValues values = DeviceEvent.buildContentValues(event); local
51 context.getContentResolver().insert(CONTENT_URI, values);
  /cts/tests/sensor/src/android/hardware/cts/helpers/
TestSensorEvent.java 34 public final float values[]; field in class:TestSensorEvent
54 values = event.values.clone();
65 public TestSensorEvent(Sensor sensor, long timestamp, int accuracy, float[] values) {
66 this(sensor, timestamp, timestamp, accuracy, values);
73 float[] values) {
78 this.values = values;
84 "Timestamp=%sns, ReceivedTimestamp=%sns, Accuracy=%s, Values=%s",
88 Arrays.toString(this.values));
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
StructArrayTest.java 27 int[] values = {0, 1, 2, 3, 4}; local
28 S.set_i(0, values, true);
  /development/samples/devbytes/animation/ListViewExpandingCells/src/com/example/android/expandingcells/
ExpandingCells.java 48 ExpandableListItem[] values = new ExpandableListItem[] { local
60 ExpandableListItem obj = values[i % values.length];
  /external/annotation-tools/asmx/src/org/objectweb/asm/tree/analysis/
IntMap.java 33 * A fixed size map of integer values.
43 private int[] values; field in class:IntMap
48 this.values = new int[size];
61 return values[i];
71 values[i] = value;
  /external/annotation-tools/asmx/test/conform/annotations/
ValuesEnum.class 
  /external/autotest/cli/
label_unittest.py 15 values = [{u'id': 180, # Valid label variable in class:label_list_unittest
49 rpcs=[('get_labels', {}, True, self.values)],
56 rpcs=[('get_labels', {}, True, self.values)],
63 rpcs=[('get_labels', {}, True, self.values)],
70 rpcs=[('get_labels', {}, True, self.values)],
78 rpcs=[('get_labels', {}, True, self.values)],
shard_unittest.py 14 values = [{'hostname': u'shard1', u'id': 1, 'labels': ['board:lumpy']}, variable in class:shard_list_unittest
22 rpcs=[('get_shards', {}, True, self.values)],
test_unittest.py 17 values = [{u'description': u'unknown', variable in class:test_list_unittest
57 True, self.values)],
66 True, self.values)],
88 filtered = [val for val in self.values if val['name'] in ['test3']]
99 filtered = [val for val in self.values
111 filtered = [val for val in self.values
125 True, self.values)],
135 True, self.values)],
144 True, self.values)],
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
RDN.java 18 private ASN1Set values; field in class:RDN
20 private RDN(ASN1Set values)
22 this.values = values;
52 this.values = new DERSet(new DERSequence(v));
57 this.values = new DERSet(attrTAndV);
67 this.values = new DERSet(aAndVs);
72 return this.values.size() > 1;
82 return this.values.size();
87 if (this.values.size() == 0
    [all...]
  /external/clang/test/Analysis/
region-store.c 27 int values[length]; local
28 values[i] = 4;
29 return values[0]; // no-warning
43 void testConstraintOnRegionOffset(int *values, int length, int i){
44 if (values[1] == 4) {
45 values[i] = 5;
46 clang_analyzer_eval(values[1] == 4);// expected-warning {{UNKNOWN}}
50 int initArray(int *values);
51 void testConstraintOnRegionOffsetStack(int *values, int length, int i) {
52 if (values[0] == 4)
    [all...]
  /external/clang/test/Modules/Inputs/
cxx-templates-c.h 17 MergeAnonUnionMember() { (void)values.t1; }
18 union { int t1; } values; member in struct:MergeAnonUnionMember
  /external/deqp/framework/delibs/decpp/
deSha1.hpp 62 // Utility functions for building hash from values.
63 // \note This is not same as serializing the values and computing hash from the data.
122 inline Sha1Stream& operator<< (Sha1Stream& stream, const std::vector<T>& values)
124 stream << (deUint64)values.size();
126 for (size_t ndx = 0; ndx < values.size(); ndx++)
127 stream << values[ndx]; local
  /external/eigen/unsupported/Eigen/CXX11/src/util/
EmulateArray.h 24 EIGEN_STRONG_INLINE T& operator[] (size_t index) { return values[index]; }
26 EIGEN_STRONG_INLINE const T& operator[] (size_t index) const { return values[index]; }
29 EIGEN_STRONG_INLINE T& front() { return values[0]; }
31 EIGEN_STRONG_INLINE const T& front() const { return values[0]; }
34 EIGEN_STRONG_INLINE T& back() { return values[n-1]; }
36 EIGEN_STRONG_INLINE const T& back() const { return values[n-1]; }
41 T values[n]; member in class:Eigen::array
48 values[0] = v;
53 values[0] = v1;
54 values[1] = v2
    [all...]
  /external/guava/guava/src/com/google/common/collect/
AbstractSortedSetMultimap.java 44 * values
66 * Returns a collection view of all values associated with a key. If no
73 * <p>Because a {@code SortedSetMultimap} has unique sorted values for a given
82 * Removes all values associated with a given key. The returned collection is
85 * <p>Because a {@code SortedSetMultimap} has unique sorted values for a given
94 * Stores a collection of values with the same key, replacing any existing
95 * values for that key. The returned collection is immutable.
97 * <p>Because a {@code SortedSetMultimap} has unique sorted values for a given
101 * <p>Any duplicates in {@code values} will be stored in the multimap once.
104 @Nullable K key, Iterable<? extends V> values) {
132 @Override public Collection<V> values() { method in class:AbstractSortedSetMultimap
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
SingletonImmutableBiMap.java 31 // GWT compiler to infer the keys and values of the map that needs to be
66 public ImmutableSet<V> values() { method in class:SingletonImmutableBiMap
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestMapEntrySetGenerator.java 26 * Creates map entries using sample keys and sample values.
34 private final SampleElements<V> values; field in class:TestMapEntrySetGenerator
37 SampleElements<K> keys, SampleElements<V> values) {
39 this.values = values;
44 return SampleElements.mapEntries(keys, values);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
ListMultimapPutAllTester.java 37 List<V> values = Arrays.asList( local
47 assertTrue(multimap().putAll(k, values));
48 expectedValues.addAll(values);
ListMultimapReplaceValuesTester.java 37 List<V> values = Arrays.asList( local
44 multimap().replaceValues(k, values);
45 assertGet(k, values);

Completed in 1585 milliseconds

1 2 3 4 5 6 78 91011>>