Lines Matching refs:string

31   std::string GetDexoptAnalyzerCmd() {  in GetDexoptAnalyzerCmd()
32 std::string file_path = GetArtBinDir() + "/dexoptanalyzer"; in GetDexoptAnalyzerCmd()
40 int Analyze(const std::string& dex_file, in Analyze()
45 std::string dexoptanalyzer_cmd = GetDexoptAnalyzerCmd(); in Analyze()
46 std::vector<std::string> argv_str; in Analyze()
49 argv_str.push_back("--isa=" + std::string(GetInstructionSetString(kRuntimeISA))); in Analyze()
64 argv_str.push_back("--class-loader-context=" + std::string(class_loader_context)); in Analyze()
67 std::string error; in Analyze()
85 void Verify(const std::string& dex_file, in Verify()
117 std::string dex_location = GetScratchDir() + "/DexNoOat.jar"; in TEST_F()
129 std::string dex_location = GetScratchDir() + "/OatUpToDate.jar"; in TEST_F()
130 std::string odex_location = GetOdexDir() + "/OatUpToDate.odex"; in TEST_F()
143 std::string dex_location = GetScratchDir() + "/ProfileOatUpToDate.jar"; in TEST_F()
144 std::string odex_location = GetOdexDir() + "/ProfileOatUpToDate.odex"; in TEST_F()
158 std::string dex_location = GetScratchDir() + "/VerifyAndEmptyProfiles.jar"; in TEST_F()
159 std::string odex_location = GetOdexDir() + "/VerifyAndEmptyProfiles.odex"; in TEST_F()
186 std::string dex_location = GetScratchDir() + "/Downgrade.jar"; in TEST_F()
187 std::string odex_location = GetOdexDir() + "/Downgrade.odex"; in TEST_F()
199 std::string dex_location = GetScratchDir() + "/MultiDexOatUpToDate.jar"; in TEST_F()
200 std::string odex_location = GetOdexDir() + "/MultiDexOatUpToDate.odex"; in TEST_F()
210 std::string dex_location = GetScratchDir() + "/MultiDexSecondaryOutOfDate.jar"; in TEST_F()
211 std::string odex_location = GetOdexDir() + "/MultiDexSecondaryOutOfDate.odex"; in TEST_F()
227 std::string dex_location = GetScratchDir() + "/OatDexOutOfDate.jar"; in TEST_F()
228 std::string odex_location = GetOdexDir() + "/OatDexOutOfDate.odex"; in TEST_F()
242 std::string dex_location = GetScratchDir() + "/OatImageOutOfDate.jar"; in TEST_F()
243 std::string odex_location = GetOdexDir() + "/OatImageOutOfDate.odex"; in TEST_F()
257 std::string dex_location = GetScratchDir() + "/DexOdexNoOat.jar"; in TEST_F()
258 std::string odex_location = GetOdexDir() + "/DexOdexNoOat.odex"; in TEST_F()
270 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() + "/LongDexExtension.jarx"; in TEST_F()
304 std::string dex_location = "/xx"; in TEST_F()
312 std::string dex_location1 = GetScratchDir() + "/DexToAnalyze.jar"; in TEST_F()
313 std::string odex_location1 = GetOdexDir() + "/DexToAnalyze.odex"; in TEST_F()
314 std::string dex_location2 = GetScratchDir() + "/DexInContext.jar"; in TEST_F()
318 std::string class_loader_context = "PCL[" + dex_location2 + "]"; in TEST_F()
319 std::string class_loader_context_option = "--class-loader-context=PCL[" + dex_location2 + "]"; in TEST_F()