/third_party/mesa3d/src/mesa/main/ |
H A D | debug_output.c | 692 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 D | iconv.c | 671 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 D | test-quirks.c | 37 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 D | string.h | 80 inline TResult DispatchToSpecificTypeWithoutCast(TArgs&&... args); 82 inline TResult DispatchToSpecificType(String str, TArgs&&... args);
|
/third_party/mesa3d/src/gallium/drivers/r300/compiler/ |
H A D | r500_fragprog_emit.c | 53 #define error(fmt, args...) do { \ 55 __FILE__, __FUNCTION__, ##args); \
|
/third_party/libabigail/src/ |
H A D | abg-ini.cc | 1973 /// @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 D | aifc.py | 369 def __exit__(self, *args): 618 def __exit__(self, *args):
|
H A D | traceback.py | 788 def from_exception(cls, exc, *args, **kwargs): 790 return cls(type(exc), exc, exc.__traceback__, *args, **kwargs)
|
H A D | pprint.py | 64 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 D | json_generator.py | 293 def __init__(self, *args, **kwargs): 294 super().__init__(*args, **kwargs)
|
H A D | json_parser.py | 342 def __init__(self, *args, **kwargs): 343 super().__init__(*args, **kwargs)
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | bio.h | 754 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 D | rpng2-win.c | 14 - 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 D | DawnTest.h | 691 StructName(const AdapterTestParam& param, Args&&... args) \ 693 DAWN_PP_CONCATENATE(_Dawn_, StructName){std::forward<Args>(args)...} { \
|
/third_party/python/Lib/test/ |
H A D | test_selectors.py | 403 def handler(*args): 430 orig_alrm_handler = signal.signal(signal.SIGALRM, lambda *args: None)
|
H A D | test_genericalias.py | 426 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 D | STLExtras.h | 554 /// \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 D | AMDGPUCallLowering.cpp | 459 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 D | MipsCallLowering.cpp | 457 // 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 D | indexSignatures1.js | 235 [key: symbol]: (...args: any) => unknown; 621 [key: symbol]: (...args: any) => unknown;
|
/third_party/python/Parser/ |
H A D | pegen.c | 478 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 D | descriptor_pool.py | 74 def NewFunc(*args, **kwargs): 80 return func(*args, **kwargs)
|
/third_party/protobuf/src/google/protobuf/compiler/cpp/ |
H A D | cpp_helpers.h | 705 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 D | parse_context.h | 349 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 D | tupleobject.c | 713 tuple_vectorcall(PyObject *type, PyObject * const*args, in tuple_vectorcall() 726 return tuple_new_impl(_PyType_CAST(type), args[0]); in tuple_vectorcall()
|