HomeSort by relevance Sort by last modified time
    Searched refs:values (Results 151 - 175 of 1385) sorted by null

1 2 3 4 5 67 8 91011>>

  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
SQLiteContentProvider.java 59 protected abstract Uri insertInTransaction(Uri uri, ContentValues values);
64 protected abstract int updateInTransaction(Uri uri, ContentValues values, String selection,
83 public Uri insert(Uri uri, ContentValues values) {
90 result = insertInTransaction(uri, values);
101 result = insertInTransaction(uri, values);
110 public int bulkInsert(Uri uri, ContentValues[] values) {
111 int numValues = values.length;
116 Uri result = insertInTransaction(uri, values[i]);
132 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
139 count = updateInTransaction(uri, values, selection, selectionArgs)
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
SQLiteContentProvider.java 64 protected abstract Uri insertInTransaction(Uri uri, ContentValues values);
69 protected abstract int updateInTransaction(Uri uri, ContentValues values, String selection,
88 public Uri insert(Uri uri, ContentValues values) {
95 result = insertInTransaction(uri, values);
106 result = insertInTransaction(uri, values);
115 public int bulkInsert(Uri uri, ContentValues[] values) {
116 int numValues = values.length;
121 Uri result = insertInTransaction(uri, values[i]);
137 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
144 count = updateInTransaction(uri, values, selection, selectionArgs)
    [all...]
  /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...]
  /frameworks/base/core/java/android/webkit/
GeolocationPermissions.java 106 Map values = (Map) msg.obj;
107 Set<String> origins = (Set<String>) values.get(ORIGINS);
108 ValueCallback<Set<String> > callback = (ValueCallback<Set<String> >) values.get(CALLBACK);
112 Map values = (Map) msg.obj;
113 Boolean allowed = (Boolean) values.get(ALLOWED);
114 ValueCallback<Boolean> callback = (ValueCallback<Boolean>) values.get(CALLBACK);
137 Map values = new HashMap<String, Object>();
138 values.put(CALLBACK, callback);
139 values.put(ORIGINS, origins);
140 postUIMessage(Message.obtain(null, RETURN_ORIGINS, values));
237 Map values = new HashMap<String, Object>(); local
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Matrix.java 86 /** Returns true iff obj is a Matrix and its values equal our values.
135 * Set the matrix to rotate by the specified sine and cosine values, with a
143 /** Set the matrix to rotate by the specified sine and cosine values. */
330 // the native values must match those in SkMatrix.h
338 * Set the matrix to the scale and translate values that map the source
370 * order [x0, y0, x1, y1, ...], where each "point" is 2 float values.
373 * @param srcIndex Index of the first pair of src values
375 * @param dstIndex Index of the first pair of dst values
521 /** Copy 9 values from the matrix into the array
562 float[] values = new float[9]; local
578 float[] values = new float[9]; local
    [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadProvider.java 292 ContentValues values = new ContentValues(); local
293 values.put(Downloads.Impl.COLUMN_CURRENT_BYTES, 0);
294 fillNullValuesForColumn(db, values);
295 values.put(Downloads.Impl.COLUMN_TOTAL_BYTES, -1);
296 fillNullValuesForColumn(db, values);
297 values.put(Downloads.Impl.COLUMN_TITLE, "");
298 fillNullValuesForColumn(db, values);
299 values.put(Downloads.Impl.COLUMN_DESCRIPTION, "");
300 fillNullValuesForColumn(db, values);
303 private void fillNullValuesForColumn(SQLiteDatabase db, ContentValues values) {
313 ContentValues values = new ContentValues(); local
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
AbstractMapTest.java 155 * @tests java.util.AbstractMap#values()
160 method = "values",
165 assertSame("HashMap(0)", map1.values(), map1.values());
168 assertSame("HashMap(10)", map2.values(), map2.values());
171 assertSame("EMPTY_MAP", map3.values(), map3.values());
174 assertSame("IdentityHashMap", map4.values(), map4.values());
232 Vector values = new Vector(); field in class:AbstractMapTest.AMT
    [all...]
  /frameworks/base/core/java/android/database/
DatabaseUtils.java 260 * Concatenates two SQL WHERE clauses, handling empty or null values.
456 * @param values The {@link ContentValues} to put the value into, with the field as the key
459 ContentValues values) {
460 cursorStringToContentValues(cursor, field, values, field);
481 * @param values The {@link ContentValues} to put the value into, with the field as the key
485 ContentValues values, String key) {
486 values.put(key, cursor.getString(cursor.getColumnIndexOrThrow(field)));
494 * @param values The {@link ContentValues} to put the value into, with the field as the key
496 public static void cursorIntToContentValues(Cursor cursor, String field, ContentValues values) {
497 cursorIntToContentValues(cursor, field, values, field)
    [all...]
  /cts/tools/dex-tools/src/dex/reader/
DexEncodedAnnotationImpl.java 31 private List<DexAnnotationAttribute> values; field in class:DexEncodedAnnotationImpl
52 values = new ArrayList<DexAnnotationAttribute>(size);
54 values.add(new DexAnnotationAttributeImpl(buffer, annotation,
64 return values;
  /dalvik/vm/mterp/x86/
stub.S 8 LOAD_PC_FROM_GLUE(%ecx) # retrieve updated values
9 LOAD_FP_FROM_GLUE(%ecx) # retrieve updated values
  /external/bluetooth/glib/tests/
gen-casefold-txt.pl 80 @values = map { hex ($_) } split /\s+/, $fields[$FOLDING_MAPPING];
81 printf ("%s\t%s\n", pack ("U", $code), pack ("U*", @values));
  /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();
  /external/libffi/testsuite/libffi.call/
struct5.c 27 void *values[MAX_ARGS]; local
46 values[0] = &ts5_arg1;
47 values[1] = &ts5_arg2;
57 ffi_call (&cif, FFI_FN(struct5), ts5_result, values);
  /external/nist-sip/java/javax/sip/
DialogState.java 14 return values()[state];
  /external/skia/src/svg/
SkSVGFeColorMatrix.cpp 25 SVG_ATTRIBUTE(values)
  /frameworks/base/core/java/android/pim/vcard/
VCardInterpreter.java 34 * "parameter(param) names and values", and "property values".
98 * @param values List of property values. The size of values would be 1 unless
101 void propertyValues(List<String> values);
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
FontSize.java 43 for (FontSize e : FontSize.values()) {
TextAlignment.java 45 for (TextAlignment e : TextAlignment.values()) {
  /libcore/luni/src/main/java/java/lang/
InheritableThreadLocal.java 56 Values values(Thread current) { method in class:InheritableThreadLocal
61 Values initializeValues(Thread current) {
62 return current.inheritableValues = new Values();
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
PolicyInformation.java 105 Object[] values = (Object[]) in.content;
107 .toString((int[]) values[0]));
110 protected void getValues(Object object, Object[] values) {
114 values[0] = ObjectIdentifier.toIntArray(pi.policyIdentifier);
  /packages/apps/Email/tests/src/com/android/email/mail/
FlagTests.java 34 for (Flag flag : Flag.values()) {
  /packages/apps/Mms/src/com/android/mms/ui/
ClassZeroActivity.java 185 ContentValues values = new ContentValues(); local
187 values.put(Inbox.ADDRESS, sms.getDisplayOriginatingAddress());
191 values.put(Inbox.DATE, new Long(System.currentTimeMillis()));
192 values.put(Inbox.PROTOCOL, sms.getProtocolIdentifier());
193 values.put(Inbox.READ, Integer.valueOf(mRead ? 1 : 0));
194 values.put(Inbox.SEEN, Integer.valueOf(mRead ? 1 : 0));
197 values.put(Inbox.SUBJECT, sms.getPseudoSubject());
199 values.put(Inbox.REPLY_PATH_PRESENT, sms.isReplyPathPresent() ? 1 : 0);
200 values.put(Inbox.SERVICE_CENTER, sms.getServiceCenterAddress());
201 return values;
205 ContentValues values = extractContentValues(sms); local
237 ContentValues values = extractContentValues(sms); local
    [all...]
  /packages/apps/Tag/src/com/android/vcard/
VCardInterpreter.java 34 * "parameter(param) names and values", and "property values".
98 * @param values List of property values. The size of values would be 1 unless
101 void propertyValues(List<String> values);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
CallerInfoIntegrationTest.java 40 ContentValues values = new ContentValues(); local
41 values.put(RawContacts.CUSTOM_RINGTONE, "ring");
42 values.put(RawContacts.SEND_TO_VOICEMAIL, 1);
44 Uri rawContactUri = mResolver.insert(RawContacts.CONTENT_URI, values);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
AttributeInfo.java 25 * possible flag or enum values, whether it's deprecated and its javadoc.
33 /** Values for enum. null for other types. */
35 /** Values for flag. null for other types. */
82 /** Returns the values for enums. null for other types. */
86 /** Returns the values for flags. null for other types. */
99 /** Sets the values for enums. null for other types. */
100 public AttributeInfo setEnumValues(String[] values) {
101 mEnumValues = values;
105 /** Sets the values for flags. null for other types. */
106 public AttributeInfo setFlagValues(String[] values) {
    [all...]

Completed in 956 milliseconds

1 2 3 4 5 67 8 91011>>