Home
last modified time | relevance | path

Searched refs:args (Results 4776 - 4800 of 5389) sorted by relevance

1...<<191192193194195196197198199200>>...216

/third_party/mesa3d/src/mesa/main/
H A Ddebug_output.c692 va_list args) in _debug_message()
738 _mesa_gl_vdebugf(ctx, id, source, type, severity, fmt, args); in _debug_message()
688 _debug_message(void *data, unsigned *id, enum util_debug_type ptype, const char *fmt, va_list args) _debug_message() argument
/third_party/libfuse/lib/modules/
H A Diconv.c671 static struct fuse_fs *iconv_new(struct fuse_args *args, in iconv_new() argument
686 if (fuse_opt_parse(args, ic, iconv_opts, iconv_opt_proc) == -1) in iconv_new()
/third_party/libinput/test/
H A Dtest-quirks.c37 va_list args) in log_handler()
40 vprintf(format, args); in log_handler()
34 log_handler(struct libinput *this_is_null, enum libinput_log_priority priority, const char *format, va_list args) log_handler() argument
/third_party/node/deps/v8/src/objects/
H A Dstring.h80 inline TResult DispatchToSpecificTypeWithoutCast(TArgs&&... args);
82 inline TResult DispatchToSpecificType(String str, TArgs&&... args);
/third_party/mesa3d/src/gallium/drivers/r300/compiler/
H A Dr500_fragprog_emit.c53 #define error(fmt, args...) do { \
55 __FILE__, __FUNCTION__, ##args); \
/third_party/libabigail/src/
H A Dabg-ini.cc1973 /// @param args a vector of the arguements of the function being
1976 const vector<string>& args) in function_call_expr()
1977 : priv_(new priv(name, args)) in function_call_expr()
1975 function_call_expr(const string& name, const vector<string>& args) function_call_expr() argument
/third_party/python/Lib/
H A Daifc.py369 def __exit__(self, *args):
618 def __exit__(self, *args):
H A Dtraceback.py788 def from_exception(cls, exc, *args, **kwargs):
790 return cls(type(exc), exc, exc.__traceback__, *args, **kwargs)
H A Dpprint.py64 def pp(object, *args, sort_dicts=False, **kwargs):
66 pprint(object, *args, sort_dicts=sort_dicts, **kwargs)
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Djson_generator.py293 def __init__(self, *args, **kwargs):
294 super().__init__(*args, **kwargs)
H A Djson_parser.py342 def __init__(self, *args, **kwargs):
343 super().__init__(*args, **kwargs)
/third_party/openssl/ohos_lite/include/openssl/
H A Dbio.h754 int BIO_vprintf(BIO *bio, const char *format, va_list args)
758 int BIO_vsnprintf(char *buf, size_t n, const char *format, va_list args)
/third_party/skia/third_party/externals/libpng/contrib/gregbook/
H A Drpng2-win.c14 - handle quoted command-line args (especially filenames with spaces)
277 char *args[1024]; /* arbitrary limit, but should suffice */ in WinMain() local
278 char **argv = args; in WinMain()
429 if (argv[1]) /* shouldn't be any more args after filename */ in WinMain()
/third_party/skia/third_party/externals/dawn/src/tests/
H A DDawnTest.h691 StructName(const AdapterTestParam& param, Args&&... args) \
693 DAWN_PP_CONCATENATE(_Dawn_, StructName){std::forward<Args>(args)...} { \
/third_party/python/Lib/test/
H A Dtest_selectors.py403 def handler(*args):
430 orig_alrm_handler = signal.signal(signal.SIGALRM, lambda *args: None)
H A Dtest_genericalias.py426 def __new__(cls, *args, **kwargs):
427 super().__new__(cls, *args, **kwargs)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DSTLExtras.h554 /// \brief Constructs a `new T()` with the given args and returns a
563 make_unique(Args &&... args) { in make_unique() argument
564 return std::unique_ptr<T>(new T(std::forward<Args>(args)...)); in make_unique()
567 /// \brief Constructs a `new T[n]` with the given args and returns a
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DAMDGPUCallLowering.cpp459 for (auto &Arg : F.args()) { in lowerFormalArgumentsKernel()
610 for (auto &Arg : F.args()) { in lowerFormalArguments()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
H A DMipsCallLowering.cpp457 // Quick exit if there aren't any args. in lowerFormalArguments()
461 for (auto &Arg : F.args()) { in lowerFormalArguments()
473 for (auto &Arg : F.args()) { in lowerFormalArguments()
/third_party/typescript/tests/baselines/reference/
H A DindexSignatures1.js235 [key: symbol]: (...args: any) => unknown;
621 [key: symbol]: (...args: any) => unknown;
/third_party/python/Parser/
H A Dpegen.c478 PyObject *args[2] = {form, id}; in _PyPegen_new_identifier() local
479 id2 = _PyObject_FastCall(p->normalize, args, 2); in _PyPegen_new_identifier()
/third_party/protobuf/python/google/protobuf/
H A Ddescriptor_pool.py74 def NewFunc(*args, **kwargs):
80 return func(*args, **kwargs)
/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_helpers.h705 void operator()(const char* format, const Args&... args) const { in operator ()()
706 printer_->FormatInternal({ToString(args)...}, vars_, format); in operator ()()
/third_party/protobuf/src/google/protobuf/
H A Dparse_context.h349 ParseContext(int depth, bool aliasing, const char** start, T&&... args) in ParseContext() argument
351 *start = InitFrom(std::forward<T>(args)...); in ParseContext()
/third_party/python/Objects/
H A Dtupleobject.c713 tuple_vectorcall(PyObject *type, PyObject * const*args, in tuple_vectorcall()
726 return tuple_new_impl(_PyType_CAST(type), args[0]); in tuple_vectorcall()

Completed in 35 milliseconds

1...<<191192193194195196197198199200>>...216