Lines Matching refs:string

27   std::string GetDexoptAnalyzerCmd() {  in GetDexoptAnalyzerCmd()
28 std::string file_path = GetArtBinDir() + "/dexoptanalyzer"; in GetDexoptAnalyzerCmd()
36 int Analyze(const std::string& dex_file, in Analyze()
40 std::string dexoptanalyzer_cmd = GetDexoptAnalyzerCmd(); in Analyze()
41 std::vector<std::string> argv_str; in Analyze()
44 argv_str.push_back("--isa=" + std::string(GetInstructionSetString(kRuntimeISA))); in Analyze()
56 argv_str.push_back("--class-loader-context=" + std::string(class_loader_context)); in Analyze()
59 std::string error; in Analyze()
77 void Verify(const std::string& dex_file, in Verify()
102 std::string dex_location = GetScratchDir() + "/DexNoOat.jar"; in TEST_F()
114 std::string dex_location = GetScratchDir() + "/OatUpToDate.jar"; in TEST_F()
127 std::string dex_location = GetScratchDir() + "/ProfileOatUpToDate.jar"; in TEST_F()
138 std::string dex_location = GetScratchDir() + "/Downgrade.jar"; in TEST_F()
149 std::string dex_location = GetScratchDir() + "/MultiDexOatUpToDate.jar"; in TEST_F()
158 std::string dex_location = GetScratchDir() + "/MultiDexSecondaryOutOfDate.jar"; in TEST_F()
175 std::string dex_location = GetScratchDir() + "/OatDexOutOfDate.jar"; in TEST_F()
190 std::string dex_location = GetScratchDir() + "/OatImageOutOfDate.jar"; in TEST_F()
207 std::string dex_location = GetScratchDir() + "/OatVerifyAtRuntimeImageOutOfDate.jar"; in TEST_F()
220 std::string dex_location = GetScratchDir() + "/DexOdexNoOat.jar"; in TEST_F()
221 std::string odex_location = GetOdexDir() + "/DexOdexNoOat.odex"; in TEST_F()
233 std::string dex_location = GetScratchDir() + "/StrippedDexOdexNoOat.jar"; in TEST_F()
234 std::string odex_location = GetOdexDir() + "/StrippedDexOdexNoOat.odex"; in TEST_F()
247 std::string dex_location = GetScratchDir() + "/StrippedDexOdexOat.jar"; in TEST_F()
248 std::string odex_location = GetOdexDir() + "/StrippedDexOdexOat.odex"; in TEST_F()
269 std::string dex_location = GetScratchDir() + "/ResourceOnlyDex.jar"; in TEST_F()
280 std::string dex_location = GetScratchDir() + "/OdexOatOverlap.jar"; in TEST_F()
281 std::string odex_location = GetOdexDir() + "/OdexOatOverlap.odex"; in TEST_F()
282 std::string oat_location = GetOdexDir() + "/OdexOatOverlap.oat"; in TEST_F()
296 std::string dex_location = GetScratchDir() + "/DexVerifyAtRuntimeOdexNoOat.jar"; in TEST_F()
297 std::string odex_location = GetOdexDir() + "/DexVerifyAtRuntimeOdexNoOat.odex"; in TEST_F()
308 std::string dex_location = GetScratchDir() + "/LongDexExtension.jarx"; in TEST_F()
316 std::string dex_location = "/xx"; in TEST_F()
324 std::string dex_location1 = GetScratchDir() + "/DexToAnalyze.jar"; in TEST_F()
325 std::string odex_location1 = GetOdexDir() + "/DexToAnalyze.odex"; in TEST_F()
326 std::string dex_location2 = GetScratchDir() + "/DexInContext.jar"; in TEST_F()
330 std::string class_loader_context = "PCL[" + dex_location2 + "]"; in TEST_F()
331 std::string class_loader_context_option = "--class-loader-context=PCL[" + dex_location2 + "]"; in TEST_F()