Home
last modified time | relevance | path

Searched refs:CompilationTarget (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/startop/view_compiler/
Dapk_layout_compiler.h26 enum class CompilationTarget { kJavaLanguage, kDex }; enum
28 void CompileApkLayouts(const std::string& filename, CompilationTarget target,
30 void CompileApkLayoutsFd(android::base::unique_fd fd, CompilationTarget target,
Dapk_layout_compiler.cc84 CompilationTarget target, std::ostream& target_out) { in CompileApkAssetsLayouts()
125 case CompilationTarget::kDex: { in CompileApkAssetsLayouts()
139 case CompilationTarget::kJavaLanguage: { in CompileApkAssetsLayouts()
153 if (target == CompilationTarget::kDex) { in CompileApkAssetsLayouts()
160 void CompileApkLayouts(const std::string& filename, CompilationTarget target, in CompileApkLayouts()
166 void CompileApkLayoutsFd(android::base::unique_fd fd, CompilationTarget target, in CompileApkLayoutsFd()
Dmain.cc121 const startop::CompilationTarget target = in main()
122 FLAGS_dex ? startop::CompilationTarget::kDex : startop::CompilationTarget::kJavaLanguage; in main()