/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
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 424 ContentValues values = new ContentValues(); local [all...] |
/external/bluetooth/glib/gio/ |
gioenumtypes.c.template | 19 static const G@Type@Value values[] = { 30 g_@type@_register_static (g_intern_static_string ("@EnumName@"), values);
|
/external/chromium/chrome/browser/tabs/ |
pinned_tab_test_utils.h | 21 const std::vector<BrowserInit::LaunchWithProfile::Tab>& values);
|
/external/clang/test/CodeGenCXX/ |
variadic-templates.cpp | 15 int values[sizeof...(T)+1] = { T::value... }; local
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/ |
Function.java | 19 import com.google.clearsilver.jsilver.values.Value;
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/ |
NameFunction.java | 21 import com.google.clearsilver.jsilver.values.Value; 22 import static com.google.clearsilver.jsilver.values.Value.literalConstant; 23 import static com.google.clearsilver.jsilver.values.Value.literalValue; 24 import com.google.clearsilver.jsilver.values.VariableValue;
|
/external/webkit/Source/WebCore/svg/properties/ |
SVGAnimatedPathSegListPropertyTearOff.h | 57 static PassRefPtr<SVGAnimatedPathSegListPropertyTearOff> create(SVGElement* contextElement, const QualifiedName& attributeName, SVGPathSegList& values) 60 return adoptRef(new SVGAnimatedPathSegListPropertyTearOff(contextElement, attributeName, values)); 63 SVGAnimatedPathSegListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, SVGPathSegList& values) 64 : SVGAnimatedListPropertyTearOff<SVGPathSegList>(contextElement, attributeName, values)
|
/frameworks/base/keystore/java/android/security/ |
KeyStore.java | 73 ArrayList<byte[]> values = execute('g', key); local 74 return (values == null || values.isEmpty()) ? null : values.get(0); 109 ArrayList<byte[]> values = execute('s', prefix); local 110 return (values == null) ? null : values.toArray(new byte[values.size()][]); 114 byte[][] values = saw(getBytes(prefix)); 115 if (values == null) 193 ArrayList<byte[]> values = new ArrayList<byte[]>(); local [all...] |
/frameworks/base/media/jni/ |
android_media_Utils.h | 33 JNIEnv *env, jobjectArray keys, jobjectArray values,
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
CallLogInsertionHelper.java | 22 * Helper class to be used when inserting values in the call log. 25 /** Adds to the content values those key/value pairs which needs to added automatically. */ 26 public void addComputedValues(ContentValues values);
|
DataRowHandlerForStructuredName.java | 46 ContentValues values) { 47 fixStructuredNameComponents(values, values); 49 long dataId = super.insert(db, txContext, rawContactId, values); 51 String name = values.getAsString(StructuredName.DISPLAY_NAME); 52 Integer fullNameStyle = values.getAsInteger(StructuredName.FULL_NAME_STYLE); 57 insertNameLookupForPhoneticName(rawContactId, dataId, values); 64 public boolean update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, 69 final ContentValues augmented = getAugmentedValues(db, dataId, values); 74 fixStructuredNameComponents(augmented, values); [all...] |
/frameworks/opt/calendar/tests/src/com/android/calendarcommon/ |
RecurrenceSetTest.java | 113 ContentValues values = new ContentValues(); local 114 RecurrenceSet.populateContentValues(recurrenceComponent, values); 115 Log.d("KS", "values " + values); 117 assertEquals(rrule, values.get(android.provider.CalendarContract.Events.RRULE)); 118 assertEquals(rdate, values.get(android.provider.CalendarContract.Events.RDATE)); 119 assertEquals(exrule, values.get(android.provider.CalendarContract.Events.EXRULE)); 120 assertEquals(exdate, values.get(android.provider.CalendarContract.Events.EXDATE)); 121 assertEquals(dtstart, (long) values.getAsLong(CalendarContract.Events.DTSTART)); 122 assertEquals(tzid, values.get(android.provider.CalendarContract.Events.EVENT_TIMEZONE)) [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/functions/operators/ |
ExistsFunction.java | 20 import com.google.clearsilver.jsilver.values.Value; 21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
|
NotFunction.java | 20 import com.google.clearsilver.jsilver.values.Value; 21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
|
NumericFunction.java | 20 import com.google.clearsilver.jsilver.values.Value; 21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/string/ |
LengthFunction.java | 20 import com.google.clearsilver.jsilver.values.Value; 21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
|
/external/webkit/Source/WebCore/storage/chromium/ |
IDBKeyPathBackendImpl.cpp | 37 void IDBKeyPathBackendImpl::createIDBKeysFromSerializedValuesAndKeyPath(const Vector<RefPtr<SerializedScriptValue>, 0>& values, const String& keyPath, Vector<RefPtr<IDBKey>, 0>& keys) 39 PlatformBridge::createIDBKeysFromSerializedValuesAndKeyPath(values, keyPath, keys);
|
/libcore/luni/src/main/java/org/apache/harmony/security/pkcs10/ |
CertificationRequest.java | 96 Object[] values = (Object[]) in.content; 98 (CertificationRequestInfo) values[0], 99 (AlgorithmIdentifier) values[1], 100 ((BitString) values[2]).bytes, 104 protected void getValues(Object object, Object[] values) { 106 values[0] = certReq.info; 107 values[1] = certReq.algId; 108 values[2] = new BitString(certReq.signature, 0);
|
/libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
DistributionPoint.java | 117 Object[] values = (Object[]) in.content; 118 return new DistributionPoint((DistributionPointName) values[0], 119 (ReasonFlags) values[1], (GeneralNames) values[2]); 122 @Override protected void getValues(Object object, Object[] values) { 124 values[0] = dp.distributionPoint; 125 values[1] = dp.reasons; 126 values[2] = dp.cRLIssuer;
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
OldAndroidChecksumTest.java | 31 * Values computed experimentally, using C interfaces. 40 private void adler32Test(byte[] values, long expected) { 44 adler.update(values); 49 for (int i = 0; i < values.length; i++) { 50 adler.update(values[i]); 55 private void cRC32Test(byte[] values, long expected) { 59 crc.update(values); 64 for (int i = 0; i < values.length; i++) { 65 crc.update(values[i]);
|
/cts/tests/tests/provider/src/android/provider/cts/ |
MediaStore_Video_MediaTest.java | 70 ContentValues values = new ContentValues(); local 71 values.put(Media.ALBUM, "cts"); 72 values.put(Media.ARTIST, "cts team"); 73 values.put(Media.CATEGORY, "test"); 75 values.put(Media.DATE_TAKEN, dateTaken); 76 values.put(Media.DESCRIPTION, "This is a video"); 77 values.put(Media.DURATION, 8480); 78 values.put(Media.LANGUAGE, "en"); 79 values.put(Media.LATITUDE, 40.689060d); 80 values.put(Media.LONGITUDE, -74.044636d) [all...] |
/dalvik/vm/arch/generic/ |
Call.cpp | 73 void* values[kMaxArgs]; local 79 values[0] = &pEnv; 83 values[1] = &clazz; 86 values[1] = (void*) argv++; 93 * "types" array. Store the start address of the argument in "values". 98 values[dstArg++] = (void*) argv++; 111 ffi_call(&cif, FFI_FN(func), pReturn, values);
|
/external/oprofile/libutil++/ |
unique_storage.h | 3 * Unique storage of values 20 * Store values such that only one copy of the value 38 values.push_back(V()); 81 typename id_map::value_type val(value, id_value(values.size())); 85 values.push_back(value); 94 if (id.id < values.size()) 95 return values[id.id]; 103 /// the contained values 104 stored_values values; member in class:unique_storage
|
/frameworks/base/core/java/android/provider/ |
UserDictionary.java | 72 * The frequency column. A value between 1 and 255. Higher values imply higher frequency. 126 ContentValues values = new ContentValues(4); local 128 values.put(WORD, word); 129 values.put(FREQUENCY, frequency); 130 values.put(LOCALE, locale); 131 values.put(APP_ID, 0); // TODO: Get App UID 133 Uri result = resolver.insert(CONTENT_URI, values);
|