Home
last modified time | relevance | path

Searched refs:classpath (Results 1 – 13 of 13) sorted by relevance

/art/runtime/
Dclass_loader_context.cc107 std::string classpath = class_loader_spec.substr(type_str_size + 1, in ParseClassLoaderSpec() local
113 Split(classpath, kClasspathSeparator, &class_loader_chain_.back().classpath); in ParseClassLoaderSpec()
116 Split(classpath, kClasspathSeparator, &classpath_elements); in ParseClassLoaderSpec()
127 class_loader_chain_.back().classpath.push_back(dex_file_with_checksum[0]); in ParseClassLoaderSpec()
210 for (const std::string& cp_elem : info.classpath) { in OpenDexFiles()
266 info.classpath.clear(); in OpenDexFiles()
270 info.classpath.push_back(dex->GetLocation()); in OpenDexFiles()
289 size_t initial_size = info.classpath.size(); in RemoveLocationsFromClassPaths()
291 info.classpath.begin(), in RemoveLocationsFromClassPaths()
292 info.classpath.end(), in RemoveLocationsFromClassPaths()
[all …]
Dclass_loader_context_test.cc48 const std::string& classpath) { in VerifyClassLoaderPCL() argument
50 context, index, ClassLoaderContext::kPathClassLoader, classpath); in VerifyClassLoaderPCL()
55 const std::string& classpath) { in VerifyClassLoaderDLC() argument
57 context, index, ClassLoaderContext::kDelegateLastClassLoader, classpath); in VerifyClassLoaderDLC()
82 ASSERT_EQ(all_dex_files->size(), info.classpath.size()); in VerifyOpenDexFiles()
99 ASSERT_EQ(info.classpath[k], opened_dex_file->GetLocation()); in VerifyOpenDexFiles()
150 const std::string& classpath) { in VerifyClassLoaderInfo() argument
156 Split(classpath, ':', &expected_classpath); in VerifyClassLoaderInfo()
157 ASSERT_EQ(expected_classpath, info.classpath); in VerifyClassLoaderInfo()
Dcommon_runtime_test.cc769 std::string classpath = dex_files[0]->GetLocation(); in CreateClassPath() local
771 classpath += ":" + dex_files[i]->GetLocation(); in CreateClassPath()
773 return classpath; in CreateClassPath()
779 std::string classpath = dex_files[0]->GetLocation() + "*" + in CreateClassPathWithChecksums() local
782 classpath += ":" + dex_files[i]->GetLocation() + "*" + in CreateClassPathWithChecksums()
785 return classpath; in CreateClassPathWithChecksums()
Dclass_loader_context.h148 std::vector<std::string> classpath; member
/art/tools/bisection_search/
Dbisection_search.py359 def PrepareBaseCommand(args, classpath): argument
375 base_cmd += ['-cp', classpath, args.classname] + args.test_args
383 if not args.raw_cmd and (not args.classpath or not args.classname):
393 classpath = args.classpath
398 if classpath:
399 classpath = test_env.PushClasspath(classpath)
403 base_cmd = PrepareBaseCommand(args, classpath)
DREADME.md52 -cp CLASSPATH, --classpath CLASSPATH classpath
/art/test/etc/
Ddefault-build385 … ${JAVAC} ${JAVAC_ARGS} -implicit:none -classpath src-multidex -d classes `find src -name '*.java'`
390 …javac_with_bootclasspath ${JAVAC_ARGS} -implicit:none -classpath src-multidex -d classes `find src…
395 …${JAVAC} ${JAVAC_ARGS} -implicit:none -classpath src -d classes2 `find src-multidex -name '*.java'`
/art/tools/
Drun-jdwp-tests.sh183 --classpath "$test_jar" \
Dart299 # classpath) and other special characters when evaluated.
Dlibcore_failures.txt158 description: "Missing resource in classpath",
/art/tools/common/
Dcommon.py482 def PushClasspath(self, classpath): argument
493 paths = classpath.split(':')
/art/tools/jfuzz/
DREADME.md39 art -classpath classes.dex Test
/art/dex2oat/
Ddex2oat_test.cc1020 const char* classpath = oat_file.GetOatHeader().GetStoreValueByKey(OatHeader::kClassPathKey); in RunTest() local
1021 ASSERT_TRUE(classpath != nullptr); in RunTest()
1022 ASSERT_STREQ(expected_classpath_key, classpath); in RunTest()