• Home
  • Raw
  • Download

Lines Matching refs:dargs

64     def wrapped(self, *args, **dargs):  argument
66 return f(self, *args, **dargs)
486 def _runtest(self, url, tag, timeout, args, dargs): argument
488 l = lambda : test.runtest(self, url, tag, args, dargs)
518 def _run_test_base(self, url, *args, **dargs): argument
535 testname, subdir, tag = self._build_tagged_test_name(testname, dargs)
538 timeout = dargs.pop('timeout', None)
547 self._runtest(url, tag, timeout, args, dargs)
559 def run_test(self, url, *args, **dargs): argument
573 **dargs)
607 def run_test_detail(self, url, *args, **dargs): argument
622 **dargs)
630 def _rungroup(self, subdir, testname, function, timeout, *args, **dargs): argument
654 result = function(*args, **dargs)
676 def run_group(self, function, tag=None, **dargs): argument
695 function=function, timeout=None, **dargs)
936 def __create_step_tuple(self, fn, args, dargs): argument
941 assert(len(dargs) == 0)
953 return (ancestry, fn, args, dargs)
956 def next_step_append(self, fn, *args, **dargs): argument
959 steps.append(self.__create_step_tuple(fn, args, dargs))
963 def next_step(self, fn, *args, **dargs): argument
969 self.__create_step_tuple(fn, args, dargs))
974 def next_step_prepend(self, fn, *args, **dargs): argument
977 steps.insert(0, self.__create_step_tuple(fn, args, dargs))
983 def _run_step_fn(self, local_vars, fn, args, dargs): argument
987 local_vars['__dargs'] = dargs
1093 (ancestry, fn_name, args, dargs) = steps.pop(0)
1099 local_vars = self._run_step_fn(local_vars, fn_name, args, dargs)
1174 def watched_func(*args, **dargs): argument
1178 func(*args, **dargs)
1264 def run_test(self, url, *args, **dargs): argument
1269 passed = base_client_job.run_test(self, url, *args, **dargs)