Home | History | Annotate | Download | only in test

Lines Matching refs:Eq

69 //      Eq
140 using testing::Eq;
484 // Tests the linkage of the Eq and the "bare value" matcher.
489 ON_CALL(mock, VoidFromString(Eq(p))).WillByDefault(Return());
607 Matcher<const FieldHelper&> m = Field(&FieldHelper::field_, Eq(0));
610 Matcher<const FieldHelper*> m2 = Field(&FieldHelper::field_, Eq(0));
618 Matcher<const FieldHelper&> m = Property(&FieldHelper::field, Eq(0));
621 Matcher<const FieldHelper*> m2 = Property(&FieldHelper::field, Eq(0));
627 Matcher<char*> m = ResultOf(&InvokeHelper::StaticIntFromString, Eq(1));
635 Matcher<int*> m = Pointee(Eq(1));
647 Matcher<int> m = AllOf(_, Eq(1));
653 Matcher<int> m = AnyOf(_, Eq(1));