/third_party/libinput/tools/ |
H A D | libinput-record-verify-yaml.py | 681 args, remainder = parser.parse_known_args() 682 TestYaml.filename = args.recording 684 if args.verbose:
|
/third_party/libwebsockets/lib/roles/cgi/ |
H A D | cgi-server.c | 910 struct lws_cgi_args args; in lws_cgi_kill() local 919 args.stdwsi = &wsi->http.cgi->lsp->stdwsi[0]; in lws_cgi_kill() 928 wsi->user_space, (void *)&args, in lws_cgi_kill()
|
/third_party/node/deps/v8/src/objects/ |
H A D | shared-function-info.cc | 421 Handle<FixedArray> args(Script::cast(shared->script()).wrapped_arguments(), in GetSourceCodeHarmony() 423 int argc = args->length(); in GetSourceCodeHarmony() 426 builder.AppendString(Handle<String>(String::cast(args->get(i)), isolate)); in GetSourceCodeHarmony()
|
/third_party/rust/crates/bindgen/bindgen/ir/ |
H A D | ty.rs | 545 TypeKind::TemplateAlias(_, ref args) => args.clone(), in self_template_params() 904 let mut args = vec![]; in from_clang_ty() variables 937 args.push(param); in from_clang_ty() 956 TypeKind::TemplateAlias(inner_type, args) in from_clang_ty()
|
/third_party/rust/crates/cxx/gen/lib/src/syntax/ |
H A D | check.rs | 299 for arg in &ty.args { in check_type_fn() 459 for arg in &efn.args { in check_api_fn() 584 for arg in &efn.args {
|
/third_party/rust/crates/cxx/syntax/ |
H A D | check.rs | 299 for arg in &ty.args { in check_type_fn() 459 for arg in &efn.args { in check_api_fn() 584 for arg in &efn.args {
|
/third_party/rust/crates/cxx/gen/cmd/src/syntax/ |
H A D | check.rs | 299 for arg in &ty.args { in check_type_fn() 459 for arg in &efn.args { in check_api_fn() 584 for arg in &efn.args {
|
/third_party/rust/crates/cxx/macro/src/syntax/ |
H A D | check.rs | 299 for arg in &ty.args { in check_type_fn() 459 for arg in &efn.args { in check_api_fn() 584 for arg in &efn.args {
|
/third_party/python/Lib/ |
H A D | dis.py | 656 the corresponding args to __import__. 768 args = parser.parse_args() 769 with args.infile as infile: 771 code = compile(source, args.infile.name, "exec")
|
H A D | dataclasses.py | 394 # the first for normal args, and the second for keyword args. 413 def _create_fn(name, args, body, *, globals=None, locals=None, 424 args = ','.join(args) 428 txt = f' def {name}({args}){return_annotation}:\n{body}' 575 # Add the keyword-only args. Because the * can only be added if
|
H A D | cgi.py | 102 def dolog(fmt, *args): 104 logfp.write(fmt%args + "\n") 504 def __exit__(self, *args):
|
H A D | calendar.py | 557 def __exit__(self, *args): 663 def main(args): 720 options = parser.parse_args(args[1:])
|
/third_party/python/Lib/test/ |
H A D | mapping_tests.py | 30 def __init__(self, *args, **kw): 31 unittest.TestCase.__init__(self, *args, **kw) 451 def __init__(self, *args, **kwargs):
|
H A D | test_asyncore.py | 340 args = (evt, cap, sock) 341 t = threading.Thread(target=capture_server, args=args)
|
H A D | test_support.py | 498 def check_options(self, args, func, expected=None): 500 cmd = [sys.executable, *args, '-c', code] 509 expected = args
|
/third_party/skia/third_party/externals/angle2/src/common/ |
H A D | FastVector.h | 77 void emplace_back(Args &&... args); 309 ANGLE_INLINE void FastVector<T, N, Storage>::emplace_back(Args &&... args) 313 mData[mSize++] = std::move(T(std::forward<Args>(args)...));
|
/third_party/skia/src/gpu/ |
H A D | GrDrawingManager.cpp | 392 // Both args must contain the same objects. 940 const PathRenderer::CanDrawPathArgs& args, in getPathRenderer() 950 auto pr = fPathRendererChain->getPathRenderer(args, drawType, stencilSupport); in getPathRenderer() 953 if (PathRenderer::CanDrawPath::kNo != swPR->canDrawPath(args)) { in getPathRenderer() 939 getPathRenderer( const PathRenderer::CanDrawPathArgs& args, bool allowSW, PathRendererChain::DrawType drawType, PathRenderer::StencilSupport* stencilSupport) getPathRenderer() argument
|
/third_party/skia/third_party/externals/dawn/src/dawn_node/interop/ |
H A D | Core.h | 628 // FromJS(const Napi::CallbackInfo& info, PARAM_TYPES& args), for parameters 658 inline Result FromJS(const Napi::CallbackInfo& info, PARAM_TYPES& args) { in FromJS() argument 662 auto& out = std::get<BASE_INDEX>(args); in FromJS() 684 return FromJS<PARAM_TYPES, BASE_INDEX + 1>(info, args); in FromJS()
|
/third_party/python/Lib/test/test_sqlite3/ |
H A D | test_userfunctions.py | 43 def wrapper(self, *args, **kwargs): 47 func(self, *args, **kwargs) 50 func(self, *args, **kwargs)
|
/third_party/skia/third_party/externals/tint/src/inspector/ |
H A D | inspector.cc | 824 auto* t = c->args[texture_index]; in GenerateSamplerTargets() 825 auto* s = c->args[sampler_index]; in GenerateSamplerTargets() 942 call_exprs[i] = call_expr->args[param->Index()]; in GetOriginatingResources()
|
/third_party/skia/third_party/externals/tint/src/writer/wgsl/ |
H A D | generator_impl.cc | 234 const auto& args = expr->args; in EmitCall() local 235 for (auto* arg : args) { in EmitCall()
|
/third_party/toybox/toys/posix/ |
H A D | sed.c | 1034 char **args = toys.optargs; in sed_main() local 1054 (TT.e = xzalloc(sizeof(struct arg_list)))->arg = *(args++); in sed_main() 1071 loopfiles_rw(args, O_RDONLY|WARN_ONLY, 0, do_sed_file); in sed_main()
|
/third_party/python/Lib/test/test_peg_generator/ |
H A D | test_pegen.py | 831 self.assertIn("expected (':' | ';')", e.exception.args[0]) 916 def visit(self, node: Any, *args: Any, **kwargs: Any) -> None: 918 super().visit(node, *args, **kwargs)
|
/third_party/python/Modules/_ctypes/ |
H A D | _ctypes_test.c | 562 PyObject *py_func_si(PyObject *self, PyObject *args) in py_func_si() argument 566 if (!PyArg_ParseTuple(args, "si", &name, &i)) in py_func_si() 575 PyObject *py_func(PyObject *self, PyObject *args) in py_func() argument
|
/third_party/rust/crates/cxx/gen/build/src/syntax/ |
H A D | check.rs | 299 for arg in &ty.args { in check_type_fn() 459 for arg in &efn.args { in check_api_fn() 584 for arg in &efn.args {
|