Home
last modified time | relevance | path

Searched refs:ClassPath (Results 1 – 6 of 6) sorted by relevance

/art/tools/hiddenapi/
Dhiddenapi.cc248 class ClassPath final { class
250 ClassPath(const std::vector<std::string>& dex_paths, bool ignore_empty) { in ClassPath() function in art::hiddenapi::ClassPath
441 Hierarchy(ClassPath& classpath, bool fragment, bool verbose) : classpath_(classpath) { in Hierarchy()
548 ClassPath& classpath_;
887 ClassPath boot_classpath({input_path}, /* ignore_empty= */ false); in EncodeAccessFlags()
1005 ClassPath boot_classpath(boot_dex_paths_, /* ignore_empty= */ false); in ListApi()
1014 ClassPath dependency_classpath(dependency_stub_dex_paths_, /* ignore_empty= */ false); in ListApi()
1026 ClassPath stub_classpath(android::base::Split(cp_entry.first, ":"), /*ignore_empty=*/true); in ListApi()
/art/runtime/
Dparsed_options_test.cc88 EXPECT_PARSED_EQ(class_path, Opt::ClassPath); in TEST_F()
Dparsed_options.cc91 .IntoKey(M::ClassPath) in MakeParser()
714 args.SetIfMissing(M::ClassPath, std::string(getenv("CLASSPATH"))); in DoParse()
Druntime_options.def47 RUNTIME_OPTIONS_KEY (std::string, ClassPath)
Druntime.cc1628 class_path_string_ = runtime_options.ReleaseOrDefault(Opt::ClassPath); in Init()
/art/cmdline/
Dcmdline_parser_test.cc232 EXPECT_SINGLE_PARSE_VALUE_STR("/hello/world", "-classpath /hello/world", M::ClassPath); in TEST_F()