HomeSort by relevance Sort by last modified time
    Searched refs:full_args (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/tools/json_schema_compiler/
memoize.py 10 full_args = args + tuple(optargs.iteritems())
11 if full_args not in memory:
12 memory[full_args] = fn(*args, **optargs)
13 return memory[full_args]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/
multicommandtool_unittest.py 106 full_args = ["--global-option", "command", "--option", "arg"]
108 self._assert_split(full_args, full_args_expected)
110 full_args = []
112 self._assert_split(full_args, full_args_expected)
114 full_args = ["command", "arg"]
116 self._assert_split(full_args, full_args_expected)
  /external/chromium_org/tools/telemetry/telemetry/core/platform/
cros_interface.py 127 full_args = ['ssh',
132 full_args.extend(['-i', self._ssh_identity])
134 full_args.extend(extra_ssh_args)
135 full_args.append('root@%s' % self._hostname)
136 full_args.extend(args)
137 return full_args
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
TypeSlots.py 145 full_args = self.fixed_arg_format
147 full_args = "O" + full_args
148 if full_args in ["O", "T"]:
153 elif full_args in ["OO", "TO"] and not self.has_generic_args:
    [all...]
  /external/lldb/source/Interpreter/
CommandObject.cpp     [all...]

Completed in 531 milliseconds