Searched refs:IntFunction (Results 1 - 6 of 6) sorted by relevance

/external/libtextclassifier/tests/
H A Dfunctions.cc26 TC_DEFINE_CLASS_REGISTRY_NAME("int-function", functions::IntFunction);
H A Dregistry_test.cc51 std::unique_ptr<IntFunction> f3(IntFunction::Create("inc"));
60 EXPECT_EQ(IntFunction::Create("dec"), nullptr);
62 // Function and IntFunction use different registries.
63 EXPECT_EQ(IntFunction::Create("exp"), nullptr);
H A Dfunctions.h47 class IntFunction : public RegisterableClass<IntFunction> { class in namespace:libtextclassifier::nlp_core::functions
49 virtual ~IntFunction() {}
53 class Inc : public IntFunction {
59 class Dec : public IntFunction {
68 TC_DECLARE_CLASS_REGISTRY_NAME(functions::IntFunction);
/external/google-breakpad/src/testing/test/
H A Dgmock-matchers_test.cc3356 int IntFunction(int input) { return input == 42 ? 80 : 90; } function in namespace:testing::gmock_matchers_test
3359 Matcher<int> matcher = ResultOf(&IntFunction, Ge(85));
3363 matcher = ResultOf(&IntFunction, GreaterThan(85));
3371 Matcher<int> matcher = ResultOf(&IntFunction, Eq(80));
3419 // IntFunction() returns int but the inner matcher expects a signed char.
3420 Matcher<int> matcher = ResultOf(IntFunction, Matcher<signed char>(Ge(85)));
/external/googletest/googlemock/test/
H A Dgmock-matchers_test.cc3825 int IntFunction(int input) { return input == 42 ? 80 : 90; } function in namespace:testing::gmock_matchers_test
3828 Matcher<int> matcher = ResultOf(&IntFunction, Ge(85));
3832 matcher = ResultOf(&IntFunction, GreaterThan(85));
3840 Matcher<int> matcher = ResultOf(&IntFunction, Eq(80));
3888 // IntFunction() returns int but the inner matcher expects a signed char.
3889 Matcher<int> matcher = ResultOf(IntFunction, Matcher<signed char>(Ge(85)));
/external/v8/testing/gmock/test/
H A Dgmock-matchers_test.cc3816 int IntFunction(int input) { return input == 42 ? 80 : 90; } function in namespace:testing::gmock_matchers_test
3819 Matcher<int> matcher = ResultOf(&IntFunction, Ge(85));
3823 matcher = ResultOf(&IntFunction, GreaterThan(85));
3831 Matcher<int> matcher = ResultOf(&IntFunction, Eq(80));
3879 // IntFunction() returns int but the inner matcher expects a signed char.
3880 Matcher<int> matcher = ResultOf(IntFunction, Matcher<signed char>(Ge(85)));

Completed in 265 milliseconds