HomeSort by relevance Sort by last modified time
    Searched full:extra_args (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/chromium_org/build/android/pylib/monkey/
test_options.py 16 'extra_args'])
test_runner.py 41 self._options.extra_args,
  /external/chromium_org/build/android/buildbot/
bb_run_bot.py 29 ['script', 'host_steps', 'extra_args', 'extra_gyp_defines', 'target_arch'])
31 TestConfig = collections.namedtuple('Tests', ['script', 'tests', 'extra_args'])
103 property_args + (bot_config.host_obj.extra_args or [])]
110 if test_obj.extra_args:
111 run_test_cmd.extend(test_obj.extra_args)
127 H = (lambda steps, extra_args=None, extra_gyp=None, target_arch=None :
128 HostConfig('build/android/buildbot/bb_host_steps.py', steps, extra_args,
130 T = (lambda tests, extra_args=None :
132 extra_args))
175 extra_args=['--build-targets=android_builder_chromium_webrtc']))
    [all...]
  /external/skia/tools/
test_pictures.py 84 extra_args = ''
87 extra_args += ' --mode %s' % ' '.join(options.mode)
90 extra_args += ' --device %s' % options.device
94 extra_args)
  /external/chromium_org/tools/git/
git-diff-ide.py 41 def PrintGitDiff(extra_args):
42 """Outputs git diff extra_args with file:line inserted into relevant lines."""
45 lines = GitShell('git diff %s' % ' '.join(extra_args))
  /external/libvpx/libvpx/tools/
all_builds.py 48 extra_args = argv[opt_end_index + 1:]
54 base_command = " ".join([BASE_COMMAND] + extra_args)
  /external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
pnacl_irt_shim.gyp 29 'extra_args': [
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
bisect_test_ordering.py 101 extra_args = ' --debug' if self.is_debug else ''
102 print 'run-webkit-tests%s --child-processes=1 --order=none %s' % (extra_args, " ".join(tests))
148 extra_args = ['--debug'] if self.is_debug else []
150 output = self.executive.popen([path_to_run_webkit_tests, '--child-processes', '1', '--order', 'none', '--no-retry', '--no-show-results', '--verbose'] + extra_args + tests, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
run_webkit_tests_integrationtest.py 61 def parse_args(extra_args=None, tests_included=False, new_results=False, print_nothing=True):
62 extra_args = extra_args or []
64 if not '--platform' in extra_args:
69 if not '--child-processes' in extra_args:
71 args.extend(extra_args)
81 def passing_run(extra_args=None, port_obj=None, tests_included=False, host=None, shared_port=True):
82 options, parsed_args = parse_args(extra_args, tests_included)
95 def logging_run(extra_args=None, port_obj=None, tests_included=False, host=None, new_results=False, shared_port=True):
96 options, parsed_args = parse_args(extra_args=extra_args
    [all...]
  /external/chromium_org/chrome/installer/util/
html_dialog_impl.cc 116 wchar_t* extra_args = NULL; local
118 callback->OnBeforeCreation(reinterpret_cast<void**>(&extra_args));
137 extra_args,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
shutil.py 480 def register_archive_format(name, function, extra_args=None, description=''):
484 used to create archives. If provided, extra_args is a sequence of
489 if extra_args is None:
490 extra_args = []
493 if not isinstance(extra_args, (tuple, list)):
494 raise TypeError('extra_args needs to be a sequence')
495 for element in extra_args:
497 raise TypeError('extra_args elements are : (arg_name, value)')
499 _ARCHIVE_FORMATS[name] = (function, extra_args, description)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
shutil.py 480 def register_archive_format(name, function, extra_args=None, description=''):
484 used to create archives. If provided, extra_args is a sequence of
489 if extra_args is None:
490 extra_args = []
493 if not isinstance(extra_args, (tuple, list)):
494 raise TypeError('extra_args needs to be a sequence')
495 for element in extra_args:
497 raise TypeError('extra_args elements are : (arg_name, value)')
499 _ARCHIVE_FORMATS[name] = (function, extra_args, description)
  /external/chromium_org/ppapi/
ppapi_untrusted.gyp 74 # We compile with --strip-all under extra_args so debug info is
134 'extra_args': [
ppapi_nacl_test_common.gypi 89 'extra_args': [
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
mock.py 227 extra_args = []
231 extra_args.append(arg)
232 args += tuple(extra_args)
  /packages/apps/ContactsCommon/src/com/android/contacts/common/editor/
SelectAccountDialogFragment.java 41 private static final String KEY_EXTRA_ARGS = "extra_args";
  /frameworks/compile/slang/tests/
test.py 88 extra_args = extra_args_str.split()
90 args = base_args + extra_args + rs_files
  /external/kernel-headers/original/asm-x86/xen/
hypercall.h 293 HYPERVISOR_vcpu_op(int cmd, int vcpuid, void *extra_args)
295 return _hypercall3(int, vcpu_op, cmd, vcpuid, extra_args);
  /external/chromium_org/ppapi/native_client/
native_client.gyp 130 'extra_args': [
  /external/chromium_org/v8/src/
builtins.cc 48 template <BuiltinExtraArguments extra_args>
69 STATIC_ASSERT(extra_args == NEEDS_CALLED_FUNCTION);
76 STATIC_ASSERT(extra_args == NO_EXTRA_ARGUMENTS);
1589 BuiltinExtraArguments extra_args; member in struct:v8::internal::__anon15227::BuiltinDesc
    [all...]
  /external/chromium/testing/gmock/scripts/
upload.py     [all...]
  /external/chromium/testing/gtest/scripts/
upload.py     [all...]
  /external/chromium_org/testing/gtest/scripts/
upload.py     [all...]
  /external/v8/src/
builtins.cc 46 template <BuiltinExtraArguments extra_args>
67 STATIC_ASSERT(extra_args == NEEDS_CALLED_FUNCTION);
74 STATIC_ASSERT(extra_args == NO_EXTRA_ARGUMENTS);
1572 BuiltinExtraArguments extra_args; member in struct:v8::internal::__anon26929::BuiltinDesc
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
build_ext.py 489 extra_args = ext.extra_compile_args or []
500 extra_postargs=extra_args,
519 extra_args = ext.extra_link_args or []
529 extra_postargs=extra_args,
    [all...]

Completed in 1170 milliseconds

1 2 3