/third_party/vulkan-loader/scripts/ |
H A D | update_deps.py | 326 self._args = args 364 for cmake_var in self._args.cmake_var: 418 if self._args.do_clean_repo: 424 if len(self._args.ref): 425 command_output(['git', 'checkout', self._args.ref], self.repo_dir) 433 return cmd_str.format(repo_dict, self._args, CONFIG_MAP[self._args.config]) 450 if self._args.OSX_ARCHITECTURES: 460 if self._args.do_clean_build: 463 if self._args [all...] |
/third_party/python/Lib/multiprocessing/ |
H A D | util.py | 198 self._args = args 223 self._callback, self._args, self._kwargs) 224 res = self._callback(*self._args, **self._kwargs) 225 self._weakref = self._callback = self._args = \ 238 self._weakref = self._callback = self._args = \ 259 if self._args: 260 x += ', args=' + str(self._args)
|
H A D | process.py | 91 self._args = tuple(args) 108 self._target(*self._args, **self._kwargs) 125 del self._target, self._args, self._kwargs
|
/third_party/python/Lib/asyncio/ |
H A D | events.py | 27 __slots__ = ('_callback', '_args', '_cancelled', '_loop', 37 self._args = args 52 self._callback, self._args)) 73 self._args = None 80 self._context.run(self._callback, *self._args) 85 self._callback, self._args) 143 self._args == other._args and
|
/third_party/jerryscript/tests/jerry/es2015/ |
H A D | proxy_call.js | 241 var _args; variable 243 _args = [a, b]; 254 assert (_args.length === 2); 255 assert (_args[0] === 1); 256 assert (_args[1] === 2);
|
/third_party/python/Lib/ |
H A D | operator.py | 309 __slots__ = ('_name', '_args', '_kwargs') 315 self._args = args 319 return getattr(obj, self._name)(*self._args, **self._kwargs) 323 args.extend(map(repr, self._args)) 331 return self.__class__, (self._name,) + self._args 334 return partial(self.__class__, self._name, **self._kwargs), self._args
|
H A D | threading.py | 888 self._args = args 975 self._target(*self._args, **self._kwargs) 979 del self._target, self._args, self._kwargs
|
/third_party/node/test/fixtures/postject-copy/node_modules/commander/lib/ |
H A D | help.js | 124 cmd._args.forEach(argument => { 130 if (cmd._args.find(argument => argument.description)) { 131 return cmd._args; 145 const args = cmd._args.map(arg => humanReadableArgName(arg)).join(' ');
|
H A D | command.js | 32 this._args = []; 346 const previousArgument = this._args.slice(-1)[0]; 353 this._args.push(argument); 473 const expectedArgsCount = this._args.length; 1088 * Check this.args against expected this._args. 1095 this._args.forEach((arg, i) => { 1101 if (this._args.length > 0 && this._args[this._args.length - 1].variadic) { 1104 if (this.args.length > this._args [all...] |
/third_party/node/deps/npm/node_modules/@npmcli/promise-spawn/lib/ |
H A D | index.js | 127 const open = (_args, opts = {}, extra = {}) => { 129 const args = [].concat(_args)
|
/third_party/libevdev/libevdev/ |
H A D | libevdev.h | 36 #define LIBEVDEV_ATTRIBUTE_PRINTF(_format, _args) __attribute__ ((format (printf, _format, _args)))
|
/third_party/libevdev/export_include/libevdev/ |
H A D | libevdev.h | 36 #define LIBEVDEV_ATTRIBUTE_PRINTF(_format, _args) __attribute__ ((format (printf, _format, _args)))
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | sandbox.py | 134 self._args = args 143 return self._args[idx]
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | sandbox.py | 115 self._args = args 124 return self._args[idx]
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | sandbox.py | 134 self._args = args 143 return self._args[idx]
|
/third_party/python/Lib/test/ |
H A D | test_shelve.py | 180 return shelve.Shelf(byteskeydict(), **self._args) 188 x = shelve.open(self.base_path + str(self.counter), **self._args) 207 {'_args': {'protocol': proto}}) 214 {'dbm_mod': dbm_mod, '_args': {'protocol': proto}})
|
H A D | test_enum.py | 1584 _args = args 1590 self._args = _args 1593 return self._args 1644 _args = args 1650 self._args = _args 1653 return self._args, {} 1704 _args = args 1710 self._args [all...] |
/third_party/mesa3d/src/gallium/frontends/clover/core/ |
H A D | kernel.cpp | 37 _args.emplace_back(argument::create(barg)); in kernel() 159 return map(derefs(), _args); in args() 164 return map(derefs(), _args); in args() 201 auto explicit_arg = kern._args.begin(); in bind()
|
H A D | kernel.hpp | 254 std::vector<std::unique_ptr<argument>> _args; member in clover::kernel
|
/third_party/skia/third_party/externals/angle2/src/tests/ |
H A D | capture_replay_tests.py | 141 self._args = args 205 if self._args.goma_dir: 206 gn_args.append(('goma_dir', '"%s"' % self._args.goma_dir)) 207 if not self._args.debug: 211 if self._args.asan:
|
/third_party/mesa3d/src/gallium/frontends/dri/ |
H A D | dri_drawable.c | 412 notify_before_flush_cb(void* _args) in notify_before_flush_cb() argument 414 struct notify_before_flush_cb_args *args = (struct notify_before_flush_cb_args *) _args; in notify_before_flush_cb()
|
/third_party/mesa3d/src/gallium/frontends/wgl/ |
H A D | stw_st.c | 365 notify_before_flush_cb(void* _args) in notify_before_flush_cb() argument 367 struct notify_before_flush_cb_args *args = (struct notify_before_flush_cb_args *) _args; in notify_before_flush_cb()
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | utils.py | 417 if handle._args != args: 419 f'unexpected callback args: {handle._args} != {args}') 442 if handle._args != args: 443 raise AssertionError(f'{handle._args!r} != {args!r}')
|
/third_party/protobuf/objectivec/DevTools/ |
H A D | pddm.py | 161 self._args = tuple(arg_names) 177 return self._args
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/ |
H A D | metadata.py | 35 def __init_subclass__(*_args, **_kwargs): 39 def __init_subclass__(*_args, **_kwargs):
|