Searched refs:RepeatString (Results 1 – 7 of 7) sorted by relevance
75 String RepeatString(String value); in RepeatString() method
60 String RepeatString(String value); in RepeatString() method
448 TEST_P(NdkBinderTest_Aidl, RepeatString) { in TEST_P() argument451 EXPECT_OK(iface->RepeatString("", &res)); in TEST_P()454 EXPECT_OK(iface->RepeatString("a", &res)); in TEST_P()457 EXPECT_OK(iface->RepeatString("say what?", &res)); in TEST_P()
201 ::ndk::ScopedAStatus RepeatString(const std::string& in_value, in RepeatString() function
292 assertEquals("", mInterface.RepeatString("")); in testRepeatString()293 assertEquals("a", mInterface.RepeatString("a")); in testRepeatString()294 assertEquals("foo", mInterface.RepeatString("foo")); in testRepeatString()
195 public String RepeatString(String in_value) { in RepeatString() method in TestImpl