Searched refs:command_line (Results 51 - 75 of 915) sorted by last modified time

1234567891011>>

/external/chromium_org/tools/site_compare/commands/
H A Dmaskmaker.py17 import command_line namespace
93 raise command_line.ParseError("Browser filename must be an executable")
H A Dmeasure.py8 1. The command_line package from tools/site_compare
21 import command_line namespace
H A Dscrape.py8 1. The command_line package from tools/site_compare
21 import command_line namespace
H A Dtimeload.py18 import command_line namespace
/external/chromium_org/tools/site_compare/
H A Dsite_compare.py21 import command_line # command-line parsing namespace
163 cmdline = command_line.CommandLine()
/external/chromium_org/tools/site_compare/utils/
H A Dbrowser_iterate.py8 1. The command_line package from tools/site_compare
21 import command_line namespace
/external/chromium_org/tools/telemetry/
H A Dcloud_storage12 from telemetry.core import command_line namespace
62 class Ls(command_line.Command):
108 class Mv(command_line.Command):
143 class Rm(command_line.Command):
158 class Upload(command_line.Command):
191 class CloudStorageCommand(command_line.SubcommandCommand):
/external/chromium_org/tools/telemetry/telemetry/
H A Dbenchmark.py14 from telemetry.core import command_line namespace
35 class Benchmark(command_line.Command):
H A Dtest_runner.py20 from telemetry.core import command_line namespace
39 class Help(command_line.OptparseCommand):
64 class List(command_line.OptparseCommand):
106 class Run(command_line.OptparseCommand):
200 if not issubclass(cls, command_line.Command):
/external/chromium_org/tools/telemetry/telemetry/core/forwarders/
H A Dcros_forwarder.py34 command_line = ['-%s%i:%s:%i' % (self._forwarding_flag,
40 command_line = ['-%s%i:%s:%i' % (self._forwarding_flag,
47 self._cri.FormSSHCommandLine(['sleep', '999999999'], command_line),
/external/chromium_org/tools/telemetry/telemetry/page/
H A Dpage_filter.py8 from telemetry.core import command_line namespace
18 class PageFilter(command_line.ArgumentHandlerMixIn):
H A Dpage_test.py5 from telemetry.core import command_line namespace
26 class PageTest(command_line.Command):
/external/chromium_org/tools/telemetry/telemetry/unittest/
H A Drun_tests.py11 from telemetry.core import command_line namespace
114 class RunTestsCommand(command_line.OptparseCommand):
/external/chromium_org/tools/telemetry/telemetry/util/
H A Dfind_dependencies.py15 from telemetry.core import command_line namespace
226 class FindDependenciesCommand(command_line.OptparseCommand):
/external/chromium_org/tools/traceline/traceline/
H A Dmain.cc1227 std::string command_line; local
/external/chromium_org/tools/win/split_link/
H A Dsplit_link.cc56 std::wstring* command_line) {
60 command_line->append(argument);
62 command_line->push_back(L'"');
72 command_line->append(num_backslashes * 2, L'\\');
76 command_line->append(num_backslashes * 2 + 1, L'\\');
77 command_line->push_back(*it);
80 command_line->append(num_backslashes, L'\\');
81 command_line->push_back(*it);
84 command_line->push_back(L'"');
55 ArgvQuote(const std::wstring& argument, std::wstring* command_line) argument
/external/chromium_org/ui/aura/bench/
H A Dbench_main.cc11 #include "base/command_line.h"
164 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
165 do_draw_ = !command_line->HasSwitch("disable-draw");
167 std::string webgl_size = command_line->GetSwitchValueASCII("webgl-size");
337 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
338 bool force = command_line->HasSwitch("force-render-surface");
349 int frames = atoi(command_line->GetSwitchValueASCII("frames").c_str());
352 if (command_line->HasSwitch("bench-software-scroll")) {
/external/chromium_org/ui/base/touch/
H A Dtouch_enabled.cc6 #include "base/command_line.h"
15 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
17 command_line.HasSwitch(switches::kTouchEvents) ?
18 command_line.GetSwitchValueASCII(switches::kTouchEvents) :
/external/chromium_org/ui/compositor/
H A Dcompositor.cc11 #include "base/command_line.h"
93 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
103 !command_line->HasSwitch(switches::kDisableGpuVsync);
106 !command_line->HasSwitch(cc::switches::kUIDisablePartialSwap);
114 command_line->HasSwitch(cc::switches::kUIShowCompositedLayerBorders);
116 command_line->HasSwitch(cc::switches::kUIShowFPSCounter);
118 command_line->HasSwitch(cc::switches::kUIShowLayerAnimationBounds);
120 command_line->HasSwitch(switches::kUIShowPaintRects);
122 command_line->HasSwitch(cc::switches::kUIShowPropertyChangedRects);
124 command_line
[all...]
H A Dcompositor_switches.cc7 #include "base/command_line.h"
31 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
33 return command_line.HasSwitch(switches::kUIEnableImplSidePainting);
37 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
39 return command_line.HasSwitch(switches::kUIEnableZeroCopy);
/external/chromium_org/ui/compositor/test/
H A Dcontext_factories_for_test.cc7 #include "base/command_line.h"
27 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
28 if (command_line->HasSwitch(switches::kEnablePixelOutputInTests))
/external/chromium_org/ui/gfx/image/
H A Dimage_skia.cc11 #include "base/command_line.h"
321 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); local
322 return !command_line->HasSwitch(
/external/chromium_org/ui/gl/
H A Dgl_implementation_win.cc10 #include "base/command_line.h"
165 const CommandLine* command_line = CommandLine::ForCurrentProcess(); local
167 command_line->GetSwitchValueASCII(switches::kUseGL) == "swiftshader";
169 if (!command_line->HasSwitch(switches::kSwiftShaderPath))
172 command_line->GetSwitchValuePath(switches::kSwiftShaderPath);
H A Dgl_implementation_x11.cc7 #include "base/command_line.h"
68 const CommandLine* command_line = CommandLine::ForCurrentProcess(); local
70 if (command_line->HasSwitch(switches::kTestGLLib))
72 command_line->GetSwitchValueASCII(switches::kTestGLLib).c_str());
H A Dgpu_switching_manager.cc7 #include "base/command_line.h"
68 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
70 if (command_line.HasSwitch(switches::kSupportsDualGpus)) {
72 std::string flag_string = command_line.GetSwitchValueASCII(
86 if (flag && command_line.HasSwitch(switches::kUseGL) &&
87 command_line.GetSwitchValueASCII(switches::kUseGL) !=

Completed in 3949 milliseconds

1234567891011>>