Home
last modified time | relevance | path

Searched refs:full_bcp (Results 1 – 2 of 2) sorted by relevance

/art/dex2oat/
Ddex2oat_image_test.cc273 ArrayRef<const std::string> full_bcp(libcore_dex_files); in TEST_F() local
274 size_t total_dex_files = full_bcp.size(); in TEST_F()
278 ASSERT_NE(std::string::npos, full_bcp[0].find("core-oj")); in TEST_F()
279 ASSERT_NE(std::string::npos, full_bcp[1].find("core-libart")); in TEST_F()
280 ArrayRef<const std::string> head_dex_files = full_bcp.SubArray(/*pos=*/ 0u, /*length=*/ 2u); in TEST_F()
282 ASSERT_NE(std::string::npos, full_bcp[full_bcp.size() - 1u].find("conscrypt")); in TEST_F()
284 full_bcp.SubArray(/*pos=*/ 0u, /*length=*/ total_dex_files - 1u); in TEST_F()
288 full_bcp.SubArray(/*pos=*/ total_dex_files - 1u, /*length=*/ 1u); in TEST_F()
351 std::string full_bcp_string = android::base::Join(full_bcp, ':'); in TEST_F()
375 ArrayRef<const std::string> single_dex_files = full_bcp.SubArray(/*pos=*/ head_dex_files.size()); in TEST_F()
[all …]
Ddex2oat.cc1840 std::string full_bcp = android::base::Join(runtime->GetBootClassPathLocations(), ':'); in Setup() local
1842 if (!android::base::EndsWith(full_bcp, extension_part)) { in Setup()
1843 LOG(ERROR) << "Full boot class path does not end with extension parts, full: " << full_bcp in Setup()
1847 std::string bcp_dependency = full_bcp.substr(0u, full_bcp.size() - extension_part.size()); in Setup()