Home
last modified time | relevance | path

Searched refs:args (Results 6901 - 6925 of 10533) sorted by relevance

1...<<271272273274275276277278279280>>...422

/third_party/node/deps/v8/src/baseline/x64/
H A Dbaseline-assembler-x64-inl.h310 static int Push(BaselineAssembler* masm, Arg arg, Args... args) { in Push()
312 return nargs + PushAllHelper<Args...>::Push(masm, args...); in Push()
314 static int PushReverse(BaselineAssembler* masm, Arg arg, Args... args) { in PushReverse()
315 int nargs = PushAllHelper<Args...>::PushReverse(masm, args...); in PushReverse()
/third_party/node/deps/v8/src/flags/
H A Dflags.cc513 std::string args(modified_args_as_string.str()); in ComputeFlagListHash()
516 args.c_str(), args.c_str() + args.length())) | in ComputeFlagListHash()
804 " -- (captures all remaining args in JavaScript)\n\n"; in PrintHelp()
/third_party/mesa3d/src/gallium/drivers/r600/
H A Dr600_pipe_common.h923 #define COMPUTE_DBG(rscreen, fmt, args...) \
925 if ((rscreen->b.debug_flags & DBG_COMPUTE)) fprintf(stderr, fmt, ##args); \
928 #define R600_ERR(fmt, args...) \
929 fprintf(stderr, "EE %s:%d %s - " fmt, __FILE__, __LINE__, __func__, ##args)
/third_party/node/deps/openssl/openssl/ssl/statem/
H A Dstatem.c139 va_list args; in ossl_statem_fatal() local
141 va_start(args, fmt); in ossl_statem_fatal()
142 ERR_vset_error(ERR_LIB_SSL, reason, fmt, args); in ossl_statem_fatal()
143 va_end(args); in ossl_statem_fatal()
/third_party/node/deps/uv/src/unix/
H A Dprocess.c380 execvpe(options->file, options->args, environ); in uv__process_child_init()
382 execvp(options->file, options->args); in uv__process_child_init()
680 err = posix_spawn(pid, options->file, actions, attrs, options->args, env); in uv__spawn_resolve_and_spawn()
724 err = posix_spawn(pid, b, actions, attrs, options->args, env); in uv__spawn_resolve_and_spawn()
/third_party/python/Lib/test/
H A Dtest_calendar.py819 # test when no range i.e. two identical years as args
842 def run_ok(self, *args):
843 return assert_python_ok('-m', 'calendar', *args)[1]
845 def assertFailure(self, *args):
846 rc, stdout, stderr = assert_python_failure('-m', 'calendar', *args)
H A Dtest_trace.py80 def traced_capturer(*args, **kwargs):
81 return args, kwargs
502 for message, *args in _errors:
503 *_, stderr = assert_python_failure('-m', 'trace', *args)
H A Dtest_enum.py1583 def __new__(cls, *args):
1584 _args = args
1585 name, *args = args
1586 if len(args) == 0:
1588 self = int.__new__(cls, *args)
1643 def __new__(cls, *args):
1644 _args = args
1645 name, *args = args
[all...]
/third_party/python/Lib/distutils/tests/
H A Dtest_build_ext.py55 def build_ext(self, *args, **kwargs):
56 return build_ext(*args, **kwargs)
542 def build_ext(self, *args, **kwargs):
543 build_ext = super().build_ext(*args, **kwargs)
/third_party/python/Lib/
H A Drandom.py814 def seed(self, *args, **kwds):
818 def _notimplemented(self, *args, **kwds):
860 def _test_generator(n, func, args):
865 data = [func(*args) for i in _repeat(None, n)]
H A Dbdb.py634 def runcall(self, func, /, *args, **kwds):
643 res = func(*args, **kwds)
865 def user_call(self, frame, args):
868 print('+++ call', name, args)
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
H A Dconsistency_tools.py548 def record_error(self, *args, **kwargs):
550 message = " ".join((str(x) for x in args))
559 def record_warning(self, *args, **kwargs):
561 message = " ".join((str(x) for x in args))
/third_party/openssl/ssl/statem/
H A Dstatem.c139 va_list args; in ossl_statem_fatal() local
141 va_start(args, fmt); in ossl_statem_fatal()
142 ERR_vset_error(ERR_LIB_SSL, reason, fmt, args); in ossl_statem_fatal()
143 va_end(args); in ossl_statem_fatal()
/third_party/skia/third_party/externals/oboe/samples/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/third_party/skia/src/sksl/
H A DSkSLConstantFolder.cpp118 ExpressionArray args; in simplify_vector() local
119 args.reserve_back(type.columns()); in simplify_vector()
126 args.push_back(Literal::Make(left.fLine, value, &componentType)); in simplify_vector()
128 return ConstructorCompound::Make(context, left.fLine, type, std::move(args)); in simplify_vector()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DHashing.h556 const T &arg, const Ts &...args) { in combine()
560 return combine(length, buffer_ptr, buffer_end, args...); in combine()
602 template <typename ...Ts> hash_code hash_combine(const Ts &...args) { in hash_combine() argument
605 return helper.combine(0, helper.buffer, helper.buffer + 64, args...); in hash_combine()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DHashing.h554 const T &arg, const Ts &...args) { in combine()
558 return combine(length, buffer_ptr, buffer_end, args...); in combine()
600 template <typename ...Ts> hash_code hash_combine(const Ts &...args) { in hash_combine() argument
603 return helper.combine(0, helper.buffer, helper.buffer + 64, args...); in hash_combine()
/third_party/typescript/tests/baselines/reference/
H A DtemplateLiteralTypes3.js178 declare function noSpread<P extends DotString>(args: P[]): P;
179 declare function spread<P extends DotString>(...args: P[]): P;
356 declare function noSpread<P extends DotString>(args: P[]): P;
357 declare function spread<P extends DotString>(...args: P[]): P;
H A DbluebirdStaticThis.js8 static try<R>(dit: typeof Promise, fn: () => Promise.Thenable<R>, args?: any[], ctx?: any): Promise<R>;
9 static try<R>(dit: typeof Promise, fn: () => R, args?: any[], ctx?: any): Promise<R>;
11 static attempt<R>(dit: typeof Promise, fn: () => Promise.Thenable<R>, args?: any[], ctx?: any): Promise<R>;
12 static attempt<R>(dit: typeof Promise, fn: () => R, args?: any[], ctx?: any): Promise<R>;
/third_party/python/Modules/_sqlite/
H A Dmodule.c61 module_connect(PyObject *module, PyObject *const *args, Py_ssize_t nargsf, in module_connect() argument
70 factory = args[FACTORY_POS]; in module_connect()
76 factory = args[nargs + i]; in module_connect()
82 return PyObject_Vectorcall(factory, args, nargsf, kwnames); in module_connect()
/third_party/protobuf/python/google/protobuf/pyext/
H A Ddescriptor_pool.cc178 PyObject* args, PyObject* kwargs) { in New()
181 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|O", kwlist, &py_database)) { in New()
420 static PyObject* FindExtensionByNumber(PyObject* self, PyObject* args) { in FindExtensionByNumber() argument
423 if (!PyArg_ParseTuple(args, "Oi", &message_descriptor, &number)) { in FindExtensionByNumber()
177 New(PyTypeObject* type, PyObject* args, PyObject* kwargs) New() argument
/third_party/python/Modules/
H A D_lsprof.c668 profiler_enable(ProfilerObject *self, PyObject *args, PyObject *kwds) in profiler_enable() argument
673 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|ii:enable", in profiler_enable()
767 profiler_init(ProfilerObject *pObj, PyObject *args, PyObject *kw) in profiler_init() argument
776 if (!PyArg_ParseTupleAndKeywords(args, kw, "|Odii:Profiler", kwlist, in profiler_init()
/third_party/skia/third_party/externals/abseil-cpp/absl/container/
H A Dinlined_vector.h634 // Constructs and inserts an element using `args...` in the inlined vector at
637 iterator emplace(const_iterator pos, Args&&... args) { in emplace() argument
641 value_type dealias(std::forward<Args>(args)...); in emplace()
650 // Constructs and inserts an element using `args...` in the inlined vector at
653 reference emplace_back(Args&&... args) { in emplace_back() argument
654 return storage_.EmplaceBack(std::forward<Args>(args)...); in emplace_back()
/third_party/spirv-tools/source/opt/
H A Dinst_debug_printf_pass.cpp193 // Generate instructions to output printf args to printf buffer in GenDebugPrintfCode()
411 // validation ids as args. in GenDebugStreamWrite()
413 std::vector<uint32_t> args = {shader_id, instruction_idx_id}; in GenDebugStreamWrite() local
414 (void)args.insert(args.end(), validation_ids.begin(), validation_ids.end()); in GenDebugStreamWrite()
416 GetStreamWriteFunctionId(val_id_cnt), args); in GenDebugStreamWrite() local
/third_party/vk-gl-cts/scripts/
H A Dmake_release.py534 args = parseArgs() variable
535 config = ReleaseConfig(args.name, args.version, RELEASE_CONFIGS[args.config])

Completed in 37 milliseconds

1...<<271272273274275276277278279280>>...422