Lines Matching refs:result
31 int result = GetJavaVM()->GetEnv(reinterpret_cast<void**>(&mEnv), JNI_VERSION_1_6); in SetUp() local
32 CHECK_EQ(JNI_OK, result); in SetUp()
43 std::unique_ptr<ScopedUtfChars> result; in TEST_F() local
47 result.reset(new ScopedUtfChars(std::move(str))); in TEST_F()
51 EXPECT_EQ(result->c_str(), std::string_view("foo")); in TEST_F()
58 std::unique_ptr<ScopedUtfChars> result; in TEST_F() local
62 result.reset(new ScopedUtfChars(std::move(str))); in TEST_F()
65 EXPECT_EQ(result->c_str(), std::string_view("foo")); in TEST_F()
96 std::unique_ptr<ScopedLocalRef<jstring>> result; in TEST_F() local
100 result.reset(new ScopedLocalRef<jstring>(std::move(j_str))); in TEST_F()
104 ScopedUtfChars str(mEnv, result->get()); in TEST_F()
120 std::unique_ptr<ScopedLocalRef<jstring>> result; in TEST_F() local
124 result.reset(new ScopedLocalRef<jstring>(std::move(j_str))); in TEST_F()
128 ScopedUtfChars str(mEnv, result->get()); in TEST_F()
136 std::unique_ptr<ScopedLocalRef<jstring>> result; in TEST_F() local
140 result.reset(new ScopedLocalRef<jstring>(std::move(j_str))); in TEST_F()
144 ScopedUtfChars str(mEnv, result->get()); in TEST_F()
151 std::unique_ptr<ScopedLocalRef<jstring>> result; in TEST_F() local
155 result.reset(new ScopedLocalRef<jstring>(std::move(j_str))); in TEST_F()
158 ScopedUtfChars str(mEnv, result->get()); in TEST_F()