/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | stdio-write.c | 70 va_list args; in printf() local 72 va_start (args, format); in printf() 73 retval = vfprintf (stdout, format, args); in printf() 74 va_end (args); in printf() 85 va_list args; in fprintf() local 87 va_start (args, format); in fprintf() 88 retval = vfprintf (stream, format, args); in fprintf() 89 va_end (args); in fprintf() 97 vprintf (const char *format, va_list args) in vprintf() argument 99 return vfprintf (stdout, format, args); in vprintf() [all …]
|
D | error.c | 136 error_tail (int status, int errnum, const char *message, va_list args) in error_tail() argument 198 __vfwprintf (stderr, wmessage, args); in error_tail() 205 vfprintf (stderr, message, args); in error_tail() 206 va_end (args); in error_tail() 229 va_list args; in error() local 254 va_start (args, message); in error() 255 error_tail (status, errnum, message, args); in error() 273 va_list args; in error_at_line() local 321 va_start (args, message); in error_at_line() 322 error_tail (status, errnum, message, args); in error_at_line()
|
D | stdio.in.h | 96 extern int vfprintf (FILE *fp, const char *format, va_list args) 101 extern int vfprintf (FILE *fp, const char *format, va_list args) 143 extern int vprintf (const char *format, va_list args) 148 extern int vprintf (const char *format, va_list args) 180 extern int vsnprintf (char *str, size_t size, const char *format, va_list args) 209 extern int vsprintf (char *str, const char *format, va_list args) 242 extern int vdprintf (int fd, const char *format, va_list args) 265 extern int vasprintf (char **result, const char *format, va_list args) 285 va_list args)
|
/ndk/ |
D | ndk-gdb.py | 173 args = parser.parse_args() 175 VERBOSE = args.verbose 187 if args.device: 189 if args.emulator: 194 if args.device_serial != '': 195 DEVICE_SERIAL = args.device_serial 200 if args.adb_cmd != None: 201 log('Using specific adb command: %s' % (args.adb_cmd)) 202 ADB_CMD = args.adb_cmd 210 if args.project != None: [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/src/support/android/ |
D | locale_support.c | 100 int vasprintf_l(char** strp, locale_t l, const char* fmt, va_list args) { in vasprintf_l() argument 102 return vasprintf(strp, fmt, args); in vasprintf_l() 106 va_list args; in asprintf_l() local 107 va_start(args, fmt); in asprintf_l() 108 int result = vasprintf_l(strp, locale, fmt, args); in asprintf_l() 109 va_end(args); in asprintf_l() 113 int vsprintf_l(char* str, locale_t l, const char* fmt, va_list args) { in vsprintf_l() argument 115 return vsprintf(str, fmt, args); in vsprintf_l() 119 va_list args; in sprintf_l() local 120 va_start(args, fmt); in sprintf_l() [all …]
|
/ndk/tests/build/issue20862-libpng-O0/jni/ |
D | pngconf.h | 286 # define PNG_FUNCTION(type, name, args, attributes) attributes type name args argument 299 # define PNG_EXPORTA(ordinal, type, name, args, attributes)\ argument 300 PNG_FUNCTION(PNG_EXPORT_TYPE(type),(PNGAPI name),PNGARG(args), \ 309 #define PNG_EXPORT(ordinal, type, name, args)\ argument 310 PNG_EXPORTA(ordinal, type, name, args, PNG_EMPTY) 314 # define PNG_REMOVED(ordinal, type, name, args, attributes) argument 318 # define PNG_CALLBACK(type, name, args) type (PNGCBAPI name) PNGARG(args) argument 404 # define PNG_FP_EXPORT(ordinal, type, name, args)\ argument 405 PNG_EXPORT(ordinal, type, name, args); 407 # define PNG_FP_EXPORT(ordinal, type, name, args) [all …]
|
/ndk/sources/host-tools/make-3.81/ |
D | misc.c | 34 # define VA_START(args, lastarg) va_start(args, lastarg) argument 37 # define VA_START(args, lastarg) va_start(args) argument 40 # define VA_PRINTF(fp, lastarg, args) vfprintf((fp), (lastarg), (args)) argument 42 # define VA_PRINTF(fp, lastarg, args) _doprnt((lastarg), (args), (fp)) argument 44 # define VA_END(args) va_end(args) argument 49 # define VA_START(args, lastarg) argument 50 # define VA_PRINTF(fp, lastarg, args) fprintf((fp), (lastarg), va_alist) argument 51 # define VA_END(args) argument 200 va_list args; local 214 VA_START (args, fmt); [all …]
|
/ndk/sources/host-tools/make-3.81/w32/include/ |
D | w32err.h | 22 #define EXTERN_DECL(entry, args) entry args argument
|
D | sub_proc.h | 31 #define EXTERN_DECL(entry, args) extern entry args argument
|
/ndk/tests/device/issue35933-lambda/jni/ |
D | issue35933-lambda.cpp | 18 void* Call(Callable native_func, ArgTypes&&... args) noexcept in Call() argument 21 return native_func(std::forward<ArgTypes>(args)...); in Call()
|
/ndk/sources/cxx-stl/llvm-libc++/test/utilities/memory/allocator.traits/allocator.traits.members/ |
D | construct.pass.cpp | 41 void construct(U* p, Args&& ...args) in construct() 44 ::new ((void*)p) U(std::forward<Args>(args)...); in construct()
|
/ndk/sources/cxx-stl/llvm-libc++/test/utilities/allocator.adaptor/ |
D | allocators.h | 137 void construct(U* p, Args&& ...args) in construct() argument 139 ::new (p) U(std::forward<Args>(args)...); in construct()
|
/ndk/sources/cxx-stl/llvm-libc++/test/utilities/tuple/tuple.tuple/ |
D | allocators.h | 137 void construct(U* p, Args&& ...args) in construct() argument 139 ::new (p) U(std::forward<Args>(args)...); in construct()
|
/ndk/sources/host-tools/nawk-20071023/ |
D | run.c | 211 Cell **args; /* pointer to array of arguments after execute */ member 227 Cell *args[NARGS], *oargs[NARGS]; /* BUG: fixed size arrays */ in call() local 258 args[i] = y; /* arrays by ref */ in call() 260 args[i] = copycell(y); in call() 264 args[i] = gettemp(); in call() 265 *args[i] = newcopycell; in call() 277 fp->args = args; in call() 286 Cell *t = fp->args[i]; in call() 344 return fp->args[n]; in arg()
|
/ndk/sources/host-tools/sed-4.2.1/m4/ |
D | progtest.m4 | 55 # Extract the first word of "$2", so it can be a program name with args.
|
/ndk/sources/host-tools/make-3.81/config/ |
D | progtest.m4 | 55 # Extract the first word of "$2", so it can be a program name with args.
|
/ndk/sources/cxx-stl/llvm-libc++/include/ |
D | set | 102 pair<iterator, bool> emplace(Args&&... args); 104 iterator emplace_hint(const_iterator position, Args&&... args); 258 iterator emplace(Args&&... args); 260 iterator emplace_hint(const_iterator position, Args&&... args);
|
D | stack | 58 template <class... Args> void emplace(Args&&... args);
|
D | unordered_set | 95 pair<iterator, bool> emplace(Args&&... args); 97 iterator emplace_hint(const_iterator position, Args&&... args); 234 iterator emplace(Args&&... args); 236 iterator emplace_hint(const_iterator position, Args&&... args);
|
D | queue | 66 template <class... Args> void emplace(Args&&... args); 152 template <class... Args> void emplace(Args&&... args);
|
D | thread | 30 template <class F, class ...Args> explicit thread(F&& f, Args&&... args);
|
D | mutex | 169 void call_once(once_flag& flag, Callable&& func, Args&&... args);
|
D | scoped_allocator | 73 template <class T, class... Args> void construct(T* p, Args&& args);
|
D | unordered_map | 96 pair<iterator, bool> emplace(Args&&... args); 98 iterator emplace_hint(const_iterator position, Args&&... args); 244 iterator emplace(Args&&... args); 246 iterator emplace_hint(const_iterator position, Args&&... args);
|
D | map | 120 pair<iterator, bool> emplace(Args&&... args); 122 iterator emplace_hint(const_iterator position, Args&&... args); 288 iterator emplace(Args&&... args); 290 iterator emplace_hint(const_iterator position, Args&&... args);
|