HomeSort by relevance Sort by last modified time
    Searched refs:values (Results 51 - 75 of 2084) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/skia/src/animator/
SkAnimateProperties.h 26 SK_PROPERTY(values)
  /external/webkit/Source/WebCore/svg/properties/
SVGAnimatedTransformListPropertyTearOff.h 49 static PassRefPtr<SVGAnimatedTransformListPropertyTearOff> create(SVGElement* contextElement, const QualifiedName& attributeName, SVGTransformList& values)
52 return adoptRef(new SVGAnimatedTransformListPropertyTearOff(contextElement, attributeName, values));
55 SVGAnimatedTransformListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, SVGTransformList& values)
56 : SVGAnimatedListPropertyTearOff<SVGTransformList>(contextElement, attributeName, values)
SVGTransformListPropertyTearOff.h 47 SVGTransformList& values = m_animatedProperty->values(); local
48 return SVGPropertyTearOff<SVGTransform>::create(values.createSVGTransformFromMatrix(matrix->propertyReference()));
56 SVGTransformList& values = m_animatedProperty->values();
58 ASSERT(values.size() == wrappers.size());
61 if (values.isEmpty())
65 RefPtr<SVGPropertyTearOff<SVGTransform> > wrapper = SVGPropertyTearOff<SVGTransform>::create(values.consolidate());
68 ASSERT(values.size() == wrappers.size());
  /frameworks/base/core/java/android/content/
