• Home
  • Raw
  • Download

Lines Matching refs:push_back

120   options.push_back(std::make_pair(boot_class_path_string, nullptr));  in SetUp()
121 options.push_back(std::make_pair(boot_class_path_locations_string, nullptr)); in SetUp()
122 options.push_back(std::make_pair("-Xcheck:jni", nullptr)); in SetUp()
123 options.push_back(std::make_pair(min_heap_string, nullptr)); in SetUp()
124 options.push_back(std::make_pair(max_heap_string, nullptr)); in SetUp()
125 options.push_back(std::make_pair("-XX:SlowDebug=true", nullptr)); in SetUp()
135 options.push_back(std::make_pair("compilercallbacks", callbacks_.get())); in SetUp()
229 ret.push_back(cp_dex_file); in GetDexFiles()
252 class_path.push_back(dex_file.get()); in LoadMultiDex()
253 loaded_dex_files_.push_back(std::move(dex_file)); in LoadMultiDex()
256 class_path.push_back(dex_file.get()); in LoadMultiDex()
257 loaded_dex_files_.push_back(std::move(dex_file)); in LoadMultiDex()
281 class_path.push_back(dex_file.get()); in LoadDexInWellKnownClassLoader()
282 loaded_dex_files_.push_back(std::move(dex_file)); in LoadDexInWellKnownClassLoader()
416 argv->push_back(runtime->GetCompilerExecutable()); in StartDex2OatCommandLine()
418 argv->push_back("--debuggable"); in StartDex2OatCommandLine()
422 argv->push_back("--runtime-arg"); in StartDex2OatCommandLine()
423 argv->push_back(GetClassPathOption("-Xbootclasspath:", GetLibCoreDexFileNames())); in StartDex2OatCommandLine()
424 argv->push_back("--runtime-arg"); in StartDex2OatCommandLine()
425 argv->push_back(GetClassPathOption("-Xbootclasspath-locations:", GetLibCoreDexLocations())); in StartDex2OatCommandLine()
427 argv->push_back("--boot-image=" + image_location); in StartDex2OatCommandLine()