Searched refs:RepeatNullableString (Results 1 – 5 of 5) sorted by relevance
77 @nullable String RepeatNullableString(@nullable String value); in RepeatNullableString() method
294 assertEquals(null, mInterface.RepeatNullableString(null)); in testRepeatNullableString()295 assertEquals("", mInterface.RepeatNullableString("")); in testRepeatNullableString()296 assertEquals("a", mInterface.RepeatNullableString("a")); in testRepeatNullableString()297 assertEquals("foo", mInterface.RepeatNullableString("foo")); in testRepeatNullableString()
191 public String RepeatNullableString(String in_value) { in RepeatNullableString() method in TestImpl
479 TEST_P(NdkBinderTest_Aidl, RepeatNullableString) { in TEST_P() argument482 EXPECT_OK(iface->RepeatNullableString(std::nullopt, &res)); in TEST_P()485 EXPECT_OK(iface->RepeatNullableString("", &res)); in TEST_P()488 EXPECT_OK(iface->RepeatNullableString("a", &res)); in TEST_P()491 EXPECT_OK(iface->RepeatNullableString("say what?", &res)); in TEST_P()
207 ::ndk::ScopedAStatus RepeatNullableString( in RepeatNullableString() function