HomeSort by relevance Sort by last modified time
    Searched refs:setValues (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /external/skia/tests/
GrMemoryPoolTest.cpp 24 virtual void setValues(int v) {
77 virtual void setValues(int v) {
79 this->INHERITED::setValues(v);
96 virtual void setValues(int v) {
98 this->INHERITED::setValues(v);
118 virtual void setValues(int v) {
120 this->INHERITED::setValues(v);
121 fB->setValues(v);
141 virtual void setValues(int v) {
145 this->INHERITED::setValues(v)
    [all...]
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/
VCardEntryTests.java 115 property.setValues("test1");
121 property.setValues("test2");
127 property.setValues("1");
208 property.setValues("family", "given", "middle", "prefix", "suffix");
221 property.setValues("1");
229 property.setValues("email");
237 property.setValues(null, null, "street");
246 property.setValues("organization", "depertment");
255 property.setValues("googletalk");
272 property.setValues("sipdata")
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AndroidTargetData.java 364 setValues("(uses-permission,android:name)", permissionValues); //$NON-NLS-1$
365 setValues("(application,android:permission)", permissionValues); //$NON-NLS-1$
366 setValues("(activity,android:permission)", permissionValues); //$NON-NLS-1$
367 setValues("(receiver,android:permission)", permissionValues); //$NON-NLS-1$
368 setValues("(service,android:permission)", permissionValues); //$NON-NLS-1$
369 setValues("(provider,android:permission)", permissionValues); //$NON-NLS-1$
375 setValues("(activity,action,android:name)", activityIntentActions); //$NON-NLS-1$
376 setValues("(receiver,action,android:name)", broadcastIntentActions); //$NON-NLS-1$
377 setValues("(service,action,android:name)", serviceIntentActions); //$NON-NLS-1$
378 setValues("(category,android:name)", intentCategoryValues); //$NON-NLS-1
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/ca/
PlatformCAAnimation.h 125 void setValues(const Vector<float>&);
126 void setValues(const Vector<WebCore::TransformationMatrix>&);
127 void setValues(const Vector<FloatPoint3D>&);
128 void setValues(const Vector<WebCore::Color>&);
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEColorMatrix.h 49 bool setValues(const Vector<float>&);
  /frameworks/base/tools/layoutlib/bridge/tests/src/android/graphics/
Matrix_DelegateTest.java 41 m1.setValues(new float[] { 1,0,0, 0,1,0, 0,0,1 });
  /packages/apps/Contacts/src/com/android/contacts/editor/
Editor.java 63 public void setValues(DataKind kind, ValuesDelta values, RawContactDelta state, boolean readOnly,
PhoneticNameEditorView.java 173 public void setValues(DataKind kind, ValuesDelta entry, RawContactDelta state, boolean readOnly,
178 super.setValues(kind, entry, state, readOnly, vig);
StructuredNameEditorView.java 66 public void setValues(DataKind kind, ValuesDelta entry, RawContactDelta state, boolean readOnly,
68 super.setValues(kind, entry, state, readOnly, vig);
  /packages/apps/Mms/src/org/w3c/dom/smil/
SMILAnimation.java 92 public void setValues(String values)
  /hardware/qcom/audio/legacy/alsa_sound/
ALSAControl.cpp 111 status_t ALSAControl::setext(const char *name, int count, char **setValues)
127 ret = mixer_ctl_set_value(ctl, count, setValues);
alsa_default.cpp     [all...]
  /frameworks/base/core/java/android/animation/
ObjectAnimator.java 81 // propertyName to be used later when setValues() is called if so.
103 // propertyName to be used later when setValues() is called if so.
310 anim.setValues(values);
320 setValues(PropertyValuesHolder.ofInt(mProperty, values));
322 setValues(PropertyValuesHolder.ofInt(mPropertyName, values));
335 setValues(PropertyValuesHolder.ofFloat(mProperty, values));
337 setValues(PropertyValuesHolder.ofFloat(mPropertyName, values));
350 setValues(PropertyValuesHolder.ofObject(mProperty, (TypeEvaluator) null, values));
352 setValues(PropertyValuesHolder.ofObject(mPropertyName,
ValueAnimator.java 295 anim.setValues(values);
342 setValues(PropertyValuesHolder.ofInt("", values));
370 setValues(PropertyValuesHolder.ofFloat("", values));
393 * primitive types specified in the other setValues() methods.</p>
402 setValues(PropertyValuesHolder.ofObject("", null, values));
419 public void setValues(PropertyValuesHolder... values) {
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
CanvasTest.java 160 m1.setValues(values1);
165 m2.setValues(values2);
189 m1.setValues(values1);
194 m2.setValues(values2);
217 m1.setValues(values1);
222 m2.setValues(values2);
244 m1.setValues(values1);
249 m2.setValues(values2);
276 m1.setValues(values1);
281 m2.setValues(values2)
    [all...]
MatrixTest.java 204 matrix.setValues(values);
258 matrix.setValues(values);
303 matrix.setValues(values);
468 mMatrix.setValues(values);
  /frameworks/opt/vcard/java/com/android/vcard/
VCardProperty.java 114 public void setValues(String... propertyValues) {
118 public void setValues(List<String> propertyValueList) {
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherAnimUtils.java 114 anim.setValues(values);
124 anim.setValues(values);
  /external/webkit/Source/WebCore/platform/graphics/ca/mac/
PlatformCAAnimationMac.mm 461 void PlatformCAAnimation::setValues(const Vector<float>& value)
469 [static_cast<CAKeyframeAnimation*>(m_animation.get()) setValues:array];
472 void PlatformCAAnimation::setValues(const Vector<WebCore::TransformationMatrix>& value)
482 [static_cast<CAKeyframeAnimation*>(m_animation.get()) setValues:array];
485 void PlatformCAAnimation::setValues(const Vector<FloatPoint3D>& value)
500 [static_cast<CAKeyframeAnimation*>(m_animation.get()) setValues:array];
503 void PlatformCAAnimation::setValues(const Vector<WebCore::Color>& value)
519 [static_cast<CAKeyframeAnimation*>(m_animation.get()) setValues:array];
528 [static_cast<CAKeyframeAnimation*>(m_animation.get()) setValues:[otherAnimation values]];
  /frameworks/base/core/java/android/preference/
MultiCheckPreference.java 125 setValues(null);
160 public void setValues(boolean[] values) {
294 setValues(myState.values);
MultiSelectListPreference.java 127 public void setValues(Set<String> values) {
203 setValues(values);
224 setValues(restoreValue ? getPersistedStringSet(mValues) : (Set<String>) defaultValue);
  /packages/apps/Nfc/src/com/android/nfc/
SendUi.java 388 mSlowSendAnimator.setValues(postX, postY);
394 mAlphaDownAnimator.setValues(alphaDown);
451 mScaleUpAnimator.setValues(scaleUpX, scaleUpY, scaleUpAlpha);
462 mFastSendAnimator.setValues(postX, postY, alpha);
467 mFadeInAnimator.setValues(fadeIn);
730 mAlphaUpAnimator.setValues(alphaUp);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasTransform.java 189 mScrollbar.setValues(selection, mScrollbar.getMinimum(), maximum, thumb, mScrollbar
  /development/samples/AppLimits/src/com/example/android/applimits/
CustomRestrictionsActivity.java 95 mMultiPref.setValues(set);
118 mMultiPref.setValues(set);
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
PlatformCAAnimationWin.cpp 424 void PlatformCAAnimation::setValues(const Vector<float>& value)
438 void PlatformCAAnimation::setValues(const Vector<WebCore::TransformationMatrix>& value)
452 void PlatformCAAnimation::setValues(const Vector<FloatPoint3D>& value)
467 void PlatformCAAnimation::setValues(const Vector<WebCore::Color>& value)

Completed in 1348 milliseconds

1 2 3 4