Lines Matching defs:args
295 template <typename Args = CmdlineArgs>
299 std::unique_ptr<Args> args = std::unique_ptr<Args>(CreateArguments());
300 args_ = args.get();
319 runtime.reset(CreateRuntime(args.get()));
341 virtual Args* CreateArguments() {
342 return new Args();
370 Args* args_ = nullptr;
373 Runtime* CreateRuntime(CmdlineArgs* args) {
374 CHECK(args != nullptr);
376 return StartRuntime(args->boot_image_location_, args->instruction_set_);