HomeSort by relevance Sort by last modified time
    Searched defs:equalTo (Results 1 - 25 of 133) sorted by null

1 2 3 4 5 6

  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableSVGLength.cpp 43 bool AnimatableSVGLength::equalTo(const AnimatableValue* value) const
AnimatableShadow.cpp 42 bool AnimatableShadow::equalTo(const AnimatableValue* value) const
AnimatableLengthBox.cpp 46 bool AnimatableLengthBox::equalTo(const AnimatableValue* value) const
AnimatableLengthPoint.cpp 44 bool AnimatableLengthPoint::equalTo(const AnimatableValue* value) const
AnimatableLengthPoint3D.cpp 45 bool AnimatableLengthPoint3D::equalTo(const AnimatableValue* value) const
AnimatableLengthSize.cpp 44 bool AnimatableLengthSize::equalTo(const AnimatableValue* value) const
AnimatableTransform.cpp 47 bool AnimatableTransform::equalTo(const AnimatableValue* value) const
AnimatableDouble.cpp 54 bool AnimatableDouble::equalTo(const AnimatableValue* value) const
AnimatableImage.cpp 63 bool AnimatableImage::equalTo(const AnimatableValue* value) const
AnimatableLength.cpp 77 bool AnimatableLength::equalTo(const AnimatableValue* value) const
AnimatableLengthBoxAndBool.cpp 55 bool AnimatableLengthBoxAndBool::equalTo(const AnimatableValue* value) const
AnimatableSVGPaint.cpp 55 bool AnimatableSVGPaint::equalTo(const AnimatableValue* value) const
AnimatableVisibility.cpp 56 bool AnimatableVisibility::equalTo(const AnimatableValue* value) const
AnimatableClipPathOperation.cpp 61 bool AnimatableClipPathOperation::equalTo(const AnimatableValue* value) const
AnimatableColor.cpp 107 bool AnimatableColor::equalTo(const AnimatableValue* value) const
AnimatableShapeValue.cpp 62 bool AnimatableShapeValue::equalTo(const AnimatableValue* value) const
AnimatableFilterOperations.cpp 66 bool AnimatableFilterOperations::equalTo(const AnimatableValue* value) const
AnimatableRepeatable.cpp 82 bool AnimatableRepeatable::equalTo(const AnimatableValue* value) const
AnimatableUnknown.h 77 virtual bool equalTo(const AnimatableValue*) const OVERRIDE;
84 inline bool AnimatableUnknown::equalTo(const AnimatableValue* value) const
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
NetworkInfoTest.java 10 import static org.hamcrest.CoreMatchers.equalTo;
20 assertThat(networkInfo.getDetailedState(), equalTo(NetworkInfo.DetailedState.SCANNING));
AnimationUtilsTest.java 13 import static org.hamcrest.CoreMatchers.equalTo;
28 assertThat(Robolectric.shadowOf(anim).getLoadedFromResourceId(), equalTo(R.anim.fade_in));
CheckBoxTest.java 8 import static org.hamcrest.CoreMatchers.equalTo;
16 assertThat(checkBox.isChecked(), equalTo(false));
19 assertThat(checkBox.isChecked(), equalTo(true));
22 assertThat(checkBox.isChecked(), equalTo(false));
25 assertThat(checkBox.isChecked(), equalTo(true));
  /external/hamcrest/src/org/hamcrest/
CoreMatchers.java 10 * eg. assertThat(cheese, equalTo(smelly))
11 * vs assertThat(cheese, is(equalTo(smelly)))
18 * This is a shortcut to the frequently used is(equalTo(x)).
20 * eg. assertThat(cheese, is(equalTo(smelly)))
45 * This is a shortcut to the frequently used not(equalTo(x)).
47 * eg. assertThat(cheese, is(not(equalTo(smelly))))
58 public static <T> org.hamcrest.Matcher<T> equalTo(T operand) {
59 return org.hamcrest.core.IsEqual.equalTo(operand);
  /external/hamcrest/src/org/hamcrest/core/
IsEqual.java 67 public static <T> Matcher<T> equalTo(T operand) {
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/res/
ResourceExtractorTest.java 8 import static org.hamcrest.CoreMatchers.equalTo;
23 assertThat(resourceExtractor.getLocalResourceId("id/textStyle"), equalTo(R.id.textStyle));
29 assertThat(resourceExtractor.getResourceId("android:id/text1"), equalTo(android.R.id.text1));
34 assertThat(resourceExtractor.getLocalResourceId("@null"), equalTo(0));

Completed in 315 milliseconds

1 2 3 4 5 6