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

1 2 3

  /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 339 setValues("(uses-permission,android:name)", permissionValues); //$NON-NLS-1$
340 setValues("(application,android:permission)", permissionValues); //$NON-NLS-1$
341 setValues("(activity,android:permission)", permissionValues); //$NON-NLS-1$
342 setValues("(receiver,android:permission)", permissionValues); //$NON-NLS-1$
343 setValues("(service,android:permission)", permissionValues); //$NON-NLS-1$
344 setValues("(provider,android:permission)", permissionValues); //$NON-NLS-1$
350 setValues("(activity,action,android:name)", activityIntentActions); //$NON-NLS-1$
351 setValues("(receiver,action,android:name)", broadcastIntentActions); //$NON-NLS-1$
352 setValues("(service,action,android:name)", serviceIntentActions); //$NON-NLS-1$
353 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 });
  /frameworks/base/core/java/android/animation/
ObjectAnimator.java 80 // propertyName to be used later when setValues() is called if so.
102 // propertyName to be used later when setValues() is called if so.
309 anim.setValues(values);
319 setValues(PropertyValuesHolder.ofInt(mProperty, values));
321 setValues(PropertyValuesHolder.ofInt(mPropertyName, values));
334 setValues(PropertyValuesHolder.ofFloat(mProperty, values));
336 setValues(PropertyValuesHolder.ofFloat(mPropertyName, values));
349 setValues(PropertyValuesHolder.ofObject(mProperty, (TypeEvaluator)null, values));
351 setValues(PropertyValuesHolder.ofObject(mPropertyName, (TypeEvaluator)null, values));
ValueAnimator.java 336 anim.setValues(values);
383 setValues(new PropertyValuesHolder[]{PropertyValuesHolder.ofInt("", values)});
411 setValues(new PropertyValuesHolder[]{PropertyValuesHolder.ofFloat("", values)});
434 * primitive types specified in the other setValues() methods.</p>
443 setValues(new PropertyValuesHolder[]{PropertyValuesHolder.ofObject("",
461 public void setValues(PropertyValuesHolder... values) {
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
Editor.java 63 public void setValues(DataKind kind, ValuesDelta values, EntityDelta state, boolean readOnly,
PhoneticNameEditorView.java 175 public void setValues(DataKind kind, ValuesDelta entry, EntityDelta state, boolean readOnly,
180 super.setValues(kind, entry, state, readOnly, vig);
StructuredNameEditorView.java 64 public void setValues(DataKind kind, ValuesDelta entry, EntityDelta state, boolean readOnly,
66 super.setValues(kind, entry, state, readOnly, vig);
RawContactEditorView.java 240 mName.setValues(
243 mPhoneticName.setValues(
249 getPhotoEditor().setValues(kind, primary, state, false, vig);
PhotoEditorView.java 90 public void setValues(DataKind kind, ValuesDelta values, EntityDelta state, boolean readOnly,
EventFieldEditorView.java 107 public void setValues(DataKind kind, ValuesDelta entry, EntityDelta state, boolean readOnly,
110 super.setValues(kind, entry, state, readOnly, vig);
TextFieldsEditorView.java 162 public void setValues(DataKind kind, ValuesDelta entry, EntityDelta state, boolean readOnly,
164 super.setValues(kind, entry, state, readOnly, vig);
  /packages/apps/Mms/src/org/w3c/dom/smil/
SMILAnimation.java 92 public void setValues(String values)
  /frameworks/opt/vcard/java/com/android/vcard/
VCardProperty.java 114 public void setValues(String... propertyValues) {
118 public void setValues(List<String> propertyValueList) {
  /cts/tests/tests/graphics/src/android/graphics/cts/
CanvasTest.java 204 m1.setValues(values1);
209 m2.setValues(values2);
245 m1.setValues(values1);
250 m2.setValues(values2);
273 m1.setValues(values1);
278 m2.setValues(values2);
300 m1.setValues(values1);
305 m2.setValues(values2);
344 m1.setValues(values1);
349 m2.setValues(values2)
    [all...]
MatrixTest.java 336 matrix.setValues(values);
430 matrix.setValues(values);
486 matrix.setValues(values);
698 method = "setValues",
713 mMatrix.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]];
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasTransform.java 160 mScrollbar.setValues(selection, mScrollbar.getMinimum(), maximum, thumb, mScrollbar
  /frameworks/base/core/java/android/preference/
MultiSelectListPreference.java 127 public void setValues(Set<String> values) {
202 setValues(values);
223 setValues(restoreValue ? getPersistedStringSet(mValues) : (Set<String>) defaultValue);
  /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)
  /external/webkit/Source/WebCore/svg/
SVGFEColorMatrixElement.cpp 78 return colorMatrix->setValues(values());
  /development/tools/emulator/opengl/host/libs/Translator/EGL/
MacNative.m 124 [ctx setValues:interval forParameter:NSOpenGLCPSwapInterval];
  /external/qemu/distrib/sdl-1.2.12/src/video/quartz/
SDL_QuartzGL.m 147 [ gl_context setValues: &value forParameter: NSOpenGLCPSwapInterval ];

Completed in 500 milliseconds

1 2 3