Entity.java 37 public Entity(ContentValues values) {
38 mValues = values;
50 public void addSubValue(Uri uri, ContentValues values) {
51 mSubValues.add(new Entity.NamedContentValues(uri, values));
56 public final ContentValues values; field in class:Entity.NamedContentValues
58 public NamedContentValues(Uri uri, ContentValues values) {
60 this.values = values;
69 sb.append("\n -> ").append(namedValue.values);
  /packages/apps/Settings/src/com/android/settings/vpn2/
VpnProfile.java 68 String[] values = new String(value, Charsets.UTF_8).split("\0", -1); local
70 if (values.length < 14) {
75 profile.name = values[0];
76 profile.type = Integer.valueOf(values[1]);
80 profile.server = values[2];
81 profile.username = values[3];
82 profile.password = values[4];
83 profile.dnsServers = values[5];
84 profile.searchDomains = values[6];
85 profile.routes = values[7]
    [all...]
  /external/valgrind/main/none/tests/amd64/
gen_insn_test.pl 241 my @values = split(/,/, $3);
260 foreach my $value (@values)
278 my @values = split(/,/, $3);
297 foreach my $value (@values)
311 my @values = split(/,/, $2);
313 $values[0] = oct($values[0]) if $values[0] =~ /^0/;
314 $values[1] = oct($values[1]) if $values[1] =~ /^0/
    [all...]
  /external/valgrind/main/none/tests/x86/
gen_insn_test.pl 218 my @values = split(/,/, $3);
237 foreach my $value (@values)
255 my @values = split(/,/, $3);
274 foreach my $value (@values)
288 my @values = split(/,/, $2);
290 $values[0] = oct($values[0]) if $values[0] =~ /^0/;
291 $values[1] = oct($values[1]) if $values[1] =~ /^0/
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForPhoto.java 55 ContentValues values) {
57 if (values.containsKey(SKIP_PROCESSING_KEY)) {
58 values.remove(SKIP_PROCESSING_KEY);
61 if (!preProcessPhoto(values)) {
66 long dataId = super.insert(db, txContext, rawContactId, values);
74 public boolean update(SQLiteDatabase db, TransactionContext txContext, ContentValues values,
78 if (values.containsKey(SKIP_PROCESSING_KEY)) {
79 values.remove(SKIP_PROCESSING_KEY);
82 if (!preProcessPhoto(values)) {
88 if (!super.update(db, txContext, values, c, callerIsSyncAdapter))
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
RecurrenceSetTest.java 107 ContentValues values = new ContentValues(); local
108 values.put(CalendarContract.Events.DTSTART, 0);
109 values.put(CalendarContract.Events.DURATION, "P3600S");
110 values.put(CalendarContract.Events.RRULE, RRULE_LESS_THAN_75_CHARS);
112 assertTrue(RecurrenceSet.populateComponent(values, component));
123 values = new ContentValues();
124 values.put(CalendarContract.Events.DTSTART, 0);
125 values.put(CalendarContract.Events.DURATION, "P3600S");
126 values.put(CalendarContract.Events.RRULE, RRULE_MORE_THAN_75_CHARS);
128 assertTrue(RecurrenceSet.populateComponent(values, component))
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/voicemail/
VoicemailStatusHelperImplTest.java 102 ContentValues values = new ContentValues(); local
106 values.put(NOTIFICATION_CHANNEL_STATE, NOTIFICATION_CHANNEL_STATE_NO_CONNECTION);
107 values.put(DATA_CHANNEL_STATE, DATA_CHANNEL_STATE_OK);
108 updateEntryForPackage(TEST_PACKAGES[1], values);
109 checkExpectedMessage(TEST_PACKAGES[1], values, STATUS_MSG_VOICEMAIL_NOT_AVAILABLE,
113 values.put(NOTIFICATION_CHANNEL_STATE, NOTIFICATION_CHANNEL_STATE_MESSAGE_WAITING);
114 values.put(DATA_CHANNEL_STATE, DATA_CHANNEL_STATE_OK);
115 updateEntryForPackage(TEST_PACKAGES[1], values);
116 checkNoMessages(TEST_PACKAGES[1], values);
121 values.put(NOTIFICATION_CHANNEL_STATE, NOTIFICATION_CHANNEL_STATE_OK)
227 ContentValues values = new ContentValues(); local
    [all...]
  /external/bluetooth/glib/gobject/
gvaluearray.c 36 * generic values
41 * object property that holds an array of values. A #GValueArray wraps
71 return value_array->values + index;
87 value_array->values = g_renew (GValue, value_array->values, value_array->n_prealloced);
90 memset (value_array->values + i, 0,
91 (value_array->n_prealloced - i) * sizeof (value_array->values[0]));
102 value_array->values = g_renew (GValue, value_array->values, value_array->n_prealloced);
109 * @n_prealloced: number of values to preallocate space fo
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEColorMatrix.cpp 38 FEColorMatrix::FEColorMatrix(Filter* filter, ColorMatrixType type, const Vector<float>& values)
41 , m_values(values)
45 PassRefPtr<FEColorMatrix> FEColorMatrix::create(Filter* filter, ColorMatrixType type, const Vector<float>& values)
47 return adoptRef(new FEColorMatrix(filter, type, values));
63 const Vector<float>& FEColorMatrix::values() const function in class:WebCore::FEColorMatrix
68 bool FEColorMatrix::setValues(const Vector<float> &values)
70 if (m_values == values)
72 m_values = values;
76 inline void matrix(double& red, double& green, double& blue, double& alpha, const Vector<float>& values)
78 double r = values[0] * red + values[1] * green + values[2] * blue + values[3] * alpha + values[4] * 255
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/detail/
ContactDetailFragmentTests.java 39 final ContentValues values = new ContentValues(); local
40 values.put(Im.MIMETYPE, Im.CONTENT_ITEM_TYPE);
41 values.put(Im.TYPE, Im.TYPE_HOME);
42 values.put(Im.PROTOCOL, Im.PROTOCOL_GOOGLE_TALK);
43 values.put(Im.DATA, TEST_ADDRESS);
46 ContactDetailFragment.buildImActions(mContext, entry, values);
55 final ContentValues values = new ContentValues(); local
56 values.put(Im.MIMETYPE, Im.CONTENT_ITEM_TYPE);
57 values.put(Im.TYPE, Im.TYPE_HOME);
58 values.put(Im.PROTOCOL, Im.PROTOCOL_GOOGLE_TALK)
73 final ContentValues values = new ContentValues(); local
93 final ContentValues values = new ContentValues(); local
116 final ContentValues values = new ContentValues(); local
    [all...]
  /external/proguard/src/proguard/evaluation/
Variables.java 27 * objects. Values are generalizations of all values that have been stored in
37 protected Value[] values; field in class:Variables
46 this.values = new Value[size];
56 // Create the values array.
59 // Copy the values.
69 // Is the values array large enough?
70 if (size > values.length)
73 values = new Value[size];
78 for (int index = 0; index < values.length; index++
    [all...]
  /packages/apps/Browser/tests/src/com/android/browser/tests/
BP2ProviderTests.java 48 ContentValues values = new ContentValues(); local
49 values.put(Images.URL, url);
53 values.put(Images.THUMBNAIL, os.toByteArray());
56 assertTrue(updateBookmark(Images.CONTENT_URI, values));
69 ContentValues values = new ContentValues(); local
70 values.put(BrowserContract.Bookmarks.TITLE, "New Folder");
71 values.put(BrowserContract.Bookmarks.IS_FOLDER, 1);
72 values.put(BrowserContract.Bookmarks.ACCOUNT_NAME, accountName);
73 values.put(BrowserContract.Bookmarks.ACCOUNT_TYPE, accountType);
74 Uri folderUri = insertBookmark(values);
    [all...]
  /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;
  /external/javassist/src/main/javassist/bytecode/annotation/
ArrayMemberValue.java 31 MemberValue[] values; field in class:ArrayMemberValue
39 values = null;
50 values = null;
56 if (values == null)
60 int size = values.length;
73 Array.set(a, i, values[i].getValue(cl, cp, method));
99 return values;
106 values = elements;
116 if (values != null) {
117 for (int i = 0; i < values.length; i++)
    [all...]
  /external/apache-harmony/annotation/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
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/libffi/testsuite/libffi.call/
negint.c 22 void *values[MAX_ARGS]; local
30 values[0] = &si;
32 values[1] = &ss;
34 values[2] = &sc;
46 ffi_call(&cif, FFI_FN(checking), &rint, values);
strlen_win32.c 20 void *values[MAX_ARGS]; local
24 values[0] = (void*) &s;
31 ffi_call(&cif, FFI_FN(my_stdcall_strlen), &rint, values);
35 ffi_call(&cif, FFI_FN(my_stdcall_strlen), &rint, values);
39 ffi_call(&cif, FFI_FN(my_stdcall_strlen), &rint, values);
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/
TimeStampReq.java 171 Object[] values = (Object[]) in.content;
173 String objID = (values[2] == null) ? null : ObjectIdentifier
174 .toString((int[]) values[2]);
175 BigInteger nonce = (values[3] == null) ? null : new BigInteger(
176 (byte[]) values[3]);
178 if (values[5] == null) {
180 ASN1Integer.toIntValue(values[0]),
181 (MessageImprint) values[1],
184 (Boolean) values[4],
190 ASN1Integer.toIntValue(values[0])
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
RetentionPolicyTest.java 39 RetentionPolicy[] values = RetentionPolicy.values(); local
40 assertTrue(values.length > 1);
41 Arrays.sort(values);
42 assertTrue(Arrays.binarySearch(values, RetentionPolicy.RUNTIME) >= 0);
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
EntityDiff.java 44 * keyed using {@link BaseColumns#_ID} values.
51 ContentValues values; local
54 // Before doesn't exist, so insert "after" values
62 builder.withValues(child.values);
70 // After doesn't exist, so delete "before" values
73 builder.withSelection(getSelectIdClause(child.values), null);
82 // Somewhere between, so update any changed values
83 values = after.getEntityValues();
84 if (!before.getEntityValues().equals(values)) {
85 // Top-level values changed, so updat
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
ActivityManagerProcessErrorStateInfoTest.java 79 ActivityManager.ProcessErrorStateInfo values = local
82 assertEquals(condition, values.condition);
83 assertEquals(processName, values.processName);
84 assertEquals(pid, values.pid);
85 assertEquals(uid, values.uid);
86 assertEquals(tag, values.tag);
88 assertEquals(shortMsg, values.shortMsg);
89 assertEquals(longMsg, values.longMsg);
90 assertNull(values.crashData); // Deprecated field: always null
119 ActivityManager.ProcessErrorStateInfo values = new ActivityManager.ProcessErrorStateInfo() local
    [all...]
ActivityManagerRecentTaskInfoTest.java 72 ActivityManager.RecentTaskInfo values = ActivityManager.RecentTaskInfo.CREATOR local
74 assertEquals(id, values.id);
75 assertEquals(null, values.baseIntent);
76 assertEquals(null, values.origActivity);
87 values = ActivityManager.RecentTaskInfo.CREATOR
89 assertEquals(-1, values.id);
90 assertNotNull(values.baseIntent);
91 assertEquals(Intent.ACTION_CALL, values.baseIntent.getAction());
92 assertEquals(origActivity, values.origActivity);
111 ActivityManager.RecentTaskInfo values = new ActivityManager.RecentTaskInfo() local
    [all...]

Completed in 558 milliseconds

1 23 4 5 6 7 8 91011>>