Searched refs:RepeatNullableString (Results 1 – 5 of 5) sorted by relevance
292 assertEquals(null, mInterface.RepeatNullableString(null)); in testRepeatNullableString()293 assertEquals("", mInterface.RepeatNullableString("")); in testRepeatNullableString()294 assertEquals("a", mInterface.RepeatNullableString("a")); in testRepeatNullableString()295 assertEquals("foo", mInterface.RepeatNullableString("foo")); in testRepeatNullableString()
190 public String RepeatNullableString(String in_value) { in RepeatNullableString() method in TestImpl
76 @nullable String RepeatNullableString(@nullable String value); in RepeatNullableString() method
476 TEST_P(NdkBinderTest_Aidl, RepeatNullableString) { in TEST_P() argument479 EXPECT_OK(iface->RepeatNullableString(std::nullopt, &res)); in TEST_P()482 EXPECT_OK(iface->RepeatNullableString("", &res)); in TEST_P()485 EXPECT_OK(iface->RepeatNullableString("a", &res)); in TEST_P()488 EXPECT_OK(iface->RepeatNullableString("say what?", &res)); in TEST_P()
207 ::ndk::ScopedAStatus RepeatNullableString( in RepeatNullableString() function