Home
last modified time | relevance | path

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

/art/dex2oat/
Ddex2oat_image_test.cc275 ArrayRef<const std::string> full_bcp(libcore_dex_files); in TEST_F() local
276 size_t total_dex_files = full_bcp.size(); in TEST_F()
281 ASSERT_NE(std::string::npos, full_bcp[0].find("core-oj")); in TEST_F()
282 ASSERT_NE(std::string::npos, full_bcp[1].find("core-libart")); in TEST_F()
283 ASSERT_NE(std::string::npos, full_bcp[2].find("core-icu4j")); in TEST_F()
284 ArrayRef<const std::string> head_dex_files = full_bcp.SubArray(/*pos=*/ 0u, /*length=*/ 3u); in TEST_F()
286 ASSERT_NE(std::string::npos, full_bcp[full_bcp.size() - 1u].find("conscrypt")); in TEST_F()
288 full_bcp.SubArray(/*pos=*/ 0u, /*length=*/ total_dex_files - 1u); in TEST_F()
292 full_bcp.SubArray(/*pos=*/ total_dex_files - 1u, /*length=*/ 1u); in TEST_F()
355 std::string full_bcp_string = android::base::Join(full_bcp, ':'); in TEST_F()
[all …]
Ddex2oat.cc1824 std::string full_bcp = android::base::Join(runtime->GetBootClassPathLocations(), ':'); in Setup() local
1826 if (!android::base::EndsWith(full_bcp, extension_part)) { in Setup()
1827 LOG(ERROR) << "Full boot class path does not end with extension parts, full: " << full_bcp in Setup()
1831 std::string bcp_dependency = full_bcp.substr(0u, full_bcp.size() - extension_part.size()); in Setup()