Searched refs:string_result (Results 1 – 4 of 4) sorted by relevance
238 ParseResult<std::string> string_result; in ParsingRead() local239 string_result.value.reserve(length); in ParsingRead()256 string_result.value += char_result.value; in ParsingRead()258 DEBUG_PREAD << "string preliminary is : " << string_result.value; in ParsingRead()261 DEBUG_PREAD << "parsed string to: " << string_result.value; in ParsingRead()262 string_result.next_token = stream; in ParsingRead()263 return string_result; in ParsingRead()
423 ObjPtr<mirror::String> string_result = down_cast<mirror::String*>(result.GetL()); in TEST_F() local424 EXPECT_EQ(string_arg->GetLength(), string_result->GetLength()); in TEST_F()426 if (string_arg->IsCompressed() && string_result->IsCompressed()) { in TEST_F()427 EXPECT_EQ(memcmp(string_arg->GetValueCompressed(), string_result->GetValueCompressed(), in TEST_F()429 } else if (!string_arg->IsCompressed() && !string_result->IsCompressed()) { in TEST_F()430 EXPECT_EQ(memcmp(string_arg->GetValue(), string_result->GetValue(), in TEST_F()435 if (string_arg->CharAt(i) != string_result->CharAt(i)) { in TEST_F()1022 ObjPtr<mirror::String> string_result = down_cast<mirror::String*>(result.GetL()); in TEST_F() local1023 ASSERT_TRUE(string_result != nullptr); in TEST_F()1025 std::string mod_utf = string_result->ToModifiedUtf8(); in TEST_F()
191 auto string_result = static_cast<jstring>(env->CallObjectMethod( in LoaderAssetsProvider() local193 ScopedUtfChars str(env, string_result); in LoaderAssetsProvider()
633 const std::string string_result = client->SendVector(ttv); in TEST_F() local634 EXPECT_EQ("abc123", string_result); in TEST_F()