HomeSort by relevance Sort by last modified time
    Searched refs:GetProgram (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/chromium_org/win8/delegate_execute/
delegate_execute_util_unittest.cc 26 EXPECT_EQ(std::wstring(), cl.GetProgram().value());
32 EXPECT_EQ(std::wstring(), cl.GetProgram().value());
39 const base::FilePath this_exe(CommandLine::ForCurrentProcess()->GetProgram());
47 EXPECT_EQ(this_exe.value(), cl.GetProgram().value());
54 EXPECT_EQ(this_exe.value(), cl.GetProgram().value());
65 EXPECT_EQ(this_exe.value(), cl.GetProgram().value());
  /external/chromium/chrome/browser/first_run/
first_run_gtk.cc 27 CommandLine import_cmd(cmdline.GetProgram());
  /external/chromium/base/
command_line_unittest.cc 54 cl.GetProgram().value());
109 EXPECT_TRUE(cl.GetProgram().empty());
168 EXPECT_EQ(cl1.GetProgram().value(), cl2.GetProgram().value());
177 EXPECT_EQ(c1.GetProgram().value(), c2.GetProgram().value());
189 // Check that quotes are not returned from GetProgram().
191 EXPECT_EQ(kProgram.value(), cl.GetProgram().value());
195 CommandLine::StringType program(cl.GetProgram().value());
command_line.h 92 FilePath GetProgram() const;
command_line.cc 237 FilePath CommandLine::GetProgram() const {
395 DCHECK(!include_program || !other.GetProgram().empty());
406 DCHECK_EQ(include_program, !other.GetProgram().empty());
  /external/chromium_org/base/
command_line_unittest.cc 60 cl.GetProgram().value());
125 cl.GetProgram().value());
172 EXPECT_TRUE(cl_from_string.GetProgram().empty());
178 EXPECT_TRUE(cl_from_argv.GetProgram().empty());
314 EXPECT_EQ(cl1.GetProgram().value(), cl2.GetProgram().value());
323 EXPECT_EQ(c1.GetProgram().value(), c2.GetProgram().value());
336 EXPECT_EQ(kProgram.value(), cl_program.GetProgram().value());
341 // Check that quotes are not returned from GetProgram()
    [all...]
command_line.h 111 base::FilePath GetProgram() const;
command_line.cc 291 FilePath CommandLine::GetProgram() const {
406 SetProgram(other.GetProgram());
  /external/chromium_org/chrome/browser/extensions/api/messaging/
native_process_launcher_win.cc 88 if (!command_line.GetProgram().IsAbsolute()) {
143 << command_line.GetProgram().MaybeAsASCII();
154 << command_line.GetProgram().MaybeAsASCII();
  /external/chromium_org/remoting/host/
host_main.cc 194 Usage(command_line->GetProgram());
234 Usage(command_line->GetProgram());
243 Usage(command_line->GetProgram());
  /external/chromium_org/apps/
load_and_launch_browsertest.cc 38 CommandLine new_cmdline(cmdline.GetProgram());
75 CommandLine new_cmdline(cmdline.GetProgram());
  /external/chromium_org/chrome/test/mini_installer_test/
run_all_unittests.cc 53 command_line.GetProgram().value().c_str());
installer_test_util.cc 190 base::FilePath exe = browser.GetProgram();
261 uninstall_cmd.GetProgram().DirName().AppendASCII("chrome.7z").value();
281 if (!base::PathExists(command.GetProgram())) {
283 << command.GetProgram().MaybeAsASCII();
  /external/chromium_org/chrome/installer/test/
alternate_version_generator_main.cc 66 fwprintf(stderr, L"%s: %s", cmd_line.GetProgram().value().c_str(),
91 cmd_line.GetProgram().value().c_str());
  /external/chromium_org/chrome/test/base/
chrome_test_launcher.cc 70 CommandLine new_command_line(command_line->GetProgram());
  /external/chromium_org/chrome_frame/test/
policy_settings_unittest.cc 238 AdditionalLaunchParameters().GetProgram().empty());
256 EXPECT_NE(new_cmd_line.GetProgram(), additional_params.GetProgram());
  /external/chromium_org/net/tools/dump_cache/
dump_cache.cc 98 command_line.GetProgram().value().c_str());
  /external/chromium_org/content/browser/
power_save_blocker_x11.cc 209 CommandLine::ForCurrentProcess()->GetProgram().value());
237 CommandLine::ForCurrentProcess()->GetProgram().value());
  /external/chromium_org/chrome/installer/util/
installation_validator.cc 223 cmd_line.GetProgram().value())) {
227 << cmd_line.GetProgram().value();
272 ValidateSetupPath(ctx, cmd_line.GetProgram(), name, is_valid);
301 ValidateSetupPath(ctx, cmd_line.GetProgram(), name, is_valid);
327 ValidateSetupPath(ctx, cmd_line.GetProgram(), name, is_valid);
563 ValidateSetupPath(ctx, command.GetProgram(), ASCIIToUTF16("uninstaller"),
588 ValidateSetupPath(ctx, command.GetProgram(), name, is_valid);
product.cc 93 if (!::CreateProcess(cmd.GetProgram().value().c_str(),
  /external/chromium_org/chrome/browser/ui/webui/
version_handler.cc 31 CommandLine::ForCurrentProcess()->GetProgram());
  /external/chromium_org/gpu/command_buffer/service/
program_manager_unittest.cc 74 Program* program1 = manager_.GetProgram(kClient1Id);
80 EXPECT_TRUE(manager_.GetProgram(kClient2Id) == NULL);
90 Program* program1 = manager_.GetProgram(kClient1Id);
97 program1 = manager_.GetProgram(kClient1Id);
499 const Program* program = manager_.GetProgram(kClientProgramId);
517 const Program* program = manager_.GetProgram(kClientProgramId);
531 const Program* program = manager_.GetProgram(kClientProgramId);
539 const Program* program = manager_.GetProgram(kClientProgramId);
611 const Program* program = manager_.GetProgram(kClientProgramId);
647 const Program* program = manager_.GetProgram(kClientProgramId)
    [all...]
  /external/chromium_org/chrome/installer/setup/
setup_main.cc 102 command_line.GetProgram().DirName().Append(
655 original_state, installer_state, cmd_line.GetProgram(), product,
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenRewriteStream.cs 270 IList<RewriteOperation> rewrites = GetProgram(programName);
296 IList<RewriteOperation> rewrites = GetProgram(programName);
348 protected virtual IList<RewriteOperation> GetProgram(string name) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
TokenRewriteStream.cs 307 IList<RewriteOperation> rewrites = GetProgram( programName );
339 IList<RewriteOperation> rewrites = GetProgram( programName );
401 protected virtual IList<RewriteOperation> GetProgram( string name )

Completed in 5108 milliseconds

1 2 3