• Home
  • Raw
  • Download

Lines Matching refs:dex_location

117   std::string dex_location = GetScratchDir() + "/DexNoOat.jar";  in TEST_F()  local
118 Copy(GetDexSrc1(), dex_location); in TEST_F()
120 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
121 Verify(dex_location, CompilerFilter::kVerify); in TEST_F()
122 Verify(dex_location, CompilerFilter::kSpeedProfile); in TEST_F()
123 Verify(dex_location, CompilerFilter::kSpeed, in TEST_F()
129 std::string dex_location = GetScratchDir() + "/OatUpToDate.jar"; in TEST_F() local
131 Copy(GetDexSrc1(), dex_location); in TEST_F()
132 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kSpeed); in TEST_F()
134 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
135 Verify(dex_location, CompilerFilter::kVerify); in TEST_F()
136 Verify(dex_location, CompilerFilter::kEverything); in TEST_F()
137 Verify(dex_location, CompilerFilter::kSpeed, in TEST_F()
143 std::string dex_location = GetScratchDir() + "/ProfileOatUpToDate.jar"; in TEST_F() local
145 Copy(GetDexSrc1(), dex_location); in TEST_F()
146 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kSpeedProfile); in TEST_F()
148 Verify(dex_location, CompilerFilter::kSpeedProfile, in TEST_F()
150 Verify(dex_location, CompilerFilter::kVerify, ProfileAnalysisResult::kDontOptimizeSmallDelta); in TEST_F()
151 Verify(dex_location, CompilerFilter::kSpeedProfile, ProfileAnalysisResult::kOptimize); in TEST_F()
152 Verify(dex_location, CompilerFilter::kVerify, ProfileAnalysisResult::kOptimize); in TEST_F()
158 std::string dex_location = GetScratchDir() + "/VerifyAndEmptyProfiles.jar"; in TEST_F() local
160 Copy(GetDexSrc1(), dex_location); in TEST_F()
162 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kVerify); in TEST_F()
169 Analyze(dex_location, CompilerFilter::kSpeedProfile, in TEST_F()
175 Analyze(dex_location, CompilerFilter::kSpeedProfile, in TEST_F()
181 Analyze(dex_location, CompilerFilter::kSpeedProfile, in TEST_F()
186 std::string dex_location = GetScratchDir() + "/Downgrade.jar"; in TEST_F() local
188 Copy(GetDexSrc1(), dex_location); in TEST_F()
189 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kVerify); in TEST_F()
191 Verify(dex_location, CompilerFilter::kSpeedProfile, in TEST_F()
193 Verify(dex_location, CompilerFilter::kVerify, in TEST_F()
199 std::string dex_location = GetScratchDir() + "/MultiDexOatUpToDate.jar"; in TEST_F() local
202 Copy(GetMultiDexSrc1(), dex_location); in TEST_F()
203 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kSpeed); in TEST_F()
205 Verify(dex_location, CompilerFilter::kSpeed, ProfileAnalysisResult::kDontOptimizeSmallDelta); in TEST_F()
210 std::string dex_location = GetScratchDir() + "/MultiDexSecondaryOutOfDate.jar"; in TEST_F() local
214 Copy(GetMultiDexSrc1(), dex_location); in TEST_F()
215 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kSpeed); in TEST_F()
219 Copy(GetMultiDexSrc2(), dex_location); in TEST_F()
221 Verify(dex_location, CompilerFilter::kSpeed, ProfileAnalysisResult::kDontOptimizeSmallDelta); in TEST_F()
227 std::string dex_location = GetScratchDir() + "/OatDexOutOfDate.jar"; in TEST_F() local
232 Copy(GetDexSrc1(), dex_location); in TEST_F()
233 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kSpeed); in TEST_F()
234 Copy(GetDexSrc2(), dex_location); in TEST_F()
236 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
242 std::string dex_location = GetScratchDir() + "/OatImageOutOfDate.jar"; in TEST_F() local
245 Copy(GetDexSrc1(), dex_location); in TEST_F()
246 GenerateOatForTest(dex_location, in TEST_F()
251 Verify(dex_location, CompilerFilter::kVerify); in TEST_F()
252 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
257 std::string dex_location = GetScratchDir() + "/DexOdexNoOat.jar"; in TEST_F() local
260 Copy(GetDexSrc1(), dex_location); in TEST_F()
261 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kSpeed); in TEST_F()
263 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
264 Verify(dex_location, CompilerFilter::kEverything); in TEST_F()
270 std::string dex_location = GetScratchDir() + "/ResourceOnlyDex.jar"; in TEST_F() local
272 Copy(GetResourceOnlySrc1(), dex_location); in TEST_F()
274 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
275 Verify(dex_location, CompilerFilter::kVerify); in TEST_F()
280 std::string dex_location = GetScratchDir() + "/OdexOatOverlap.jar"; in TEST_F() local
284 Copy(GetDexSrc1(), dex_location); in TEST_F()
285 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kSpeed); in TEST_F()
291 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
296 std::string dex_location = GetScratchDir() + "/LongDexExtension.jarx"; in TEST_F() local
297 Copy(GetDexSrc1(), dex_location); in TEST_F()
299 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()
304 std::string dex_location = "/xx"; in TEST_F() local
306 Verify(dex_location, CompilerFilter::kSpeed); in TEST_F()